Created
August 10, 2024 16:53
-
-
Save madewokherd/1c89a195af70b02dd5e07c3ab7a237ad to your computer and use it in GitHub Desktop.
Bash script that creates a new terminal buffer in gvim and runs a command in it
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
script=$(mktemp) | |
echo '#!/bin/sh' > ${script} | |
env|while IFS="" read -r var || test -n "${var}"; do | |
printf 'export %q\n' "${var}" >> ${script} | |
done | |
printf 'rm %q\n' "${script}" >> ${script} | |
printf 'cd %q\n' "$PWD" >> ${script} | |
printf 'exec ' >> ${script} | |
for arg in "$@"; do | |
printf '%q ' "${arg}" >> ${script} | |
done | |
gvim --remote-send '<C-W>:term /bin/sh '"${script}"'<CR><C-W>:file '"$(printf '%q' "$*")"'<CR>' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment