Skip to content

Instantly share code, notes, and snippets.

@roktas
Created October 1, 2023 23:08
Show Gist options
  • Save roktas/75f4292d1932b3519d54de9f511e7f20 to your computer and use it in GitHub Desktop.
Save roktas/75f4292d1932b3519d54de9f511e7f20 to your computer and use it in GitHub Desktop.
function mc --wraps=mc
set -l f (mktemp)
if set -q f[1]
env SHELL=/bin/bash mc -P "$f" $argv
if test -r "$f"
set -l d (cat "$f")
if test -n "$d"; and test -d "$d"; and test "$d" != "$PWD"
builtin cd "$d"
end
end
rm -f "$f"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment