-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nvim: git integration #6
Comments
Other options
#!/bin/sh
full_path="$PWD/$1"
if [ -z "$TMUX" ]; then
nvim "$full_path"
else
window_name="neovim"
nvim_pid=$(tmux list-panes -t $window_name -F "#{pane_pid}" | xargs pgrep --parent | xargs pgrep --parent)
socket="/run/user/1000/nvim.$nvim_pid.0"
nvim --server "$socket" --remote-tab "$full_path"
tmux select-window -t "$window_name"
fi
|
found amazing tool but seems nobody support it, only fzf lua with stage/unstage |
seems I should create my own plugin for neovim with git integration that uses delta and treesitter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: