mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-21 10:08:59 +00:00
17 lines
454 B
Python
17 lines
454 B
Python
from thefuck.utils import replace_argument
|
|
from thefuck.specific.git import git_support
|
|
|
|
|
|
@git_support
|
|
def match(command):
|
|
files = [arg for arg in command.script_parts[2:]
|
|
if not arg.startswith('-')]
|
|
return ('diff' in command.script
|
|
and '--no-index' not in command.script
|
|
and len(files) == 2)
|
|
|
|
|
|
@git_support
|
|
def get_new_command(command):
|
|
return replace_argument(command.script, 'diff', 'diff --no-index')
|