]> git.wh0rd.org Git - nano.git/commitdiff
Allowing the function do_cut_till_end() to be rebound.
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 5 May 2014 19:54:34 +0000 (19:54 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Mon, 5 May 2014 19:54:34 +0000 (19:54 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4840 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
doc/man/nanorc.5
src/global.c

index 28a5c0a25a5c074d46d393503b01e29e982006d1..869309ef3447b37928c7fc7c20df4d61e61393f6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
        * doc/man/nanorc.5: Give syntax highlighting its own section,
        add the "header" command, tweak some wording and formatting,
        and trim some duplicate introductory information.
+       * src/global.c (strtosc), doc/man/nanorc.5: Allow the function
+       do_cut_till_end (naming it "cutrestoffile") to be rebound.
 
 2014-05-04  Benno Schulenberg  <bensberg@justemail.net>
        * src/winio.c (statusbar): Elide a variable.
index 100083f3cfcc28f73daed5e1e0c13eebc407433a..e0af6e287dbbd1ac601a4d7d3186771c982aac52 100644 (file)
@@ -387,8 +387,11 @@ Copy the currently stored text into the current buffer position.
 .B mark
 Begin selecting text for cutting at the current position.
 .TP
+.B cutrestoffile
+Cut all text from the cursor position till the end of the buffer.
+.TP
 .B curpos
-Show the current line, column, word positions in the file.
+Show the current cursor position: the line, column, and character positions.
 .TP
 .B wordcount
 Count the number of words in the current buffer.
index ac3d17cc059e4193cd066930fddf629cb97c40d3..aa16a89fabf04b6829267504b05c5a0910d53f2d 100644 (file)
@@ -1278,6 +1278,8 @@ sc *strtosc(char *input)
     else if (!strcasecmp(input, "uncut"))
        s->scfunc = do_uncut_text;
 #ifndef NANO_TINY
+    else if (!strcasecmp(input, "cutrestoffile"))
+       s->scfunc = do_cut_till_end;
     else if (!strcasecmp(input, "copytext"))
        s->scfunc = do_copy_text;
     else if (!strcasecmp(input, "mark"))