Open juanMarinero opened 3 years ago
Maybe these could be workarounds to deal blindly with byte sequences. Quoting:
nnoremap <Leader>c :normal [your macro] <Enter>
function TransformNodeCallback()
normal [your macro]
endfunction
nnoremap <Leader>c :call TransformNodeCallback()^M
Quoting next vi.stackexchange answer:
In vim-peekaboo the output is also byted as in
:registers
command.But one can overwrite (in command line) a register through user friendly key-strokes (Vim ones as in mapping, not byted). Quoting this:
So my plugin feature request is this. To show the Vim mappings, not the sequence of bytes.
Related to this I tried to make a function, just to (not byte sequence) edit a register quickly in command line. With few easy examples it is working (see screenshot), BUT I did test just easy cases, a lot lot more is TODO. Furthermore, I don't know:
Thanks in advance!
Screenshot example:
Note: in next pasted code, the bytes sequences are not recognized in github, for example
^[
is transformed to. Rather download previous file, and change extension to
.vim
(github neither allows to upload.vim
files in comments [banging head on wall emoji]).Btw if anyone is interested, for the
@@ab
map that I mention in screenshot check this or this: