#118 Make ls_lah disabled by default

This commit is contained in:
nvbn
2015-04-25 03:42:36 +02:00
parent f610cf2256
commit 419878f526
3 changed files with 11 additions and 7 deletions
+5 -1
View File
@@ -1,5 +1,9 @@
enabled_by_default = False
def match(command, settings):
return ('ls' in command.script and not ('ls -' in command.script))
return 'ls' in command.script and not ('ls -' in command.script)
def get_new_command(command, settings):
command = command.script.split(' ')