2000-06-06 05:53:49 +00:00
|
|
|
- Certains are not lined up properly when there are tabs in them at
|
|
|
|
certain col values. (9) [FIXED]
|
|
|
|
- edit_refresh() and update_line() do not handle selecting text when the
|
2000-06-07 04:29:34 +00:00
|
|
|
cursor is beyond COLS (10) [FIXED]
|
2000-06-06 05:53:49 +00:00
|
|
|
- Moving to the end of a line when close to a multiple of COLS and at
|
|
|
|
least COLS * 2 does not make the screen jump early like it would for
|
|
|
|
if we were around COLS (bugs in edit_refresh, update_line) (13)
|
|
|
|
[FIXED, mostly]
|
|
|
|
- When at the very bottom of the edit window, do_wrap goes berzerk and
|
|
|
|
puts the curor somewhere bad, subsequent keystrokes crash the program
|
|
|
|
(14) [FIXED, mostly]
|
|
|
|
- Doing a replacement of a substring of the replace string (e.g. replacing
|
|
|
|
"ed" with "fred" causes an infinite loop. (15) [FIXED]
|
|
|
|
- Cutting more than one line resets the KEEP_CUTBUFFER flag in 0.9.3
|
|
|
|
Error is in bitwise assignment (nano.h). (17) [FIXED]
|
2000-07-22 19:33:19 +00:00
|
|
|
- The wrapping code does not work right for lines like the following:
|
|
|
|
* *
|
|
|
|
Error is in do_wrap, must be rewritten. (18) [FIXED]
|
2000-06-06 05:53:49 +00:00
|
|
|
- Nano fails to follow symlinks, even though -l isn't being used (20).
|
|
|
|
[Bug in global flag init, FIXED]
|
|
|
|
- When using --help or --version, the SIGINT character gets lost. (21) [FIXED]
|
2000-06-07 04:29:34 +00:00
|
|
|
- edit_refresh() and update_line() (and related functions), have
|
2000-06-16 04:25:30 +00:00
|
|
|
trouble when a tab is the character that is the boundry at COLS (23) [FIXED]
|
2000-06-09 00:52:26 +00:00
|
|
|
- there is an off-by-one error in keeping track of totsize. It is caused
|
|
|
|
by the fact that we count the newline at the end when we read in a file
|
|
|
|
but we do not, in fact, display this newline. This should go away
|
|
|
|
implicitly when the "Magic Line" returns, but it is noted here for
|
2000-07-06 02:18:22 +00:00
|
|
|
documentation's sake. (24) [FIXED]
|
2000-07-12 02:28:33 +00:00
|
|
|
- In replace with completely adjacent strings, every other search string
|
2000-07-12 02:41:13 +00:00
|
|
|
will be missed (try replace ':' in a string like ':::::::::') (28) [FIXED]
|
2000-07-12 23:57:25 +00:00
|
|
|
- If nano opens a read-only file with the --tempfile option, and a change
|
|
|
|
is made to the buffer, and a write is attempted, nano will not give you
|
|
|
|
a dialog about not being able to write the file, and it will not let the
|
2000-07-21 22:42:46 +00:00
|
|
|
user exit (29, discovered by Joshua Jensen) [FIXED]
|
2000-07-24 18:28:30 +00:00
|
|
|
- Using nano -k, marked text is not cut properly. (31) [FIXED]
|
2000-07-24 21:16:12 +00:00
|
|
|
- Invoking -t or -k has the effect of invoking both option. (32) [FIXED]
|
2000-07-24 23:18:48 +00:00
|
|
|
- totsize becomes incorrect after word-wrapping (25) [FIXED]
|
|
|
|
- Wrapping a line with autoindent mode sometimes causes a segfault (19)[FIXED]
|
|
|
|
- When inserting files, the display sometimes fails to display properly
|
|
|
|
until a pageup/down occurs (22)[FIXED]
|
2000-08-01 04:26:55 +00:00
|
|
|
- In search/replace code there is too much refreshing in bottomwin (26)
|
|
|
|
[FIXED]
|
2000-07-28 00:36:03 +00:00
|
|
|
- Using nano -t, user can not exit until a filename is given via ^O. (30)
|
|
|
|
[FIXED]
|
2000-07-31 13:52:20 +00:00
|
|
|
- Using -k cut text is not pasted properly. (34) [FIXED].
|
2000-08-03 23:01:12 +00:00
|
|
|
- Using -k pasted text is not updated properly if it goes beyond editbot. (35)
|
|
|
|
[FIXED]
|
2000-07-28 00:58:35 +00:00
|
|
|
- Doing a cut with -k can screw up the filestruct, fault is in cutting
|
|
|
|
code. (36) [FIXED]
|
2000-07-31 13:52:20 +00:00
|
|
|
- Hitting enter on the magic line makes new lines, but they are not
|
|
|
|
written out to disk when saved..... (37). [FIXED]
|
|
|
|
- Page up and page down do not work the same way as Pico (# of lines). (38)
|
|
|
|
[FIXED]
|
2000-08-19 03:53:39 +00:00
|
|
|
- When doing a search and the marker is set, the screen does not always
|
|
|
|
properly update the inverted text (39). [FIXED]
|
2000-07-17 02:54:17 +00:00
|
|
|
** Open BUGS **
|
|
|
|
|
|
|
|
- Marked cutting sometimes leaves a newline in the file unintelligently,
|
|
|
|
such as when all of a line is selected but the mark doesn't proceed to
|
|
|
|
the new line. (8) { Is this an issue? compare to pico 3.5 }
|
|
|
|
- no way to do a replace with the empty string. (11)
|
|
|
|
- Spelling support is not elegant like pico's integration of the 'spell'
|
|
|
|
program. Nano only uses ispell (for now) (12)
|
|
|
|
- Cutting a file with marked text and both marker ends on the same line
|
2000-07-31 13:52:20 +00:00
|
|
|
causes a random segfault (16) [FIXED?]
|
2000-07-17 02:54:17 +00:00
|
|
|
- In replace, there is no way to accept the default replace string. (27)
|
2000-07-27 04:31:52 +00:00
|
|
|
- totsize problems still abound in do_justify (33)
|
2000-08-07 02:16:24 +00:00
|
|
|
|
|
|
|
$Id$
|