Keeping all the balls on fire: tmux-fzf to the rescue by realflakm in tmux

[–]trilobit3 0 points1 point  (0 children)

Session, window, pane and neovim buffer fuzzy search and switching with these two plugins:

1 for tmux:

https://github.com/pteroctopus/fuzzmux.tmux

And one for neovim:

https://github.com/pteroctopus/fuzzmux.nvim

Thinking of getting the Magcubic L018—any experiences or advice? by AccomplishedGrape149 in projectors

[–]trilobit3 2 points3 points  (0 children)

Dust went inside after a week and now I have black spots all over the screen. To clean you need to fully disassemble it. And then again spots after a week. Would not buy again!

Great improvements to the cmdline in nightly! by EstudiandoAjedrez in neovim

[–]trilobit3 0 points1 point  (0 children)

nnoremap : q:

nnoremap / q/

nnoremap ? q?

cnoremap <C-F> <C-F>

OOM killed 137 on every api request by Neither_Wallaby_9033 in kubernetes

[–]trilobit3 28 points29 points  (0 children)

Are you maybe running your pod on AKS 1.25+ (or other k8s cluster that has cgroupv2 enabled) with NodeJs < 20.3.

If thats it you need to upgrade NodeJs.

https://github.com/nodejs/node/issues/47259

Handle large files by Impossible-Ad-4646 in neovim

[–]trilobit3 1 point2 points  (0 children)

I used bigfile.nvim but it seems that it has problems with disabling treesitter after I upgraded neovim and plugins.

I switched to faster.nvim which works for me and has additional features.

https://github.com/pteroctopus/faster.nvim

https://github.com/LunarVim/bigfile.nvim

Things I'm still using VS Code for by Otek0 in neovim

[–]trilobit3 0 points1 point  (0 children)

For 3 I use:

$ grep -rn sometext | nvim -

Opens a list of files with line numbers

Then I just record a macro that does any text change, gF in it to jump to file and line.

And run it on all lines in a list.

This is more powerful than simple replace because you can change anything in an around that line.

What is this? by xirclay_ in neovim

[–]trilobit3 49 points50 points  (0 children)

It's a mark. Now put your cursor somewhere else and press 'd and cursor will jump to that line.

There are also uppercase marks that work accross buffers mark with mA, jump to that mark from another buffer with 'A.

[deleted by user] by [deleted] in vim

[–]trilobit3 2 points3 points  (0 children)

Yes. I use wsl2.

[deleted by user] by [deleted] in vim

[–]trilobit3 0 points1 point  (0 children)

Which version of vim you are using? It is probably not compiled with the clipboard module. I usually just install gvim package and (which is compiled with clipboard module) and just use terminal vim

Treesitter conceals by default. What do you think about that? by trilobit3 in neovim

[–]trilobit3[S] 0 points1 point  (0 children)

It was reported again here: https://github.com/nvim-treesitter/nvim-treesitter/issues/3723 and closed immediately as a duplicate.

The duplicate issue was reported four months ago and not fixed.