diff options
author | Sameed Ali <sameedali94@gmail.com> | 2019-04-14 16:56:11 -0400 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-07-04 06:59:44 +0200 |
commit | 571b2c5e7be105d23ada987a7c7080f8631bfd15 (patch) | |
tree | 0c07e601c2f1e55525f81a5804a5ec992adaeef0 /src/nvim/options.lua | |
parent | 99b870d61c0a574011d16886d2cea44d18c11a2d (diff) | |
download | rneovim-571b2c5e7be105d23ada987a7c7080f8631bfd15.tar.gz rneovim-571b2c5e7be105d23ada987a7c7080f8631bfd15.tar.bz2 rneovim-571b2c5e7be105d23ada987a7c7080f8631bfd15.zip |
Fix luacheck errors for all Lua source files
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index c963ddd49c..30409807aa 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -40,7 +40,7 @@ local imacros=function(s) return '(intptr_t)' .. s end end -local N_=function(s) +local N_=function(s) -- luacheck: ignore 211 return function() return 'N_(' .. cstr(s) .. ')' end @@ -189,7 +189,6 @@ return { }, { full_name='belloff', abbreviation='bo', - deny_duplicates=true, type='string', list='comma', scope={'global'}, deny_duplicates=true, vi_def=true, |