vim-escape-dictionary/plugin/escape_dictionary.vim
2024-02-17 16:07:17 +01:00

17 lines
657 B
VimL

" NOTE: keys() & values() return their results in arbitrary order
let s:colorKeys = ['red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'black', 'white', 'bold', 'italics', 'normal', 'reverse']
let s:colorValues = [ '31', '32', '33', '34', '35', '36', '30', '37', '1', '3', '0', '7']
function! s:ColorSelected(id, result)
let val = '\033[' . s:colorValues[a:result-1] . 'm'
exec 'normal! i' . val
endfunction
function! ShowEscapeDictionary()
call popup_menu(s:colorKeys, #{
\ callback: 's:ColorSelected',
\ })
endfunction
command! ShowEscapeDictionary call ShowEscapeDictionary()