prefix is fine imho. it is consistent with the current mappings 😄
Yeah, I think it's the right move. It'll probably be another major version bump since it could impact someone's setup. It may well come with another client depending on how my experiments go I guess 😄
maybe show a warning that will change for some time?
Hmm perhaps
Even just an echo I guess
Hey guys, how do you go after renaming functions and stuff in Vim? I was trying to do it like this: https://stackoverflow.com/questions/597687/changing-variable-names-in-vim But couldn't make it work. The others methods I tried only renamed the current file functions
worth asking this in #vim
as for me, i typically just use %s/foo/bar/gc
if it's limited to just the buffer i'm working in
i also use https://github.com/dyng/ctrlsf.vim all the time to find instances of a string across the entire project
you can even use :%s/foo/bar/gc
in the results buffer and when you save it, it applies your changes to all the files
I commonly used :%s
, but I thought it only worked for the current file
it does
but you can also use it in the CtrlSF results buffer
and then when you save that buffer, it saves all of the files
Aaaaah got it!
Imma ask at #vim as you suggested, but ctrlsf seems enough. Thanks
sure thing!