mirror of
https://github.com/nvbn/thefuck.git
synced 2025-10-31 23:22:10 +00:00
Merge branch 'ls_lah' of git://github.com/crimsonknave/thefuck into crimsonknave-ls_lah
This commit is contained in:
@@ -156,6 +156,7 @@ using matched rule and run it. Rules enabled by default:
|
|||||||
* `git_no_command` – fixes wrong git commands like `git brnch`;
|
* `git_no_command` – fixes wrong git commands like `git brnch`;
|
||||||
* `git_push` – adds `--set-upstream origin $branch` to previous failed `git push`;
|
* `git_push` – adds `--set-upstream origin $branch` to previous failed `git push`;
|
||||||
* `has_exists_script` – prepends `./` when script/binary exists;
|
* `has_exists_script` – prepends `./` when script/binary exists;
|
||||||
|
* `ls_lah` – adds -lah to ls;
|
||||||
* `lein_not_task` – fixes wrong `lein` tasks like `lein rpl`;
|
* `lein_not_task` – fixes wrong `lein` tasks like `lein rpl`;
|
||||||
* `mkdir_p` – adds `-p` when you trying to create directory without parent;
|
* `mkdir_p` – adds `-p` when you trying to create directory without parent;
|
||||||
* `no_command` – fixes wrong console commands, for example `vom/vim`;
|
* `no_command` – fixes wrong console commands, for example `vom/vim`;
|
||||||
|
|||||||
13
tests/rules/test_ls_lah.py
Normal file
13
tests/rules/test_ls_lah.py
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
from mock import patch, Mock
|
||||||
|
from thefuck.rules.ls_lah import match, get_new_command
|
||||||
|
|
||||||
|
|
||||||
|
def test_match():
|
||||||
|
assert match(Mock(script='ls file.py'), None)
|
||||||
|
assert match(Mock(script='ls /opt'), None)
|
||||||
|
assert not match(Mock(script='ls -lah /opt'), None)
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_new_command():
|
||||||
|
assert get_new_command( Mock(script='ls file.py'), None) == 'ls -lah file.py'
|
||||||
|
assert get_new_command( Mock(script='ls'), None) == 'ls -lah'
|
||||||
7
thefuck/rules/ls_lah.py
Normal file
7
thefuck/rules/ls_lah.py
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
def match(command, settings):
|
||||||
|
return ('ls' in command.script and not ('ls -' in command.script))
|
||||||
|
|
||||||
|
def get_new_command(command, settings):
|
||||||
|
command = command.script.split(' ')
|
||||||
|
command[0] = 'ls -lah'
|
||||||
|
return ' '.join(command)
|
||||||
Reference in New Issue
Block a user