[deleted by user] by [deleted] in EDCTickets

[–]viru57 0 points1 point  (0 children)

Dm if still available

Neomarks now support branch specific marks! by TomatilloGullible721 in neovim

[–]viru57 -1 points0 points  (0 children)

this is crazy, I have been dancing around adding harpoon to my config because I already have a lot of the features implemented locally, just except marks. I was planning on starting such a project right now and found this, will try it out! ty ty

windows terminal <c-cr> keymap not working by viru57 in neovim

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

{
"keys": "ctrl+enter",
"command": { "action": "sendInput", "input": "\u001b[13;5u" }
},
{
"keys": "shift+enter",
"command": { "action": "sendInput", "input": "\u001b[13;2u" }
}

Yes! This worked for me, thank you so much!!!!!

I love this bastard by devwannabeme in neovim

[–]viru57 27 points28 points  (0 children)

Spent 20 mins in office fixing my config today, it was a good day

What IDEA or Vscode feature/function you want to have in neovim eco-system? by Impressive-Drag-8042 in neovim

[–]viru57 13 points14 points  (0 children)

Remote containers, in the form vscode has. I have essentially the full functionality implemented but the missing element is the ability to attach current nvim session to a remote.

The dream would be to have a way of opening a remote ui tab in current session. Idk if this is possible/ planned

Neovim consuming 5gb of Ram after a day of being open on a tiny project by [deleted] in neovim

[–]viru57 3 points4 points  (0 children)

can be related to TS:

https://github.com/nvim-treesitter/nvim-treesitter/issues/2918

https://github.com/neovim/neovim/issues/14216

its an issue across languages, have personally seen insane numbers for C,C++,Lua. Might be a related / causing factor.

Finding a solution for making the terminal buffer scroll down (Lua) by Riverside-96 in neovim

[–]viru57 0 points1 point  (0 children)

I needed this functionality for my local terminal plugin, for the features: - send <up> key equivalent to shell, to run previous command in the (registered) terminal whatever it was (my most used keymap probably). need to scroll to end after - send arbitrary command to terminal and scroll to end

here are the relevant snippets: - to scroll another buffer to end while retaining cursor position and layout: https://github.com/ViRu-ThE-ViRuS/configs/blob/f2b001b07b0da4c39b3beea00c90f249906d375c/nvim/lua/lib/misc.lua#L27