]> git.wh0rd.org Git - nano.git/commitdiff
Marking window resizes and better file-type detection as done.
authorBenno Schulenberg <bensberg@justemail.net>
Thu, 28 May 2015 14:56:38 +0000 (14:56 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Thu, 28 May 2015 14:56:38 +0000 (14:56 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5232 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
TODO

index 4882f9b77f2e15dc571316f1c099224efd36f8a5..db9ce17b3f8b9393de23b95e4e700fc729822d0c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
        the whitespace after the recent changes in logic.
        * src/prompt.c (do_yesno_prompt): Use 'width' instead of hardcoded
        16.  Also always first set the string and then position the cursor.
+       * TODO: Mark window resizes and better file-type detection as done.
 
 2015-05-28  Mahyar Abbaspour  <mahyar.abaspour@gmail.com>
        * src/nano.c (handle_sigwinch, regenerate_screen), src/global.c,
@@ -26,7 +27,7 @@
        to calculate the number of digits in UINT_MAX.
        * src/files.c (get_next_filename): Limit the number of backup files
        to one hundred thousand -- which should be far more than enough --
-       before finding a unused filename takes an annoying amount of time.
+       before finding an unused filename takes an annoying amount of time.
        * src/utils.c (digits): Delete this now unneeded function.
 
 2015-05-03  Benno Schulenberg  <bensberg@justemail.net>
diff --git a/TODO b/TODO
index fef13de4b44c2ced16f741490f404ba7a7695a07..cb3dbbbb8f60602f555a8f26026b1de49695af0d 100644 (file)
--- a/TODO
+++ b/TODO
@@ -17,30 +17,32 @@ For the future (no targeted version, catch-all)
 - Allow color syntaxes to apply to more than just color, so that we can
   e.g. specify a different alternate spell checker depending on which
   file type we have open.
-- Allow even better file type detection than we have currently, e.g. 
-  through libmagic?
 - Allow setting marks (saved positions, not to be confused with the mark
   set via Ctrl-^) at various lines and/or columns in the buffer, and
-  allow movement between them with a single keystroke? (we're running 
-  out of keystrokes)
+  allow movement between them with a single keystroke? (We're running
+  out of keystrokes, though.)
 - Allow searching for and replacing newlines.
 - Fix handling of bad/incomplete UTF-8 sequences to display one Unicode
   FFFD (Replacement Character) per sequence instead of one per byte.
 
-For version 2.4:
+For version 2.6:
 - New regression framework built on expect.
-- Allow text searches in the help browser.
-- Handle window resizes better.  After we resize, we should stay
-  wherever we were before we resized, as Pico does.
+- Allow text searches in the help viewer.
 - Add the ability to move to different lines of the screen with a single
   keystroke, e.g. M-` (M-~) to go to the top line, M-& (M-7) to go to
   the center line, and M-' (M-") to go to the last line.
 - Detect when we're pasting text, so that we can handle it differently
-  (i.e. faster than currently with screen redraws)
+  (i.e. faster than currently with screen redraws).
 - Allow piping marked text to an external command and replacing it with
   the command's output (as the internal spell checker already does with
   the "spell" command)?
 
+For version 2.4:
+- Handle window resizes better.  After we've resized, we should stay
+  wherever we were before we resized, as Pico does. [DONE]
+- Allow even better file-type detection than we have currently, e.g.
+  through libmagic. [DONE]
+
 For version 2.2:
 - Rebindable keys? [DONE]
 - Undo/Redo keys (M-U and M-E)? [DONE]