xterm-color-table.vim
xterm-color-table.vim copied to clipboard
is toggle mapping f and t functioning?
Hi, not sure if it's just me. It doesn't seem to be working both the mappings of f and t. Nothing happens when i press them in the xterm-color-table buffer, or am i using it wrong? Thanks!
Not sure why they can't be properly called...
I get: modifiable is off
, and when running set modifiable
, I get E14: Invalid address
To take the easy way out, I made :f
show by default. Edit xterm-color-table.vim, and after the line
autocmd BufNewFile __XtermColorTable__ call <SID>ColorTable()
Add the line
autocmd BufNewFile __XtermColorTable__ call <SID>ToggleRgbVisibility()
I'm sure you can do something similar to call SetRgbForeground(expand('
It turns out that the recursive mappings are the culprit. I have created PR #11 to use non-recursive mappings.