Commit c3e52f16 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

per Jordi's suggestion, change the toggle for -E/--tabstospaces to

Meta-Q


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2750 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 11 additions and 11 deletions
+11 -11
...@@ -90,13 +90,13 @@ CVS code - ...@@ -90,13 +90,13 @@ CVS code -
wint_t type. (DLR, found by Emily Jackson) wint_t type. (DLR, found by Emily Jackson)
- Add the ability to convert typed tabs to spaces using - Add the ability to convert typed tabs to spaces using
the -E/--tabstospaces command line options, the "tabstospaces" the -E/--tabstospaces command line options, the "tabstospaces"
rcfile option, and the toggle Meta-E. Note that this doesn't rcfile option, and the toggle Meta-Q (since QBasic did this by
affect tabs entered using verbatim input, and that it's default :)). Note that this doesn't affect tabs entered using
disabled when NANO_SMALL is defined. Also, change the short verbatim input, and that it's disabled when NANO_SMALL is
command line option for --backupdir from -E to -C. Changes to defined. Also, change the short command line option for
toggle_init(), usage(), do_tab(), main(), nanorc.sample, --backupdir from -E to -C. Changes to toggle_init(), usage(),
nano.1, nanorc.5, and nano.texi. (DLR, suggested by many do_tab(), main(), nanorc.sample, nano.1, nanorc.5, and
people) nano.texi. (DLR, suggested by many people)
- Change the CONSTUPDATE, REVERSE_SEARCH, and SMOOTHSCROLL flags - Change the CONSTUPDATE, REVERSE_SEARCH, and SMOOTHSCROLL flags
to the CONST_UPDATE, BACKWARDS_SEARCH, and SMOOTH_SCROLL to the CONST_UPDATE, BACKWARDS_SEARCH, and SMOOTH_SCROLL
flags, respectively. (DLR) flags, respectively. (DLR)
......
...@@ -352,9 +352,6 @@ toggles the -B (@code{--backup}) command line flag. ...@@ -352,9 +352,6 @@ toggles the -B (@code{--backup}) command line flag.
@item Constant Cursor Position Display Toggle (Meta-C) @item Constant Cursor Position Display Toggle (Meta-C)
toggles the -c (@code{--const}) command line flag. toggles the -c (@code{--const}) command line flag.
@item Tabs to Spaces Toggle (Meta-E)
toggles the -E (@code{--tabstospaces}) command line flag.
@item Multiple File Buffers Toggle (Meta-F) @item Multiple File Buffers Toggle (Meta-F)
toggles the -F (@code{--multibuffer}) command line flag. toggles the -F (@code{--multibuffer}) command line flag.
...@@ -383,6 +380,9 @@ toggles the -O (@code{--morespace}) command line flag. ...@@ -383,6 +380,9 @@ toggles the -O (@code{--morespace}) command line flag.
toggles whitespace display mode if you have a "whitespace" option in toggles whitespace display mode if you have a "whitespace" option in
your .nanorc. your .nanorc.
@item Tabs to Spaces Toggle (Meta-Q)
toggles the -E (@code{--tabstospaces}) command line flag.
@item Smooth Scrolling Toggle (Meta-S) @item Smooth Scrolling Toggle (Meta-S)
toggles the -S (@code{--smooth}) command line flag. toggles the -S (@code{--smooth}) command line flag.
......
...@@ -490,7 +490,7 @@ typedef struct syntaxtype { ...@@ -490,7 +490,7 @@ typedef struct syntaxtype {
#define TOGGLE_SMARTHOME_KEY NANO_ALT_H #define TOGGLE_SMARTHOME_KEY NANO_ALT_H
#define TOGGLE_WHITESPACE_KEY NANO_ALT_P #define TOGGLE_WHITESPACE_KEY NANO_ALT_P
#define TOGGLE_MORESPACE_KEY NANO_ALT_O #define TOGGLE_MORESPACE_KEY NANO_ALT_O
#define TOGGLE_TABSTOSPACES_KEY NANO_ALT_E #define TOGGLE_TABSTOSPACES_KEY NANO_ALT_Q
#endif /* !NANO_SMALL */ #endif /* !NANO_SMALL */
#define MAIN_VISIBLE 12 #define MAIN_VISIBLE 12
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment