diff options
author | Daniel Hahler <git@thequod.de> | 2019-07-04 15:21:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-04 15:21:44 +0200 |
commit | 5835398152b3584b381dcce751b4a53ae634c4d2 (patch) | |
tree | 327ce2688321a814e8df96fdcce26a5fe72cfaca /src/nvim/options.lua | |
parent | f668f0afb24782aab36c8538f78823598c1f11e3 (diff) | |
parent | 32361a1245d1584ae074702aa645bc20e353f787 (diff) | |
download | rneovim-5835398152b3584b381dcce751b4a53ae634c4d2.tar.gz rneovim-5835398152b3584b381dcce751b4a53ae634c4d2.tar.bz2 rneovim-5835398152b3584b381dcce751b4a53ae634c4d2.zip |
Merge pull request #10414 from blueyed/luacheck
Improve luacheck integration, fix more issues.
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..27f72f6441 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 (currently unused) 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, |