blob: fec77c0b5476a7da69213f4acdef4ab7c702ec14 [file] [log] [blame]
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001- Certains are not lined up properly when there are tabs in them at
2 certain col values. (9) [FIXED]
3- edit_refresh() and update_line() do not handle selecting text when the
Robert Siemborski1fc1f3c2000-06-07 04:29:34 +00004 cursor is beyond COLS (10) [FIXED]
Chris Allegretta5bf51d32000-11-16 06:01:10 +00005- no way to do a replace with the empty string (11) [FIXED, yay!]
6- Spelling support is not elegant like pico's integration of the 'spell'
7 program. Nano only uses ispell (for now) (12) [FIXED]
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00008- Moving to the end of a line when close to a multiple of COLS and at
9 least COLS * 2 does not make the screen jump early like it would for
10 if we were around COLS (bugs in edit_refresh, update_line) (13)
11 [FIXED, mostly]
12- When at the very bottom of the edit window, do_wrap goes berzerk and
13 puts the curor somewhere bad, subsequent keystrokes crash the program
14 (14) [FIXED, mostly]
15- Doing a replacement of a substring of the replace string (e.g. replacing
16 "ed" with "fred" causes an infinite loop. (15) [FIXED]
Chris Allegrettac9f147a2000-09-15 13:28:05 +000017- Cutting a file with marked text and both marker ends on the same line
18 causes a random segfault (16) [FIXED]
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000019- Cutting more than one line resets the KEEP_CUTBUFFER flag in 0.9.3
20 Error is in bitwise assignment (nano.h). (17) [FIXED]
Chris Allegretta231d3d62000-07-22 19:33:19 +000021- The wrapping code does not work right for lines like the following:
22 * *
23 Error is in do_wrap, must be rewritten. (18) [FIXED]
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000024- Nano fails to follow symlinks, even though -l isn't being used (20).
25 [Bug in global flag init, FIXED]
26- When using --help or --version, the SIGINT character gets lost. (21) [FIXED]
Robert Siemborski1fc1f3c2000-06-07 04:29:34 +000027- edit_refresh() and update_line() (and related functions), have
Robert Siemborski53875912000-06-16 04:25:30 +000028 trouble when a tab is the character that is the boundry at COLS (23) [FIXED]
Robert Siemborskiea19c732000-06-09 00:52:26 +000029- there is an off-by-one error in keeping track of totsize. It is caused
30 by the fact that we count the newline at the end when we read in a file
31 but we do not, in fact, display this newline. This should go away
32 implicitly when the "Magic Line" returns, but it is noted here for
Robert Siemborski82e603d2000-07-06 02:18:22 +000033 documentation's sake. (24) [FIXED]
Chris Allegretta6a2273d2000-07-12 02:28:33 +000034- In replace with completely adjacent strings, every other search string
Chris Allegrettafa8f7bf2000-07-12 02:41:13 +000035 will be missed (try replace ':' in a string like ':::::::::') (28) [FIXED]
Chris Allegretta82bd1b32000-07-12 23:57:25 +000036- If nano opens a read-only file with the --tempfile option, and a change
37 is made to the buffer, and a write is attempted, nano will not give you
38 a dialog about not being able to write the file, and it will not let the
Chris Allegrettaacb62342000-07-21 22:42:46 +000039 user exit (29, discovered by Joshua Jensen) [FIXED]
Chris Allegrettaf4e75e12000-07-24 18:28:30 +000040- Using nano -k, marked text is not cut properly. (31) [FIXED]
Chris Allegretta05597192000-07-24 21:16:12 +000041- Invoking -t or -k has the effect of invoking both option. (32) [FIXED]
Robert Siemborskia417ddc2000-07-24 23:18:48 +000042- totsize becomes incorrect after word-wrapping (25) [FIXED]
Robert Siemborskia417ddc2000-07-24 23:18:48 +000043- Wrapping a line with autoindent mode sometimes causes a segfault (19)[FIXED]
44- When inserting files, the display sometimes fails to display properly
45 until a pageup/down occurs (22)[FIXED]
Chris Allegretta55d54552000-08-01 04:26:55 +000046- In search/replace code there is too much refreshing in bottomwin (26)
47 [FIXED]
Chris Allegretta1cc0b7f2000-11-03 01:29:04 +000048- In replace, there is no way to accept the default replace string. (27)
49 [FIXED]
Chris Allegrettaa1a55c72000-07-28 00:36:03 +000050- Using nano -t, user can not exit until a filename is given via ^O. (30)
51 [FIXED]
Chris Allegretta5d8f6252000-07-31 13:52:20 +000052- Using -k cut text is not pasted properly. (34) [FIXED].
Chris Allegrettad7c31c12000-08-03 23:01:12 +000053- Using -k pasted text is not updated properly if it goes beyond editbot. (35)
54 [FIXED]
Chris Allegretta7975ed82000-07-28 00:58:35 +000055- Doing a cut with -k can screw up the filestruct, fault is in cutting
56 code. (36) [FIXED]
Chris Allegretta5d8f6252000-07-31 13:52:20 +000057- Hitting enter on the magic line makes new lines, but they are not
58 written out to disk when saved..... (37). [FIXED]
59- Page up and page down do not work the same way as Pico (# of lines). (38)
60 [FIXED]
Chris Allegrettaf1d33d32000-08-19 03:53:39 +000061- When doing a search and the marker is set, the screen does not always
62 properly update the inverted text (39). [FIXED]
Chris Allegrettacf7c9932000-08-30 13:57:36 +000063- Searches for a string that only exist on one line multiple times will
64 fail after finding the last occurance (discovered by Ken Tyler) (40). [FIXED]
Chris Allegretta91d392c2000-09-11 13:27:09 +000065- Alt-Z is current broken to toggle suspend. I guess I still don't know
66 signals very well =-) (41) [FIXED].
Chris Allegrettad746d902000-09-05 13:15:44 +000067- Unable to cut the entire file using the marker (discovered by Kev Tyler)
68 (42). [FIXED]
Chris Allegrettac9f147a2000-09-15 13:28:05 +000069- The keypad does not work when nano runs in the Gnome terminal (43). [FIXED]
Chris Allegrettaf45c18d2000-09-16 05:25:06 +000070- When reading in a file, if the file is a directory the contents of the
71 file being edited are blown away (discovered by Chris Pimlot) (44). [FIXED]
Chris Allegretta1cc0b7f2000-11-03 01:29:04 +000072- in certain terms, nano will leave a "ghost" of screen upon exit
73 when called from inside mutt (among other settings) (45). [FIXED]
Chris Allegretta810632d2000-10-27 04:36:01 +000074- In replace, hitting the Goto line shortcut key does nothing after a
75 search string is entered (discovered by Rocco Corsi) (46) [FIXED].
Chris Allegretta5bf51d32000-11-16 06:01:10 +000076- When typing in a string in serahc or replace and hitting CASE_SENSITVE
77 or the other search string, the current string edit is blown away in
78 favor of the last stored search (47) [FIXED]
Chris Allegrettaf45c18d2000-09-16 05:25:06 +000079
Robert Siemborskiaa448412000-07-17 02:54:17 +000080** Open BUGS **
81
82- Marked cutting sometimes leaves a newline in the file unintelligently,
83 such as when all of a line is selected but the mark doesn't proceed to
84 the new line. (8) { Is this an issue? compare to pico 3.5 }
Chris Allegretta07e97d62000-10-03 01:52:50 +000085- totsize problems still abound in do_justify (33).
Chris Allegrettac87a4112000-08-07 02:16:24 +000086
87$Id$