Fork me on GitHub
#vim
<
2021-08-16
>
dave14:08:27

https://github.com/tpope/vim-unimpaired also provides handy [q, ]q, [Q and ]Q mappings for :cprevious, :cnext, :cfirst and :clast, respectively.

dharrigan20:08:00

interesting stuff there!

noisesmith20:08:26

also you can save the contents of quickfix to a file, and load them later (helpful for big refactors, it's often better to have a list of locations in a document rather than a shitload of ";; FIXME" comments to grep for)

athomasoriginal23:08:26

vim-iced question: Has anyone experienced a situation where they run their app with clj and iced-vim e.g.

iced repl -A:your-alias
And everything starts fine, but then when you go to type anything in the terminal at the REPL prompt and press enter you just get ^M instead?

mjw23:08:32

Hmm, I haven’t seen that and don’t now. Sorry 😕.

athomasoriginal23:08:43

No worries! It could be a bunch of stuff and maybe none of it is related to vim-iced. Just thought I would ask 🙂

Noah Bogart00:08:51

Is this a readline issue?

noisesmith16:08:00

with ^M that makes me think there's an OS line terminator issue too - ^M is how vim displays 0xD which is the carriage return character unix uses 0xA for line endings, windows uses 0xD 0xA

noisesmith16:08:31

and before mac was unix, it used 0xD alone