Skip to content

Instantly share code, notes, and snippets.

@dragolabs
Created May 6, 2020 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dragolabs/c5726432e7b9f2bc6894e99fd18f7b6f to your computer and use it in GitHub Desktop.
Save dragolabs/c5726432e7b9f2bc6894e99fd18f7b6f to your computer and use it in GitHub Desktop.
Stay in the current directory after closing mc
# Midnight Commander magic
if [ -f /usr/local/opt/midnight-commander/libexec/mc/mc-wrapper.sh ]; then
alias mc='. /usr/local/opt/midnight-commander/libexec/mc/mc-wrapper.sh'
elif [ -f /usr/lib/mc/mc-wrapper.sh ]; then
alias mc='. /usr/lib/mc/mc-wrapper.sh'
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment