Fix missing global (#384)

* add selected command to cmd-history

* make N_ function global

* fix vimoptions description resolution and add color
This commit is contained in:
Senghan Bright
2021-01-04 08:02:11 +01:00
committed by GitHub
parent 6a403ddf98
commit 71ea4130a2
2 changed files with 8 additions and 9 deletions

View File

@@ -41,7 +41,7 @@ local imacros=function(s)
return '(intptr_t)' .. s
end
end
local N_=function(s) -- luacheck: ignore 211 (currently unused)
N_=function(s) -- luacheck: ignore 211 (currently unused)
return function()
return 'N_(' .. cstr(s) .. ')'
end