aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-11-15 10:14:12 -0500
committerJames McCoy <jamessan@jamessan.com>2016-11-15 11:48:37 -0500
commit9d9d93aee39202bc9d691c01a40338ed7bf6df2f (patch)
tree2245524b65af8d285af31224416bee92542ff05e /src
parent10c72cd3658e17aafa41b5752c23d97df88fc71f (diff)
downloadrneovim-9d9d93aee39202bc9d691c01a40338ed7bf6df2f.tar.gz
rneovim-9d9d93aee39202bc9d691c01a40338ed7bf6df2f.tar.bz2
rneovim-9d9d93aee39202bc9d691c01a40338ed7bf6df2f.zip
vim-patch:7.4.2174
Problem: Adding duplicate flags to 'whichwrap' leaves commas behind. Solution: Also remove the commas. (Naruhiko Nishino) https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Diffstat (limited to 'src')
-rw-r--r--src/nvim/option.c22
-rw-r--r--src/nvim/testdir/test_alot.vim1
-rw-r--r--src/nvim/testdir/test_options.vim40
-rw-r--r--src/nvim/version.c2
4 files changed, 59 insertions, 6 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index 3bd1ce217e..fc93e942ca 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -1728,12 +1728,24 @@ do_set (
if (flags & P_FLAGLIST) {
/* Remove flags that appear twice. */
- for (s = newval; *s; ++s)
- if ((!(flags & P_COMMA) || *s != ',')
- && vim_strchr(s + 1, *s) != NULL) {
- STRMOVE(s, s + 1);
- --s;
+ for (s = newval; *s; s++) {
+ // if options have P_FLAGLIST and P_ONECOMMA such as
+ // 'whichwrap'
+ if (flags & P_ONECOMMA) {
+ if (*s != ',' && *(s + 1) == ','
+ && vim_strchr(s + 2, *s) != NULL) {
+ // Remove the duplicated value and the next comma.
+ STRMOVE(s, s + 2);
+ s -= 2;
+ }
+ } else {
+ if ((!(flags & P_COMMA) || *s != ',')
+ && vim_strchr(s + 1, *s) != NULL) {
+ STRMOVE(s, s + 1);
+ s--;
+ }
}
+ }
}
if (save_arg != NULL) /* number for 'whichwrap' */
diff --git a/src/nvim/testdir/test_alot.vim b/src/nvim/testdir/test_alot.vim
index 60f264fb3f..156604051d 100644
--- a/src/nvim/testdir/test_alot.vim
+++ b/src/nvim/testdir/test_alot.vim
@@ -10,6 +10,7 @@ source test_expr_utf8.vim
source test_feedkeys.vim
source test_cmdline.vim
source test_menu.vim
+source test_options.vim
source test_popup.vim
source test_regexp_utf8.vim
source test_syn_attr.vim
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim
new file mode 100644
index 0000000000..cceb180189
--- /dev/null
+++ b/src/nvim/testdir/test_options.vim
@@ -0,0 +1,40 @@
+" Test for options
+
+function! Test_whichwrap()
+ set whichwrap=b,s
+ call assert_equal('b,s', &whichwrap)
+
+ set whichwrap+=h,l
+ call assert_equal('b,s,h,l', &whichwrap)
+
+ set whichwrap+=h,l
+ call assert_equal('b,s,h,l', &whichwrap)
+
+ set whichwrap+=h,l
+ call assert_equal('b,s,h,l', &whichwrap)
+
+ set whichwrap&
+endfunction
+
+function! Test_options()
+ let caught = 'ok'
+ try
+ options
+ catch
+ let caught = v:throwpoint . "\n" . v:exception
+ endtry
+ call assert_equal('ok', caught)
+
+ " close option-window
+ close
+endfunction
+
+function! Test_path_keep_commas()
+ " Test that changing 'path' keeps two commas.
+ set path=foo,,bar
+ set path-=bar
+ set path+=bar
+ call assert_equal('foo,,bar', &path)
+
+ set path&
+endfunction
diff --git a/src/nvim/version.c b/src/nvim/version.c
index c1459466a2..08eff53d1e 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -268,7 +268,7 @@ static int included_patches[] = {
// 2177,
// 2176 NA
// 2175,
- // 2174,
+ 2174,
// 2173,
// 2172,
// 2171,