aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ex_cmds/append_spec.lua
diff options
context:
space:
mode:
authorFamiu Haque <famiuhaque@proton.me>2023-05-22 12:47:10 +0600
committerFamiu Haque <famiuhaque@proton.me>2023-05-22 13:02:07 +0600
commit576dddb46168e81aa0f78c28816082c662dedea1 (patch)
tree49c5503fd1bd2a110bc19a96c156e7c31dafbaeb /test/functional/ex_cmds/append_spec.lua
parent8b8e60728486e1fbb308bee2961175be355e550a (diff)
downloadrneovim-576dddb46168e81aa0f78c28816082c662dedea1.tar.gz
rneovim-576dddb46168e81aa0f78c28816082c662dedea1.tar.bz2
rneovim-576dddb46168e81aa0f78c28816082c662dedea1.zip
test: don't unnecessarily specify win/buf for `nvim_(get|set)_option_value`
`nvim_(get|set)_option_value` pick the current buffer / window by default for buffer-local/window-local (but not global-local) options. So specifying `buf = 0` or `win = 0` in opts is unnecessary for those options. This PR removes those to reduce code clutter.
Diffstat (limited to 'test/functional/ex_cmds/append_spec.lua')
-rw-r--r--test/functional/ex_cmds/append_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ex_cmds/append_spec.lua b/test/functional/ex_cmds/append_spec.lua
index e3a39384a6..4134eed87e 100644
--- a/test/functional/ex_cmds/append_spec.lua
+++ b/test/functional/ex_cmds/append_spec.lua
@@ -43,7 +43,7 @@ local cmdtest = function(cmd, prep, ret1)
eq(hisline, funcs.histget(':', -2))
eq(cmd, funcs.histget(':'))
-- Test that command-line window was launched
- eq('nofile', meths.get_option_value('buftype', {buf=0}))
+ eq('nofile', meths.get_option_value('buftype', {}))
eq('n', funcs.mode(1))
feed('<CR>')
eq('c', funcs.mode(1))