Merge branch 'zsh_completions' of https://github.com/a-sk/cheat into a-sk-zsh_completions

* 'zsh_completions' of https://github.com/a-sk/cheat:
  Install zsh completions
  Add zsh cheats completions
  Add -d/--cheat_directories option to list directories containing cheatsheets
This commit is contained in:
Chris Lane
2013-09-01 14:36:02 -04:00
3 changed files with 19 additions and 2 deletions

6
cheat
View File

@ -122,7 +122,11 @@ def main():
# create/edit option
option = sys.argv[1].lower()
if option in ['-e', '--edit', '-c', '--create']:
if option in ['-e', '--edit', '-c', '--create', '-d', '--cheat_directories']:
# list cheat directories and exit
if option in ['-d', '--cheat_directories']:
print(' '.join(cheat_directories()))
exit()
# make sure EDITOR environment variable is set and that at least 3 arguments
# are given
if 'EDITOR' not in os.environ: