mirror of https://github.com/cheat/cheat.git
Minor modifications on the cheat file. Broke the -d option out into its own logical block.
This commit is contained in:
parent
91d01d9b96
commit
14821d424c
11
cheat
11
cheat
|
@ -122,11 +122,7 @@ def main():
|
|||
|
||||
# create/edit option
|
||||
option = sys.argv[1].lower()
|
||||
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()
|
||||
if option in ['-e', '--edit', '-c', '--create']:
|
||||
# make sure EDITOR environment variable is set and that at least 3 arguments
|
||||
# are given
|
||||
if 'EDITOR' not in os.environ:
|
||||
|
@ -145,6 +141,11 @@ def main():
|
|||
elif option in ['-c', '--create']:
|
||||
create_cheatsheet(' '.join(sys.argv[2:]), cheatsheets)
|
||||
|
||||
# list cheat directories and exit
|
||||
if option in ['-d', '--cheat_directories']:
|
||||
print(' '.join(cheat_directories()))
|
||||
exit()
|
||||
|
||||
# print the cheatsheet if it exists
|
||||
if keyphrase in cheatsheets:
|
||||
filename = os.path.join(cheatsheets[keyphrase], keyphrase)
|
||||
|
|
Loading…
Reference in New Issue