diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-05-31 15:08:59 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-05-31 15:08:59 +0200 |
commit | aaad995f8384a77a64efba6846c9c4ac99de0953 (patch) | |
tree | fe638d462eb88388fe3f35dcdd3e22cca18e074a /src/optionstr.c | |
parent | f09715bc5c827dab4425736da9024727836997e5 (diff) | |
download | vim-git-aaad995f8384a77a64efba6846c9c4ac99de0953.tar.gz |
patch 8.2.0860: cannot use CTRL-A and CTRL-X on unsigned numbersv8.2.0860
Problem: Cannot use CTRL-A and CTRL-X on unsigned numbers.
Solution: Add "unsigned" to 'nrformats'. (Naruhiko Nishino, closes #6144)
Diffstat (limited to 'src/optionstr.c')
-rw-r--r-- | src/optionstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/optionstr.c b/src/optionstr.c index c03d994c3..ddb6c50f3 100644 --- a/src/optionstr.c +++ b/src/optionstr.c @@ -21,7 +21,7 @@ static char *(p_bo_values[]) = {"all", "backspace", "cursor", "complete", "hangul", "insertmode", "lang", "mess", "showmatch", "operator", "register", "shell", "spell", "wildmode", NULL}; -static char *(p_nf_values[]) = {"bin", "octal", "hex", "alpha", NULL}; +static char *(p_nf_values[]) = {"bin", "octal", "hex", "alpha", "unsigned", NULL}; static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL}; #ifdef FEAT_CRYPT static char *(p_cm_values[]) = {"zip", "blowfish", "blowfish2", NULL}; |