diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-08-23 13:36:06 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-08-23 13:36:06 +0900 |
| commit | 6baef1437fcf40b1d51c5255af78ab297d361d2c (patch) | |
| tree | c3c257e026ec3fb32b787839f81d8af0c2e6c7ce /mac/.local/bin/restartnvim | |
| parent | 07d294425a98ee5d1e22d03e2b24ae2c76e487c0 (diff) | |
updates
Diffstat (limited to 'mac/.local/bin/restartnvim')
| -rwxr-xr-x | mac/.local/bin/restartnvim | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mac/.local/bin/restartnvim b/mac/.local/bin/restartnvim new file mode 100755 index 0000000..ab040ab --- /dev/null +++ b/mac/.local/bin/restartnvim @@ -0,0 +1,25 @@ +#!/bin/sh + +set -e + +# Set new line and tab for word splitting +IFS=" + " + +# Check if the script is running inside a tmux session +if [ -z "$TMUX" ]; then + echo "This script must be run from inside a tmux session." + exit 1 +fi + +# Get the current tmux pane ID +tmux_pane=$(tmux display-message -p '#D') + +# Send Escape, :wq, and Enter to Neovim in the tmux pane +tmux send-keys -t "$tmux_pane" Escape C-m ':wq' C-m + +# Wait to ensure Neovim exits +sleep 0.5 + +# Detach the script from Neovim and wait a bit to ensure Neovim exits +(nohup sh -c "sleep 0.5; tmux send-keys -t \"$tmux_pane\" 'nvim -c \"execute \\\"edit \\\" . v:oldfiles[0] | normal '\''0\"' C-m" >/dev/null 2>&1 &) |
