mirror of
https://github.com/nordtheme/vim.git
synced 2026-09-10 07:36:23 -04:00
No need to use execute in NordPalette
This commit is contained in:
parent
c2aaac39e5
commit
120fb1840b
|
|
@ -839,7 +839,7 @@ call s:hi("yamlKey", s:nord7_gui, "", s:nord7_term, "", "", "")
|
|||
function! NordPalette() abort
|
||||
let ret = {}
|
||||
for color in range(16)
|
||||
execute 'let ret["nord'.color.'"] = s:nord'.color.'_gui'
|
||||
let ret['nord' . color.] = 's:nord' . color . '_gui'
|
||||
endfor
|
||||
let ret["nord3_bright"] = s:nord3_gui_bright
|
||||
return ret
|
||||
|
|
|
|||
Loading…
Reference in a new issue