Skip to content

Instantly share code, notes, and snippets.

/.sh Secret

Created July 20, 2015 03:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/b751aee935dd7892e049 to your computer and use it in GitHub Desktop.
Save anonymous/b751aee935dd7892e049 to your computer and use it in GitHub Desktop.
#=================
# manpage completion control
#=================
#{{{
export MYMANPATH=$HOME/man/manpages
function mm {
vi "$MYMANPATH/$1"
}
function _completeman {
reply=($(ls $MYMANPATH))
}
compctl -K _completeman mm
#}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment