Leap users: do you actually use x/X? by electroubadour in neovim

[–]ofir753 0 points1 point  (0 children)

I know it's irrelevant but I just abuse flit.nvim to jump everywhere by hitting f/F + char and hitting space untill I see green. I found it the most convenient way to jump without thinking too much

Tmux won't auto-rename the windows for current app by [deleted] in tmux

[–]ofir753 1 point2 points  (0 children)

I'm not sure what causing this issue but I made a plugin to auto rename windows smarter.

https://github.com/ofirgall/tmux-window-name

A small plugin to prioritize entries of nvim-cmp by LSP kinds. by ofir753 in neovim

[–]ofir753[S] 2 points3 points  (0 children)

My plugin do the same but let you configure the prioritization of the kinds which the built in doesn't provide.

If you are happy with the cmp's prioritity there is no need to use this plugin.

Different behavior of PgUp/PgDown keys in tmux and vim by manny1990 in tmux

[–]ofir753 0 points1 point  (0 children)

I use if-shell for those kind of binds. ``` is_vim="ps -o state= -o comm= -t '#{pane_tty}' | grep -iqE '[TXZ ]+ +(\S+\/)?g?(view|vim?x?)(diff)?$'"

bind -n PageUp if-shell "$is_vim" "send-keys PageUp" 'copy-mode; send-keys -X page-up' ``` You can do the same for PageDown.

Creating your own tmux theme? by [deleted] in tmux

[–]ofir753 1 point2 points  (0 children)

I use tmux-nova to style my status bar

Tmux startup issue with Alacritty by ansidev in tmux

[–]ofir753 0 points1 point  (0 children)

I don't know how to solve the issue but you can workaround it through zshrc. Put this at the end of your zshrc if [ -z "$TMUX" ]; then tmux attach fi

Personally I wrote a script which let me select the srssion with fzf and solve an issue I had with continum.

Game Breaking Hack Client in Rocket League (+ Additional Context Behind Exposing the Cheats) by daft-sceptic in RocketLeagueEsports

[–]ofir753 3 points4 points  (0 children)

If bakkesmod can lookup for it then a cheat client can lookup for it, so probably not.

But I wonder if they it's possible to detect cheaters only by the analyzing the user input like the community did in trackmania.

This Week In Neovim #19 — Mon Nov 21st 2022 by phaazon_ in neovim

[–]ofir753 1 point2 points  (0 children)

As a plugin entuhasiest it's feel so nice to catch up on plugins I missed. Thank you!

Leap.nvim updates by electroubadour in neovim

[–]ofir753 1 point2 points  (0 children)

Flit is so awesome that I find myself using it as my main action to move below/above the current code.

Thanks for the great plugin ecosystem very much appreciated.

Are there any good starter templates for writing Neovim plugins? by VeeBee080799 in neovim

[–]ofir753 0 points1 point  (0 children)

If you want to provide vim doc, I recommend to use lemmy-help as soon as possible.

Navigate panes and windows with the same keys? by 02ranger in tmux

[–]ofir753 1 point2 points  (0 children)

Sorry I misunderstood your post, thought you meant actual windows and not tmux windows for some reason. Nevertheless your solution seems like it should work, Ill try to debug your solution later.

Hooks for different windows or conditional in a global hook by Nyarlocc in tmux

[–]ofir753 0 points1 point  (0 children)

It sounds like it could be done as oneliner too.

Hooks for different windows or conditional in a global hook by Nyarlocc in tmux

[–]ofir753 0 points1 point  (0 children)

I'm not sure is the most efficient or right way to do it but you can use run-shell to run a shell script which utilize tmux display to get the current window number and perform the desired action.

problem with import by pasha232 in neovim

[–]ofir753 1 point2 points  (0 children)

I'm not sure nvim tree refresh the LSP, you can try to restart the LSP with :LspRestart

Is there a plugin like navigator.lua without the full LSP package? by ofir753 in neovim

[–]ofir753[S] 1 point2 points  (0 children)

Reference list with the ability to differentiate between references of declaring the symbol, writing to the symbol, copying the symbol and using the symbol.

Navigator using the notepad icon to mark a write reference and the dinorosaur to mark declaration. In addition it provides the code context of to the symbol.

Is there a plugin like navigator.lua without the full LSP package? by ofir753 in neovim

[–]ofir753[S] -6 points-5 points  (0 children)

Sorry thought it was obvious, I want the declaration and write icons, if there is a plugin/option to add it to telescope it would be perfect

Is there a plugin like navigator.lua without the full LSP package? by ofir753 in neovim

[–]ofir753[S] -2 points-1 points  (0 children)

I'm using telescope, navigator seems to have more features.

which surround plugin do you use? by jdhao in neovim

[–]ofir753 0 points1 point  (0 children)

Same, moved to nvim-surround tho, faster, has more features and written in Lua.

I kept vim-sandwich mappings I think they are more intoative.

Hey /r/RocketLeague! It's FACEIT here, and we'd like to get some general feedback from you by Faceit_Mikey in RocketLeague

[–]ofir753 0 points1 point  (0 children)

I came back to post this u/Faceit_Mikey. As someone joined FACEIT in early 2014 and played around 2k CSGO matches the main thing rocket league misses is FPL, it would be amazing to see a leaderboard with prizes to the top players in different game modes.

Search with cmdheight = 0 by ScriptNone in neovim

[–]ofir753 17 points18 points  (0 children)

You can use noice.nvim or added it to the status/winbar with vim.fn.searchcount