diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-02-03 21:36:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 21:36:32 +0100 |
commit | 08155e2b53cdb0e2af72f347d9bb464ea0edab5e (patch) | |
tree | ce210f0330dd00f0f4ff19bcc7e2d7950a006b0f /test/functional/options/num_options_spec.lua | |
parent | 01b4efe9d939d9eed93c55829d8c35ec22113328 (diff) | |
parent | 5a40abe2d599b67af3afa319cf89932824438a6f (diff) | |
download | rneovim-08155e2b53cdb0e2af72f347d9bb464ea0edab5e.tar.gz rneovim-08155e2b53cdb0e2af72f347d9bb464ea0edab5e.tar.bz2 rneovim-08155e2b53cdb0e2af72f347d9bb464ea0edab5e.zip |
Merge #9578 'vim-patch:8.0.{1045,1073,1077,1114}'
Diffstat (limited to 'test/functional/options/num_options_spec.lua')
-rw-r--r-- | test/functional/options/num_options_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/options/num_options_spec.lua b/test/functional/options/num_options_spec.lua index fb0559054d..88e554c86f 100644 --- a/test/functional/options/num_options_spec.lua +++ b/test/functional/options/num_options_spec.lua @@ -32,9 +32,9 @@ describe(':setlocal', function() eq(0, meths.get_option('iminsert')) feed_command('setlocal iminsert=1') eq(0, meths.get_option('iminsert')) - eq(0, meths.get_option('imsearch')) + eq(-1, meths.get_option('imsearch')) feed_command('setlocal imsearch=1') - eq(0, meths.get_option('imsearch')) + eq(-1, meths.get_option('imsearch')) end) end) |