diff options
author | Daniel Wennberg <daniel.wennberg@gmail.com> | 2019-02-15 14:12:00 -0800 |
---|---|---|
committer | Daniel Wennberg <daniel.wennberg@gmail.com> | 2019-02-15 14:12:00 -0800 |
commit | a40a4514ce82619e32028d39966a2fa61ebbf7e4 (patch) | |
tree | a09e90223bbbc4cb176ad70fb5c2200e9f96faef /colors/base16-tomorrow.vim | |
parent | 2073e2dd9fa0172ccdba92b3f0df25642a69f7db (diff) |
Use local variables, don't modify a: dict
Diffstat (limited to 'colors/base16-tomorrow.vim')
-rw-r--r-- | colors/base16-tomorrow.vim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/colors/base16-tomorrow.vim b/colors/base16-tomorrow.vim index 4f6a04a..637df95 100644 --- a/colors/base16-tomorrow.vim +++ b/colors/base16-tomorrow.vim @@ -150,8 +150,8 @@ let g:colors_name = "base16-tomorrow" " Highlighting function " Optional variables are attributes and guisp function! g:Base16hi(group, guifg, guibg, ctermfg, ctermbg, ...) - let a:attr = get(a:, 1, "") - let a:guisp = get(a:, 2, "") + let l:attr = get(a:, 1, "") + let l:guisp = get(a:, 2, "") if a:guifg != "" exec "hi " . a:group . " guifg=#" . a:guifg @@ -165,11 +165,11 @@ function! g:Base16hi(group, guifg, guibg, ctermfg, ctermbg, ...) if a:ctermbg != "" exec "hi " . a:group . " ctermbg=" . a:ctermbg endif - if a:attr != "" - exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr + if l:attr != "" + exec "hi " . a:group . " gui=" . l:attr . " cterm=" . l:attr endif - if a:guisp != "" - exec "hi " . a:group . " guisp=#" . a:guisp + if l:guisp != "" + exec "hi " . a:group . " guisp=#" . l:guisp endif endfunction |