diff options
| author | Senghan Bright <senghan.bright@deltaprojects.com> | 2021-01-04 08:02:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-04 08:02:11 +0100 |
| commit | 71ea4130a2a0afd5800707ea30bc03d2adaabae4 (patch) | |
| tree | 412501ec5cad8911a40e4aa9e409be70997421ba /data | |
| parent | 6a403ddf98e182d73ec280361135c391af111eec (diff) | |
Fix missing global (#384)
* add selected command to cmd-history
* make N_ function global
* fix vimoptions description resolution and add color
Diffstat (limited to 'data')
| -rw-r--r-- | data/options/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/options/options.lua b/data/options/options.lua index 219babb..95861cc 100644 --- a/data/options/options.lua +++ b/data/options/options.lua @@ -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 |
