#N/A Ignore history lines before fuck call in history rule

This commit is contained in:
nvbn
2015-07-20 01:53:32 +03:00
parent 7e03b55729
commit ee87d1c547
2 changed files with 27 additions and 8 deletions
+16 -4
View File
@@ -1,17 +1,28 @@
from difflib import get_close_matches
from thefuck.shells import get_history
from thefuck.shells import get_history, thefuck_alias
from thefuck.utils import get_closest, memoize
from thefuck.rules.no_command import get_all_callables
def _not_corrected(history, tf_alias):
"""Returns all lines from history except that comes before `fuck`."""
previous = None
for line in history:
if previous is not None and line != tf_alias:
yield previous
previous = line
yield history[-1]
@memoize
def _history_of_exists_without_current(command):
history = get_history()
tf_alias = thefuck_alias()
callables = get_all_callables()
return [line for line in get_history()
if line != command.script
return [line for line in _not_corrected(history, tf_alias)
if not line.startswith(tf_alias) and not line == command.script
and line.split(' ')[0] in callables]
def match(command, settings):
return len(get_close_matches(command.script,
_history_of_exists_without_current(command)))
@@ -21,4 +32,5 @@ def get_new_command(command, settings):
return get_closest(command.script,
_history_of_exists_without_current(command))
priority = 9999