Skip to content

Instantly share code, notes, and snippets.

@madewokherd
Created August 10, 2024 16:53
Show Gist options
  • Save madewokherd/1c89a195af70b02dd5e07c3ab7a237ad to your computer and use it in GitHub Desktop.
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
#!/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