conjure

:neovim:+:clj: https://github.com/Olical/conjure - If you're enjoying Conjure and want to say thanks: https://github.com/users/Olical/sponsorship :smile: (alt https://conjure.fun/discord)
dharrigan 2020-07-16T06:26:56.457900Z

prefix is fine imho. it is consistent with the current mappings 😄

👍 1
Olical 2020-07-16T12:25:35.458800Z

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 😄

rafaeldelboni 2020-07-16T13:18:29.459700Z

maybe show a warning that will change for some time?

Olical 2020-07-16T13:22:45.460200Z

Hmm perhaps

Olical 2020-07-16T13:22:57.460400Z

Even just an echo I guess

skalangrinsson 2020-07-16T21:43:40.462800Z

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

dave 2020-07-17T18:30:27.471700Z

worth asking this in #vim

dave 2020-07-17T18:30:52.471900Z

as for me, i typically just use %s/foo/bar/gc if it's limited to just the buffer i'm working in

dave 2020-07-17T18:31:15.472100Z

i also use https://github.com/dyng/ctrlsf.vim all the time to find instances of a string across the entire project

dave 2020-07-17T18:31:39.472400Z

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

skalangrinsson 2020-07-17T18:32:20.472900Z

I commonly used :%s, but I thought it only worked for the current file

dave 2020-07-17T18:35:43.476400Z

it does

dave 2020-07-17T18:35:56.476600Z

but you can also use it in the CtrlSF results buffer

dave 2020-07-17T18:36:04.476800Z

and then when you save that buffer, it saves all of the files

skalangrinsson 2020-07-17T18:41:02.477Z

Aaaaah got it!

skalangrinsson 2020-07-17T18:41:47.477200Z

Imma ask at #vim as you suggested, but ctrlsf seems enough. Thanks

dave 2020-07-17T23:57:37.477400Z

sure thing!