Skip to content

Instantly share code, notes, and snippets.

@hkjels
Created November 19, 2012 17:34
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 hkjels/4112125 to your computer and use it in GitHub Desktop.
Save hkjels/4112125 to your computer and use it in GitHub Desktop.
shopt -s progcomp
# {{{
# Node Completion - Auto-generated, do not touch.
shopt -s progcomp
for f in $(command ls ~/.node-completion); do
f="$HOME/.node-completion/$f"
test -f "$f" && . "$f"
done
# }}}
@hkjels
Copy link
Author

hkjels commented Nov 19, 2012

shopt is a bashspecific-command. I think setopt is the equivalent for zsh.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment