altf.nvim - a project alternate file manager for neovim release v1.0.0
altf.nvim - a project alternate file manager for neovim release v1.0.0
I had never looked at #LSP but now I want to integrate it in my #neovim setup and I find out that there are a lot for each language… so here comes another question to #python devs: which LSP config do you use in those listed at https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md?
#Vimovember Day 11 - Registers
The only thing I can think of at the moment concerning registers is that, having the which-key (which I think is responsible of this behavior), " lists all of them and that helps me a lot to make my choice before hitting p to paste the correct one in my document 😄
| Open a terminal buffer | |
| Briefly suspend vim | |
| A different terminal/tmux tab or split | |
| Something else |
#Vimovember Day 10 - Insert Tricks
I have no insert trick other than the regular keymaps, I guess… I'd simply mention A which goes in insert mode at the end of a line. I use it often :)
Another little thing that made my day sometimes was :r <filename> to insert a file in the document.
### Day 9: Repeat (2/2)
* :normal .
:3,10normal .
-> repeats your last change on every line from 3 to 10.
Combine this with macros or registers, and you have automation magic without writing loops.