mirror of
https://github.com/nvbn/thefuck.git
synced 2025-11-01 15:42:06 +00:00
Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c1591fbe3 | ||
|
|
dfd31872a9 | ||
|
|
1eaead4f70 | ||
|
|
5b3350b2dd | ||
|
|
81b05b9f88 | ||
|
|
b5436a2c47 | ||
|
|
b08aec02f5 | ||
|
|
e6be00a63b | ||
|
|
d226b8f258 | ||
|
|
f06ebbf2ae | ||
|
|
3e522ba787 | ||
|
|
25142f81f8 | ||
|
|
5fd4f74701 | ||
|
|
a0286b402a | ||
|
|
bb41f5c4e5 | ||
|
|
926e9ef963 | ||
|
|
9d46291944 | ||
|
|
cc6d90963e | ||
|
|
4e755e4799 | ||
|
|
1dfd6373ee | ||
|
|
fe0785bc42 | ||
|
|
142ef6e66c | ||
|
|
59745942b5 | ||
|
|
692ee53a33 | ||
|
|
534782414f | ||
|
|
a6bb41e802 |
11
.github/ISSUE_TEMPLATE.md
vendored
11
.github/ISSUE_TEMPLATE.md
vendored
@@ -6,17 +6,14 @@ update The Fuck and see if the bug is still there. -->
|
||||
if not, just open an issue on [GitHub](https://github.com/nvbn/thefuck) with
|
||||
the following basic information: -->
|
||||
|
||||
The output of `thefuck --version` (something like `The Fuck 3.1 using Python 3.5.0`):
|
||||
|
||||
FILL THIS IN
|
||||
|
||||
Your shell and its version (`bash`, `zsh`, *Windows PowerShell*, etc.):
|
||||
The output of `thefuck --version` (something like `The Fuck 3.1 using Python
|
||||
3.5.0 and Bash 4.4.12(1)-release`):
|
||||
|
||||
FILL THIS IN
|
||||
|
||||
Your system (Debian 7, ArchLinux, Windows, etc.):
|
||||
|
||||
<!-- FILL THIS IN -->
|
||||
FILL THIS IN
|
||||
|
||||
How to reproduce the bug:
|
||||
|
||||
@@ -32,6 +29,6 @@ If the bug only appears with a specific application, the output of that applicat
|
||||
|
||||
Anything else you think is relevant:
|
||||
|
||||
<!-- FILL THIS IN -->
|
||||
FILL THIS IN
|
||||
|
||||
<!-- It's only with enough information that we can do something to fix the problem. -->
|
||||
|
||||
29
.travis.yml
29
.travis.yml
@@ -2,6 +2,21 @@ language: python
|
||||
sudo: false
|
||||
matrix:
|
||||
include:
|
||||
- os: linux
|
||||
dist: xenial
|
||||
python: "nightly"
|
||||
- os: linux
|
||||
dist: xenial
|
||||
python: "3.8-dev"
|
||||
- os: linux
|
||||
dist: xenial
|
||||
python: "3.7-dev"
|
||||
- os: linux
|
||||
dist: xenial
|
||||
python: "3.7"
|
||||
- os: linux
|
||||
dist: trusty
|
||||
python: "3.6-dev"
|
||||
- os: linux
|
||||
dist: trusty
|
||||
python: "3.6"
|
||||
@@ -16,6 +31,11 @@ matrix:
|
||||
python: "2.7"
|
||||
- os: osx
|
||||
language: generic
|
||||
allow_failures:
|
||||
- python: nightly
|
||||
- python: 3.8-dev
|
||||
- python: 3.7-dev
|
||||
- python: 3.6-dev
|
||||
services:
|
||||
- docker
|
||||
addons:
|
||||
@@ -24,7 +44,8 @@ addons:
|
||||
- python-commandnotfound
|
||||
- python3-commandnotfound
|
||||
before_install:
|
||||
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then brew update ; fi
|
||||
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then rm -rf /usr/local/include/c++; fi
|
||||
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then brew update; fi
|
||||
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then brew upgrade python; fi
|
||||
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then pip3 install virtualenv; fi
|
||||
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then virtualenv venv -p python3; fi
|
||||
@@ -39,7 +60,7 @@ script:
|
||||
- flake8
|
||||
- export COVERAGE_PYTHON_VERSION=python-${TRAVIS_PYTHON_VERSION:0:1}
|
||||
- export RUN_TESTS="coverage run --source=thefuck,tests -m py.test -v --capture=sys tests"
|
||||
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 && $TRAVIS_OS_NAME != "osx" ]]; then $RUN_TESTS --enable-functional; fi
|
||||
- if [[ $TRAVIS_PYTHON_VERSION != 3.6 || $TRAVIS_OS_NAME == "osx" ]]; then $RUN_TESTS; fi
|
||||
- if [[ $TRAVIS_PYTHON_VERSION == 3.7 && $TRAVIS_OS_NAME != "osx" ]]; then $RUN_TESTS --enable-functional; fi
|
||||
- if [[ $TRAVIS_PYTHON_VERSION != 3.7 || $TRAVIS_OS_NAME == "osx" ]]; then $RUN_TESTS; fi
|
||||
after_success:
|
||||
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 && $TRAVIS_OS_NAME != "osx" ]]; then coveralls; fi
|
||||
- if [[ $TRAVIS_PYTHON_VERSION == 3.7 && $TRAVIS_OS_NAME != "osx" ]]; then coveralls; fi
|
||||
|
||||
22
README.md
22
README.md
@@ -105,10 +105,10 @@ On OS X, you can install *The Fuck* via [Homebrew][homebrew]:
|
||||
brew install thefuck
|
||||
```
|
||||
|
||||
On Ubuntu, install *The Fuck* with the following commands:
|
||||
On Ubuntu / Mint, install *The Fuck* with the following commands:
|
||||
```bash
|
||||
sudo apt update
|
||||
sudo apt install python3-dev python3-pip
|
||||
sudo apt install python3-dev python3-pip python3-setuptools
|
||||
sudo pip3 install thefuck
|
||||
```
|
||||
|
||||
@@ -146,10 +146,10 @@ eval $(thefuck --alias FUCK)
|
||||
Changes are only available in a new shell session. To make changes immediately
|
||||
available, run `source ~/.bashrc` (or your shell config file like `.zshrc`).
|
||||
|
||||
To run fixed commands without confirmation, use the `-y` option:
|
||||
To run fixed commands without confirmation, use the `--yeah` option (or just `-y` for short):
|
||||
|
||||
```bash
|
||||
fuck -y
|
||||
fuck --yeah
|
||||
```
|
||||
|
||||
To fix commands recursively until succeeding, use the `-r` option:
|
||||
@@ -175,8 +175,10 @@ following rules are enabled by default:
|
||||
* `adb_unknown_command` – fixes misspelled commands like `adb logcta`;
|
||||
* `ag_literal` – adds `-Q` to `ag` when suggested;
|
||||
* `aws_cli` – fixes misspelled commands like `aws dynamdb scan`;
|
||||
* `az_cli` – fixes misspelled commands like `az providers`;
|
||||
* `cargo` – runs `cargo build` instead of `cargo`;
|
||||
* `cargo_no_command` – fixes wrongs commands like `cargo buid`;
|
||||
* `cat_dir` – replaces `cat` with `ls` when you try to `cat` a directory;
|
||||
* `cd_correction` – spellchecks and correct failed cd commands;
|
||||
* `cd_mkdir` – creates directories before cd'ing into them;
|
||||
* `cd_parent` – changes `cd..` to `cd ..`;
|
||||
@@ -231,7 +233,7 @@ following rules are enabled by default:
|
||||
* `go_run` – appends `.go` extension when compiling/running Go programs;
|
||||
* `gradle_no_task` – fixes not found or ambiguous `gradle` task;
|
||||
* `gradle_wrapper` – replaces `gradle` with `./gradlew`;
|
||||
* `grep_arguments_order` – fixes grep arguments order for situations like `grep -lir . test`;
|
||||
* `grep_arguments_order` – fixes `grep` arguments order for situations like `grep -lir . test`;
|
||||
* `grep_recursive` – adds `-r` when you try to `grep` directory;
|
||||
* `grunt_task_not_found` – fixes misspelled `grunt` commands;
|
||||
* `gulp_not_task` – fixes misspelled `gulp` tasks;
|
||||
@@ -388,7 +390,8 @@ Several *The Fuck* parameters can be changed in the file `$XDG_CONFIG_HOME/thefu
|
||||
* `history_limit` – numeric value of how many history commands will be scanned, like `2000`;
|
||||
* `alter_history` – push fixed command to history, by default `True`;
|
||||
* `wait_slow_command` – max amount of time in seconds for getting previous command output if it in `slow_commands` list;
|
||||
* `slow_commands` – list of slow commands.
|
||||
* `slow_commands` – list of slow commands;
|
||||
* `num_close_matches` – maximum number of close matches to suggest, by default `3`.
|
||||
|
||||
An example of `settings.py`:
|
||||
|
||||
@@ -403,6 +406,7 @@ debug = False
|
||||
history_limit = 9999
|
||||
wait_slow_command = 20
|
||||
slow_commands = ['react-native', 'gradle']
|
||||
num_close_matches = 5
|
||||
```
|
||||
|
||||
Or via environment variables:
|
||||
@@ -418,7 +422,8 @@ rule with lower `priority` will be matched first;
|
||||
* `THEFUCK_HISTORY_LIMIT` – how many history commands will be scanned, like `2000`;
|
||||
* `THEFUCK_ALTER_HISTORY` – push fixed command to history `true/false`;
|
||||
* `THEFUCK_WAIT_SLOW_COMMAND` – max amount of time in seconds for getting previous command output if it in `slow_commands` list;
|
||||
* `THEFUCK_SLOW_COMMANDS` – list of slow commands, like `lein:gradle`.
|
||||
* `THEFUCK_SLOW_COMMANDS` – list of slow commands, like `lein:gradle`;
|
||||
* `THEFUCK_NUM_CLOSE_MATCHES` – maximum number of close matches to suggest, like `5`.
|
||||
|
||||
For example:
|
||||
|
||||
@@ -430,6 +435,7 @@ export THEFUCK_WAIT_COMMAND=10
|
||||
export THEFUCK_NO_COLORS='false'
|
||||
export THEFUCK_PRIORITY='no_command=9999:apt_get=100'
|
||||
export THEFUCK_HISTORY_LIMIT='2000'
|
||||
export THEFUCK_NUM_CLOSE_MATCHES='5'
|
||||
```
|
||||
|
||||
## Third-party packages with rules
|
||||
@@ -459,7 +465,7 @@ then reading the log.
|
||||
|
||||
[![gif with instant mode][instant-mode-gif-link]][instant-mode-gif-link]
|
||||
|
||||
Currently, instant mode only supports Python 3 with bash or zsh.
|
||||
Currently, instant mode only supports Python 3 with bash or zsh. zsh's autocorrect function also needs to be disabled in order for thefuck to work properly.
|
||||
|
||||
To enable instant mode, add `--enable-experimental-instant-mode`
|
||||
to the alias initialization in `.bashrc`, `.bash_profile` or `.zshrc`.
|
||||
|
||||
@@ -6,6 +6,7 @@ environment:
|
||||
- PYTHON: "C:/Python34"
|
||||
- PYTHON: "C:/Python35"
|
||||
- PYTHON: "C:/Python36"
|
||||
- PYTHON: "C:/Python37"
|
||||
|
||||
init:
|
||||
- "ECHO %PYTHON%"
|
||||
|
||||
@@ -32,4 +32,5 @@ call('git push --tags', shell=True)
|
||||
|
||||
env = os.environ
|
||||
env['CONVERT_README'] = 'true'
|
||||
call('python setup.py sdist bdist_wheel upload', shell=True, env=env)
|
||||
call('python setup.py sdist bdist_wheel', shell=True, env=env)
|
||||
call('twine upload dist/*', shell=True, env=env)
|
||||
|
||||
@@ -8,3 +8,4 @@ pexpect
|
||||
pypandoc
|
||||
pytest-benchmark
|
||||
pytest-docker-pexpect
|
||||
twine
|
||||
|
||||
2
setup.py
2
setup.py
@@ -31,7 +31,7 @@ elif (3, 0) < version < (3, 4):
|
||||
' ({}.{} detected).'.format(*version))
|
||||
sys.exit(-1)
|
||||
|
||||
VERSION = '3.27'
|
||||
VERSION = '3.28'
|
||||
|
||||
install_requires = ['psutil', 'colorama', 'six', 'decorator', 'pyte']
|
||||
extras_require = {':python_version<"3.4"': ['pathlib2'],
|
||||
|
||||
25
snapcraft.yaml
Normal file
25
snapcraft.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
name: thefuck
|
||||
version: stable
|
||||
version-script: git -C parts/thefuck/build describe --abbrev=0 --tags
|
||||
summary: Magnificent app which corrects your previous console command.
|
||||
description: |
|
||||
The Fuck tries to match a rule for the previous command,
|
||||
creates a new command using the matched rule and runs it.
|
||||
|
||||
grade: stable
|
||||
confinement: classic
|
||||
|
||||
apps:
|
||||
thefuck:
|
||||
command: bin/thefuck
|
||||
environment:
|
||||
PYTHONIOENCODING: utf-8
|
||||
fuck:
|
||||
command: bin/fuck
|
||||
environment:
|
||||
PYTHONIOENCODING: utf-8
|
||||
|
||||
parts:
|
||||
thefuck:
|
||||
source: https://github.com/nvbn/thefuck.git
|
||||
plugin: python
|
||||
@@ -1,45 +0,0 @@
|
||||
import pytest
|
||||
import time
|
||||
|
||||
dockerfile = u'''
|
||||
FROM python:3
|
||||
RUN adduser --disabled-password --gecos '' test
|
||||
ENV SEED "{seed}"
|
||||
WORKDIR /src
|
||||
USER test
|
||||
RUN echo 'eval $(thefuck --alias)' > /home/test/.bashrc
|
||||
RUN echo > /home/test/.bash_history
|
||||
RUN git config --global user.email "you@example.com"
|
||||
RUN git config --global user.name "Your Name"
|
||||
USER root
|
||||
'''.format(seed=time.time())
|
||||
|
||||
|
||||
def plot(proc, TIMEOUT):
|
||||
proc.sendline(u'cd /home/test/')
|
||||
proc.sendline(u'fuck')
|
||||
assert proc.expect([TIMEOUT, u'No fucks given'])
|
||||
proc.sendline(u'git init')
|
||||
proc.sendline(u'git add .')
|
||||
proc.sendline(u'git commit -a -m init')
|
||||
proc.sendline(u'git brnch')
|
||||
proc.sendline(u'fuck')
|
||||
assert proc.expect([TIMEOUT, u'git branch'])
|
||||
proc.send('\n')
|
||||
assert proc.expect([TIMEOUT, u'master'])
|
||||
proc.sendline(u'echo test')
|
||||
proc.sendline(u'echo tst')
|
||||
proc.sendline(u'fuck')
|
||||
assert proc.expect([TIMEOUT, u'echo test'])
|
||||
proc.send('\n')
|
||||
assert proc.expect([TIMEOUT, u'test'])
|
||||
|
||||
|
||||
@pytest.mark.functional
|
||||
@pytest.mark.benchmark(min_rounds=10)
|
||||
def test_performance(spawnu, TIMEOUT, benchmark):
|
||||
proc = spawnu(u'thefuck/python3-bash-performance',
|
||||
dockerfile, u'bash')
|
||||
proc.sendline(u'pip install /src')
|
||||
proc.sendline(u'su test')
|
||||
assert benchmark(plot, proc, TIMEOUT) is None
|
||||
58
tests/output_readers/test_rerun.py
Normal file
58
tests/output_readers/test_rerun.py
Normal file
@@ -0,0 +1,58 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
|
||||
from mock import Mock, patch
|
||||
from psutil import AccessDenied, TimeoutExpired
|
||||
|
||||
from thefuck.output_readers import rerun
|
||||
|
||||
|
||||
class TestRerun(object):
|
||||
def setup_method(self, test_method):
|
||||
self.patcher = patch('thefuck.output_readers.rerun.Process')
|
||||
process_mock = self.patcher.start()
|
||||
self.proc_mock = process_mock.return_value = Mock()
|
||||
|
||||
def teardown_method(self, test_method):
|
||||
self.patcher.stop()
|
||||
|
||||
@patch('thefuck.output_readers.rerun._wait_output', return_value=False)
|
||||
@patch('thefuck.output_readers.rerun.Popen')
|
||||
def test_get_output(self, popen_mock, wait_output_mock):
|
||||
popen_mock.return_value.stdout.read.return_value = b'output'
|
||||
assert rerun.get_output('', '') is None
|
||||
wait_output_mock.assert_called_once()
|
||||
|
||||
def test_wait_output_is_slow(self, settings):
|
||||
assert rerun._wait_output(Mock(), True)
|
||||
self.proc_mock.wait.assert_called_once_with(settings.wait_slow_command)
|
||||
|
||||
def test_wait_output_is_not_slow(self, settings):
|
||||
assert rerun._wait_output(Mock(), False)
|
||||
self.proc_mock.wait.assert_called_once_with(settings.wait_command)
|
||||
|
||||
@patch('thefuck.output_readers.rerun._kill_process')
|
||||
def test_wait_output_timeout(self, kill_process_mock):
|
||||
self.proc_mock.wait.side_effect = TimeoutExpired(3)
|
||||
self.proc_mock.children.return_value = []
|
||||
assert not rerun._wait_output(Mock(), False)
|
||||
kill_process_mock.assert_called_once_with(self.proc_mock)
|
||||
|
||||
@patch('thefuck.output_readers.rerun._kill_process')
|
||||
def test_wait_output_timeout_children(self, kill_process_mock):
|
||||
self.proc_mock.wait.side_effect = TimeoutExpired(3)
|
||||
self.proc_mock.children.return_value = [Mock()] * 2
|
||||
assert not rerun._wait_output(Mock(), False)
|
||||
assert kill_process_mock.call_count == 3
|
||||
|
||||
def test_kill_process(self):
|
||||
proc = Mock()
|
||||
rerun._kill_process(proc)
|
||||
proc.kill.assert_called_once_with()
|
||||
|
||||
@patch('thefuck.output_readers.rerun.logs')
|
||||
def test_kill_process_access_denied(self, logs_mock):
|
||||
proc = Mock()
|
||||
proc.kill.side_effect = AccessDenied()
|
||||
rerun._kill_process(proc)
|
||||
proc.kill.assert_called_once_with()
|
||||
logs_mock.debug.assert_called_once()
|
||||
@@ -9,7 +9,7 @@ def output():
|
||||
'If you meant to search for a literal string, run ag with -Q\n')
|
||||
|
||||
|
||||
@pytest.mark.parametrize('script', ['ag \('])
|
||||
@pytest.mark.parametrize('script', ['ag \\('])
|
||||
def test_match(script, output):
|
||||
assert match(Command(script, output))
|
||||
|
||||
@@ -20,6 +20,6 @@ def test_not_match(script):
|
||||
|
||||
|
||||
@pytest.mark.parametrize('script, new_cmd', [
|
||||
('ag \(', 'ag -Q \(')])
|
||||
('ag \\(', 'ag -Q \\(')])
|
||||
def test_get_new_command(script, new_cmd, output):
|
||||
assert get_new_command((Command(script, output))) == new_cmd
|
||||
|
||||
44
tests/rules/test_az_cli.py
Normal file
44
tests/rules/test_az_cli.py
Normal file
@@ -0,0 +1,44 @@
|
||||
import pytest
|
||||
|
||||
from thefuck.rules.az_cli import match, get_new_command
|
||||
from thefuck.types import Command
|
||||
|
||||
|
||||
no_suggestions = '''\
|
||||
az provider: error: the following arguments are required: _subcommand
|
||||
usage: az provider [-h] {list,show,register,unregister,operation} ...
|
||||
'''
|
||||
|
||||
|
||||
misspelled_command = '''\
|
||||
az: 'providers' is not in the 'az' command group. See 'az --help'.
|
||||
|
||||
The most similar choice to 'providers' is:
|
||||
provider
|
||||
'''
|
||||
|
||||
misspelled_subcommand = '''\
|
||||
az provider: 'lis' is not in the 'az provider' command group. See 'az provider --help'.
|
||||
|
||||
The most similar choice to 'lis' is:
|
||||
list
|
||||
'''
|
||||
|
||||
|
||||
@pytest.mark.parametrize('command', [
|
||||
Command('az providers', misspelled_command),
|
||||
Command('az provider lis', misspelled_subcommand)])
|
||||
def test_match(command):
|
||||
assert match(command)
|
||||
|
||||
|
||||
def test_not_match():
|
||||
assert not match(Command('az provider', no_suggestions))
|
||||
|
||||
|
||||
@pytest.mark.parametrize('command, result', [
|
||||
(Command('az providers list', misspelled_command), ['az provider list']),
|
||||
(Command('az provider lis', misspelled_subcommand), ['az provider list'])
|
||||
])
|
||||
def test_get_new_command(command, result):
|
||||
assert get_new_command(command) == result
|
||||
39
tests/rules/test_cat_dir.py
Normal file
39
tests/rules/test_cat_dir.py
Normal file
@@ -0,0 +1,39 @@
|
||||
import pytest
|
||||
from thefuck.rules.cat_dir import match, get_new_command
|
||||
from thefuck.types import Command
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def isdir(mocker):
|
||||
return mocker.patch('thefuck.rules.cat_dir'
|
||||
'.os.path.isdir')
|
||||
|
||||
|
||||
@pytest.mark.parametrize('command', [
|
||||
Command('cat foo', 'cat: foo: Is a directory\n'),
|
||||
Command('cat /foo/bar/', 'cat: /foo/bar/: Is a directory\n'),
|
||||
Command('cat cat/', 'cat: cat/: Is a directory\n'),
|
||||
])
|
||||
def test_match(command, isdir):
|
||||
isdir.return_value = True
|
||||
assert match(command)
|
||||
|
||||
|
||||
@pytest.mark.parametrize('command', [
|
||||
Command('cat foo', 'foo bar baz'),
|
||||
Command('cat foo bar', 'foo bar baz'),
|
||||
Command('notcat foo bar', 'some output'),
|
||||
])
|
||||
def test_not_match(command, isdir):
|
||||
isdir.return_value = False
|
||||
assert not match(command)
|
||||
|
||||
|
||||
@pytest.mark.parametrize('command, new_command', [
|
||||
(Command('cat foo', 'cat: foo: Is a directory\n'), 'ls foo'),
|
||||
(Command('cat /foo/bar/', 'cat: /foo/bar/: Is a directory\n'), 'ls /foo/bar/'),
|
||||
(Command('cat cat', 'cat: cat: Is a directory\n'), 'ls cat'),
|
||||
])
|
||||
def test_get_new_command(command, new_command):
|
||||
isdir.return_value = True
|
||||
assert get_new_command(command) == new_command
|
||||
@@ -4,7 +4,6 @@ from thefuck.rules.git_checkout import match, get_branches, get_new_command
|
||||
from thefuck.types import Command
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def did_not_match(target, did_you_forget=False):
|
||||
error = ("error: pathspec '{}' did not match any "
|
||||
"file(s) known to git.".format(target))
|
||||
|
||||
@@ -3,24 +3,22 @@ from thefuck.rules.git_merge import match, get_new_command
|
||||
from thefuck.types import Command
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def output():
|
||||
return 'merge: local - not something we can merge\n\n' \
|
||||
'Did you mean this?\n\tremote/local'
|
||||
output = 'merge: local - not something we can merge\n\n' \
|
||||
'Did you mean this?\n\tremote/local'
|
||||
|
||||
|
||||
def test_match(output):
|
||||
def test_match():
|
||||
assert match(Command('git merge test', output))
|
||||
assert not match(Command('git merge master', ''))
|
||||
assert not match(Command('ls', output))
|
||||
|
||||
|
||||
@pytest.mark.parametrize('command, new_command', [
|
||||
(Command('git merge local', output()),
|
||||
(Command('git merge local', output),
|
||||
'git merge remote/local'),
|
||||
(Command('git merge -m "test" local', output()),
|
||||
(Command('git merge -m "test" local', output),
|
||||
'git merge -m "test" remote/local'),
|
||||
(Command('git merge -m "test local" local', output()),
|
||||
(Command('git merge -m "test local" local', output),
|
||||
'git merge -m "test local" remote/local')])
|
||||
def test_get_new_command(command, new_command):
|
||||
assert get_new_command(command) == new_command
|
||||
|
||||
@@ -3,23 +3,21 @@ from thefuck.rules.git_merge_unrelated import match, get_new_command
|
||||
from thefuck.types import Command
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def output():
|
||||
return 'fatal: refusing to merge unrelated histories'
|
||||
output = 'fatal: refusing to merge unrelated histories'
|
||||
|
||||
|
||||
def test_match(output):
|
||||
def test_match():
|
||||
assert match(Command('git merge test', output))
|
||||
assert not match(Command('git merge master', ''))
|
||||
assert not match(Command('ls', output))
|
||||
|
||||
|
||||
@pytest.mark.parametrize('command, new_command', [
|
||||
(Command('git merge local', output()),
|
||||
(Command('git merge local', output),
|
||||
'git merge local --allow-unrelated-histories'),
|
||||
(Command('git merge -m "test" local', output()),
|
||||
(Command('git merge -m "test" local', output),
|
||||
'git merge -m "test" local --allow-unrelated-histories'),
|
||||
(Command('git merge -m "test local" local', output()),
|
||||
(Command('git merge -m "test local" local', output),
|
||||
'git merge -m "test local" local --allow-unrelated-histories')])
|
||||
def test_get_new_command(command, new_command):
|
||||
assert get_new_command(command) == new_command
|
||||
|
||||
@@ -66,6 +66,10 @@ def test_not_match(output, script, branch_name):
|
||||
('git -c test=test push --quiet origin', 'master',
|
||||
'git -c test=test push --set-upstream origin master --quiet'),
|
||||
('git push', "test's",
|
||||
"git push --set-upstream origin test\\'s")])
|
||||
"git push --set-upstream origin test\\'s"),
|
||||
('git push --force', 'master',
|
||||
'git push --set-upstream origin master --force'),
|
||||
('git push --force-with-lease', 'master',
|
||||
'git push --set-upstream origin master --force-with-lease')])
|
||||
def test_get_new_command(output, script, branch_name, new_command):
|
||||
assert get_new_command(Command(script, output)) == new_command
|
||||
|
||||
@@ -3,25 +3,31 @@ from thefuck.rules.touch import match, get_new_command
|
||||
from thefuck.types import Command
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def output():
|
||||
return "touch: cannot touch '/a/b/c':" \
|
||||
" No such file or directory"
|
||||
def output(is_bsd):
|
||||
if is_bsd:
|
||||
return "touch: /a/b/c: No such file or directory"
|
||||
return "touch: cannot touch '/a/b/c': No such file or directory"
|
||||
|
||||
|
||||
def test_match(output):
|
||||
command = Command('touch /a/b/c', output)
|
||||
@pytest.mark.parametrize('script, is_bsd', [
|
||||
('touch /a/b/c', False),
|
||||
('touch /a/b/c', True)])
|
||||
def test_match(script, is_bsd):
|
||||
command = Command(script, output(is_bsd))
|
||||
assert match(command)
|
||||
|
||||
|
||||
@pytest.mark.parametrize('command', [
|
||||
Command('touch /a/b/c', ''),
|
||||
Command('ls /a/b/c', output())])
|
||||
Command('ls /a/b/c', output(False))])
|
||||
def test_not_match(command):
|
||||
assert not match(command)
|
||||
|
||||
|
||||
def test_get_new_command(output):
|
||||
command = Command('touch /a/b/c', output)
|
||||
@pytest.mark.parametrize('script, is_bsd', [
|
||||
('touch /a/b/c', False),
|
||||
('touch /a/b/c', True)])
|
||||
def test_get_new_command(script, is_bsd):
|
||||
command = Command(script, output(is_bsd))
|
||||
fixed_command = get_new_command(command)
|
||||
assert fixed_command == 'mkdir -p /a/b && touch /a/b/c'
|
||||
|
||||
@@ -73,3 +73,8 @@ class TestBash(object):
|
||||
config_exists):
|
||||
config_exists.return_value = False
|
||||
assert not shell.how_to_configure().can_configure_automatically
|
||||
|
||||
def test_info(self, shell, mocker):
|
||||
patch = mocker.patch('thefuck.shells.bash.Popen')
|
||||
patch.return_value.stdout.read.side_effect = [b'3.5.9']
|
||||
assert shell.info() == 'Bash 3.5.9'
|
||||
|
||||
@@ -112,3 +112,7 @@ class TestFish(object):
|
||||
config_exists):
|
||||
config_exists.return_value = False
|
||||
assert not shell.how_to_configure().can_configure_automatically
|
||||
|
||||
def test_info(self, shell, Popen):
|
||||
Popen.return_value.stdout.read.side_effect = [b'3.5.9']
|
||||
assert shell.info() == 'Fish Shell 3.5.9'
|
||||
|
||||
@@ -68,3 +68,8 @@ class TestZsh(object):
|
||||
config_exists):
|
||||
config_exists.return_value = False
|
||||
assert not shell.how_to_configure().can_configure_automatically
|
||||
|
||||
def test_info(self, shell, mocker):
|
||||
patch = mocker.patch('thefuck.shells.zsh.Popen')
|
||||
patch.return_value.stdout.read.side_effect = [b'3.5.9']
|
||||
assert shell.info() == 'ZSH 3.5.9'
|
||||
|
||||
@@ -53,7 +53,8 @@ class TestSettingsFromEnv(object):
|
||||
'THEFUCK_NO_COLORS': 'false',
|
||||
'THEFUCK_PRIORITY': 'bash=10:lisp=wrong:vim=15',
|
||||
'THEFUCK_WAIT_SLOW_COMMAND': '999',
|
||||
'THEFUCK_SLOW_COMMANDS': 'lein:react-native:./gradlew'})
|
||||
'THEFUCK_SLOW_COMMANDS': 'lein:react-native:./gradlew',
|
||||
'THEFUCK_NUM_CLOSE_MATCHES': '359'})
|
||||
settings.init()
|
||||
assert settings.rules == ['bash', 'lisp']
|
||||
assert settings.exclude_rules == ['git', 'vim']
|
||||
@@ -63,6 +64,7 @@ class TestSettingsFromEnv(object):
|
||||
assert settings.priority == {'bash': 10, 'vim': 15}
|
||||
assert settings.wait_slow_command == 999
|
||||
assert settings.slow_commands == ['lein', 'react-native', './gradlew']
|
||||
assert settings.num_close_matches == 359
|
||||
|
||||
def test_from_env_with_DEFAULT(self, os_environ, settings):
|
||||
os_environ.update({'THEFUCK_RULES': 'DEFAULT_RULES:bash:lisp'})
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
|
||||
import pytest
|
||||
import warnings
|
||||
from mock import Mock
|
||||
from mock import Mock, patch
|
||||
from thefuck.utils import default_settings, \
|
||||
memoize, get_closest, get_all_executables, replace_argument, \
|
||||
get_all_matched_commands, is_app, for_app, cache, \
|
||||
get_valid_history_without_current, _cache
|
||||
get_valid_history_without_current, _cache, get_close_matches
|
||||
from thefuck.types import Command
|
||||
|
||||
|
||||
@@ -50,6 +50,18 @@ class TestGetClosest(object):
|
||||
fallback_to_first=False) is None
|
||||
|
||||
|
||||
class TestGetCloseMatches(object):
|
||||
@patch('thefuck.utils.difflib_get_close_matches')
|
||||
def test_call_with_n(self, difflib_mock):
|
||||
get_close_matches('', [], 1)
|
||||
assert difflib_mock.call_args[0][2] == 1
|
||||
|
||||
@patch('thefuck.utils.difflib_get_close_matches')
|
||||
def test_call_without_n(self, difflib_mock, settings):
|
||||
get_close_matches('', [])
|
||||
assert difflib_mock.call_args[0][2] == settings.get('num_close_matches')
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def get_aliases(mocker):
|
||||
mocker.patch('thefuck.shells.shell.get_aliases',
|
||||
|
||||
@@ -55,7 +55,7 @@ class Parser(object):
|
||||
"""It's too dangerous to use `-y` and `-r` together."""
|
||||
group = self._parser.add_mutually_exclusive_group()
|
||||
group.add_argument(
|
||||
'-y', '--yes',
|
||||
'-y', '--yes', '--yeah',
|
||||
action='store_true',
|
||||
help='execute fixed command without confirmation')
|
||||
group.add_argument(
|
||||
|
||||
@@ -95,7 +95,8 @@ class Settings(dict):
|
||||
return self._rules_from_env(val)
|
||||
elif attr == 'priority':
|
||||
return dict(self._priority_from_env(val))
|
||||
elif attr in ('wait_command', 'history_limit', 'wait_slow_command'):
|
||||
elif attr in ('wait_command', 'history_limit', 'wait_slow_command',
|
||||
'num_close_matches'):
|
||||
return int(val)
|
||||
elif attr in ('require_confirmation', 'no_colors', 'debug',
|
||||
'alter_history', 'instant_mode'):
|
||||
|
||||
@@ -42,6 +42,7 @@ DEFAULT_SETTINGS = {'rules': DEFAULT_RULES,
|
||||
'./gradlew', 'vagrant'],
|
||||
'repeat': False,
|
||||
'instant_mode': False,
|
||||
'num_close_matches': 3,
|
||||
'env': {'LC_ALL': 'C', 'LANG': 'C', 'GIT_TRACE': '1'}}
|
||||
|
||||
ENV_TO_ATTR = {'THEFUCK_RULES': 'rules',
|
||||
@@ -56,7 +57,8 @@ ENV_TO_ATTR = {'THEFUCK_RULES': 'rules',
|
||||
'THEFUCK_WAIT_SLOW_COMMAND': 'wait_slow_command',
|
||||
'THEFUCK_SLOW_COMMANDS': 'slow_commands',
|
||||
'THEFUCK_REPEAT': 'repeat',
|
||||
'THEFUCK_INSTANT_MODE': 'instant_mode'}
|
||||
'THEFUCK_INSTANT_MODE': 'instant_mode',
|
||||
'THEFUCK_NUM_CLOSE_MATCHES': 'num_close_matches'}
|
||||
|
||||
SETTINGS_HEADER = u"""# The Fuck settings file
|
||||
#
|
||||
|
||||
@@ -8,6 +8,7 @@ import sys # noqa: E402
|
||||
from .. import logs # noqa: E402
|
||||
from ..argument_parser import Parser # noqa: E402
|
||||
from ..utils import get_installation_info # noqa: E402
|
||||
from ..shells import shell # noqa: E402
|
||||
from .alias import print_alias # noqa: E402
|
||||
from .fix_command import fix_command # noqa: E402
|
||||
|
||||
@@ -20,7 +21,7 @@ def main():
|
||||
parser.print_help()
|
||||
elif known_args.version:
|
||||
logs.version(get_installation_info().version,
|
||||
sys.version.split()[0])
|
||||
sys.version.split()[0], shell.info())
|
||||
elif known_args.command or 'TF_HISTORY' in os.environ:
|
||||
fix_command(known_args)
|
||||
elif known_args.alias:
|
||||
|
||||
@@ -134,7 +134,8 @@ def configured_successfully(configuration_details):
|
||||
reload=configuration_details.reload))
|
||||
|
||||
|
||||
def version(thefuck_version, python_version):
|
||||
def version(thefuck_version, python_version, shell_info):
|
||||
sys.stderr.write(
|
||||
u'The Fuck {} using Python {}\n'.format(thefuck_version,
|
||||
python_version))
|
||||
u'The Fuck {} using Python {} and {}\n'.format(thefuck_version,
|
||||
python_version,
|
||||
shell_info))
|
||||
|
||||
@@ -1,11 +1,25 @@
|
||||
import os
|
||||
import shlex
|
||||
from subprocess import Popen, PIPE, STDOUT
|
||||
from psutil import Process, TimeoutExpired
|
||||
from psutil import AccessDenied, Process, TimeoutExpired
|
||||
from .. import logs
|
||||
from ..conf import settings
|
||||
|
||||
|
||||
def _kill_process(proc):
|
||||
"""Tries to kill the process otherwise just logs a debug message, the
|
||||
process will be killed when thefuck terminates.
|
||||
|
||||
:type proc: Process
|
||||
|
||||
"""
|
||||
try:
|
||||
proc.kill()
|
||||
except AccessDenied:
|
||||
logs.debug(u'Rerun: process PID {} ({}) could not be terminated'.format(
|
||||
proc.pid, proc.exe()))
|
||||
|
||||
|
||||
def _wait_output(popen, is_slow):
|
||||
"""Returns `True` if we can get output of the command in the
|
||||
`settings.wait_command` time.
|
||||
@@ -23,8 +37,8 @@ def _wait_output(popen, is_slow):
|
||||
return True
|
||||
except TimeoutExpired:
|
||||
for child in proc.children(recursive=True):
|
||||
child.kill()
|
||||
proc.kill()
|
||||
_kill_process(child)
|
||||
_kill_process(proc)
|
||||
return False
|
||||
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ import re
|
||||
from thefuck.utils import for_app, replace_argument
|
||||
|
||||
INVALID_CHOICE = "(?<=Invalid choice: ')(.*)(?=', maybe you meant:)"
|
||||
OPTIONS = "^\s*\*\s(.*)"
|
||||
OPTIONS = "^\\s*\\*\\s(.*)"
|
||||
|
||||
|
||||
@for_app('aws')
|
||||
|
||||
17
thefuck/rules/az_cli.py
Normal file
17
thefuck/rules/az_cli.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import re
|
||||
|
||||
from thefuck.utils import for_app, replace_argument
|
||||
|
||||
INVALID_CHOICE = "(?=az)(?:.*): '(.*)' is not in the '.*' command group."
|
||||
OPTIONS = "^The most similar choice to '.*' is:\n\\s*(.*)$"
|
||||
|
||||
|
||||
@for_app('az')
|
||||
def match(command):
|
||||
return "is not in the" in command.output and "command group" in command.output
|
||||
|
||||
|
||||
def get_new_command(command):
|
||||
mistake = re.search(INVALID_CHOICE, command.output).group(1)
|
||||
options = re.findall(OPTIONS, command.output, flags=re.MULTILINE)
|
||||
return [replace_argument(command.script, mistake, o) for o in options]
|
||||
@@ -20,7 +20,7 @@ def _get_formulas():
|
||||
|
||||
|
||||
def _get_similar_formula(formula_name):
|
||||
return get_closest(formula_name, _get_formulas(), 1, 0.85)
|
||||
return get_closest(formula_name, _get_formulas(), cutoff=0.85)
|
||||
|
||||
|
||||
def match(command):
|
||||
|
||||
14
thefuck/rules/cat_dir.py
Normal file
14
thefuck/rules/cat_dir.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import os
|
||||
from thefuck.utils import for_app
|
||||
|
||||
|
||||
@for_app('cat', at_least=1)
|
||||
def match(command):
|
||||
return (
|
||||
command.output.startswith('cat: ') and
|
||||
os.path.isdir(command.script_parts[1])
|
||||
)
|
||||
|
||||
|
||||
def get_new_command(command):
|
||||
return command.script.replace('cat', 'ls', 1)
|
||||
@@ -2,10 +2,9 @@
|
||||
|
||||
import os
|
||||
import six
|
||||
from difflib import get_close_matches
|
||||
from thefuck.specific.sudo import sudo_support
|
||||
from thefuck.rules import cd_mkdir
|
||||
from thefuck.utils import for_app
|
||||
from thefuck.utils import for_app, get_close_matches
|
||||
|
||||
__author__ = "mmussomele"
|
||||
|
||||
|
||||
@@ -39,6 +39,6 @@ def get_new_command(command):
|
||||
while len(command_parts) > push_idx and command_parts[len(command_parts) - 1][0] != '-':
|
||||
command_parts.pop(len(command_parts) - 1)
|
||||
|
||||
arguments = re.findall(r'git push (.*)', command.output)[0].replace("'", r"\'").strip()
|
||||
arguments = re.findall(r'git push (.*)', command.output)[-1].replace("'", r"\'").strip()
|
||||
return replace_argument(" ".join(command_parts), 'push',
|
||||
'push {}'.format(arguments))
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from difflib import get_close_matches
|
||||
from thefuck.utils import get_close_matches
|
||||
from thefuck.specific.git import git_support
|
||||
|
||||
|
||||
|
||||
@@ -8,5 +8,5 @@ def match(command):
|
||||
|
||||
|
||||
def get_new_command(command):
|
||||
apps = re.findall('([^ ]*) \([^)]*\)', command.output)
|
||||
apps = re.findall('([^ ]*) \\([^)]*\\)', command.output)
|
||||
return [command.script + ' --app ' + app for app in apps]
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from difflib import get_close_matches
|
||||
from thefuck.utils import get_closest, get_valid_history_without_current
|
||||
from thefuck.utils import get_close_matches, get_closest, \
|
||||
get_valid_history_without_current
|
||||
|
||||
|
||||
def match(command):
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
from thefuck.utils import replace_command, for_app
|
||||
from difflib import get_close_matches
|
||||
from thefuck.utils import for_app, get_close_matches, replace_command
|
||||
import re
|
||||
|
||||
|
||||
@@ -25,8 +24,7 @@ def get_new_command(command):
|
||||
available_lifecycles = _getavailable_lifecycles(command)
|
||||
if available_lifecycles and failed_lifecycle:
|
||||
selected_lifecycle = get_close_matches(
|
||||
failed_lifecycle.group(1), available_lifecycles.group(1).split(", "),
|
||||
3, 0.6)
|
||||
failed_lifecycle.group(1), available_lifecycles.group(1).split(", "))
|
||||
return replace_command(command, failed_lifecycle.group(1), selected_lifecycle)
|
||||
else:
|
||||
return []
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
from difflib import get_close_matches
|
||||
from thefuck.utils import get_all_executables, \
|
||||
from thefuck.utils import get_all_executables, get_close_matches, \
|
||||
get_valid_history_without_current, get_closest, which
|
||||
from thefuck.specific.sudo import sudo_support
|
||||
|
||||
|
||||
@@ -4,6 +4,7 @@ from thefuck.utils import memoize, get_alias
|
||||
target_layout = '''qwertyuiop[]asdfghjkl;'zxcvbnm,./QWERTYUIOP{}ASDFGHJKL:"ZXCVBNM<>?'''
|
||||
|
||||
source_layouts = [u'''йцукенгшщзхъфывапролджэячсмитьбю.ЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ,''',
|
||||
u'''йцукенгшщзхїфівапролджєячсмитьбю.ЙЦУКЕНГШЩЗХЇФІВАПРОЛДЖЄЯЧСМИТЬБЮ,''',
|
||||
u'''ضصثقفغعهخحجچشسیبلاتنمکگظطزرذدپو./ًٌٍَُِّْ][}{ؤئيإأآة»«:؛كٓژٰٔء><؟''',
|
||||
u''';ςερτυθιοπ[]ασδφγηξκλ΄ζχψωβνμ,./:΅ΕΡΤΥΘΙΟΠ{}ΑΣΔΦΓΗΞΚΛ¨"ΖΧΨΩΒΝΜ<>?''',
|
||||
u'''/'קראטוןםפ][שדגכעיחלךף,זסבהנמצתץ.QWERTYUIOP{}ASDFGHJKL:"ZXCVBNM<>?''']
|
||||
@@ -15,7 +16,14 @@ def _get_matched_layout(command):
|
||||
# result in a non-splitable sript as per shlex
|
||||
cmd = command.script.split(' ')
|
||||
for source_layout in source_layouts:
|
||||
if all([ch in source_layout or ch in '-_' for ch in cmd[0]]):
|
||||
is_all_match = True
|
||||
|
||||
for cmd_part in cmd:
|
||||
if not all([ch in source_layout or ch in '-_' for ch in cmd_part]):
|
||||
is_all_match = False
|
||||
break
|
||||
|
||||
if is_all_match:
|
||||
return source_layout
|
||||
|
||||
|
||||
|
||||
@@ -9,5 +9,6 @@ def match(command):
|
||||
|
||||
|
||||
def get_new_command(command):
|
||||
path = re.findall(r"touch: cannot touch '(.+)/.+':", command.output)[0]
|
||||
path = path = re.findall(
|
||||
r"touch: (?:cannot touch ')?(.+)/.+'?:", command.output)[0]
|
||||
return shell.and_(u'mkdir -p {}'.format(path), command.script)
|
||||
|
||||
@@ -16,7 +16,8 @@ shells = {'bash': Bash,
|
||||
'zsh': Zsh,
|
||||
'csh': Tcsh,
|
||||
'tcsh': Tcsh,
|
||||
'powershell': Powershell}
|
||||
'powershell': Powershell,
|
||||
'pwsh': Powershell}
|
||||
|
||||
|
||||
def _get_shell_from_env():
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import os
|
||||
from subprocess import Popen, PIPE
|
||||
from tempfile import gettempdir
|
||||
from uuid import uuid4
|
||||
from ..conf import settings
|
||||
from ..const import ARGUMENT_PLACEHOLDER, USER_COMMAND_MARK
|
||||
from ..utils import memoize
|
||||
from ..utils import DEVNULL, memoize
|
||||
from .generic import Generic
|
||||
|
||||
|
||||
@@ -81,3 +82,10 @@ class Bash(Generic):
|
||||
content=u'eval $(thefuck --alias)',
|
||||
path=config,
|
||||
reload=u'source {}'.format(config))
|
||||
|
||||
def info(self):
|
||||
"""Returns the name and version of the current shell"""
|
||||
proc = Popen(['bash', '-c', 'echo $BASH_VERSION'],
|
||||
stdout=PIPE, stderr=DEVNULL)
|
||||
version = proc.stdout.read().decode('utf-8').strip()
|
||||
return u'Bash {}'.format(version)
|
||||
|
||||
@@ -103,6 +103,13 @@ class Fish(Generic):
|
||||
path='~/.config/fish/config.fish',
|
||||
reload='fish')
|
||||
|
||||
def info(self):
|
||||
"""Returns the name and version of the current shell"""
|
||||
proc = Popen(['fish', '-c', 'echo $FISH_VERSION'],
|
||||
stdout=PIPE, stderr=DEVNULL)
|
||||
version = proc.stdout.read().decode('utf-8').strip()
|
||||
return u'Fish Shell {}'.format(version)
|
||||
|
||||
def put_to_history(self, command):
|
||||
try:
|
||||
return self._put_to_history(command)
|
||||
|
||||
@@ -82,7 +82,7 @@ class Generic(object):
|
||||
encoded = self.encode_utf8(command)
|
||||
|
||||
try:
|
||||
splitted = [s.replace("??", "\ ") for s in shlex.split(encoded.replace('\ ', '??'))]
|
||||
splitted = [s.replace("??", "\\ ") for s in shlex.split(encoded.replace('\\ ', '??'))]
|
||||
except ValueError:
|
||||
splitted = encoded.split(' ')
|
||||
|
||||
@@ -131,6 +131,10 @@ class Generic(object):
|
||||
'type', 'typeset', 'ulimit', 'umask', 'unalias', 'unset',
|
||||
'until', 'wait', 'while']
|
||||
|
||||
def info(self):
|
||||
"""Returns the name and version of the current shell"""
|
||||
return 'Generic Shell'
|
||||
|
||||
def _create_shell_configuration(self, content, path, reload):
|
||||
return ShellConfiguration(
|
||||
content=content,
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
from time import time
|
||||
import os
|
||||
from subprocess import Popen, PIPE
|
||||
from tempfile import gettempdir
|
||||
from uuid import uuid4
|
||||
from ..conf import settings
|
||||
from ..const import ARGUMENT_PLACEHOLDER, USER_COMMAND_MARK
|
||||
from ..utils import memoize
|
||||
from ..utils import DEVNULL, memoize
|
||||
from .generic import Generic
|
||||
|
||||
|
||||
@@ -16,8 +17,10 @@ class Zsh(Generic):
|
||||
TF_PYTHONIOENCODING=$PYTHONIOENCODING;
|
||||
export TF_SHELL=zsh;
|
||||
export TF_ALIAS={name};
|
||||
export TF_SHELL_ALIASES=$(alias);
|
||||
export TF_HISTORY="$(fc -ln -10)";
|
||||
TF_SHELL_ALIASES=$(alias);
|
||||
export TF_SHELL_ALIASES;
|
||||
TF_HISTORY="$(fc -ln -10)";
|
||||
export TF_HISTORY;
|
||||
export PYTHONIOENCODING=utf-8;
|
||||
TF_CMD=$(
|
||||
thefuck {argument_placeholder} $@
|
||||
@@ -49,7 +52,7 @@ class Zsh(Generic):
|
||||
export THEFUCK_INSTANT_MODE=True;
|
||||
export THEFUCK_OUTPUT_LOG={log};
|
||||
thefuck --shell-logger {log};
|
||||
rm {log};
|
||||
rm -f {log};
|
||||
exit
|
||||
'''.format(log=log_path)
|
||||
|
||||
@@ -83,3 +86,10 @@ class Zsh(Generic):
|
||||
content=u'eval $(thefuck --alias)',
|
||||
path='~/.zshrc',
|
||||
reload='source ~/.zshrc')
|
||||
|
||||
def info(self):
|
||||
"""Returns the name and version of the current shell"""
|
||||
proc = Popen(['zsh', '-c', 'echo $ZSH_VERSION'],
|
||||
stdout=PIPE, stderr=DEVNULL)
|
||||
version = proc.stdout.read().decode('utf-8').strip()
|
||||
return u'ZSH {}'.format(version)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import os
|
||||
import sys
|
||||
import msvcrt
|
||||
import win_unicode_console
|
||||
from .. import const
|
||||
@@ -12,20 +11,18 @@ def init_output():
|
||||
|
||||
|
||||
def get_key():
|
||||
ch = msvcrt.getch()
|
||||
if ch in (b'\x00', b'\xe0'): # arrow or function key prefix?
|
||||
ch = msvcrt.getch() # second call returns the actual key code
|
||||
ch = msvcrt.getwch()
|
||||
if ch in ('\x00', '\xe0'): # arrow or function key prefix?
|
||||
ch = msvcrt.getwch() # second call returns the actual key code
|
||||
|
||||
if ch in const.KEY_MAPPING:
|
||||
return const.KEY_MAPPING[ch]
|
||||
if ch == b'H':
|
||||
if ch == 'H':
|
||||
return const.KEY_UP
|
||||
if ch == b'P':
|
||||
if ch == 'P':
|
||||
return const.KEY_DOWN
|
||||
|
||||
encoding = (sys.stdout.encoding
|
||||
or os.environ.get('PYTHONIOENCODING', 'utf-8'))
|
||||
return ch.decode(encoding)
|
||||
return ch
|
||||
|
||||
|
||||
def open_command(arg):
|
||||
|
||||
@@ -3,11 +3,12 @@ import os
|
||||
import pickle
|
||||
import re
|
||||
import shelve
|
||||
import sys
|
||||
import six
|
||||
from decorator import decorator
|
||||
from difflib import get_close_matches
|
||||
from difflib import get_close_matches as difflib_get_close_matches
|
||||
from functools import wraps
|
||||
from .logs import warn
|
||||
from .logs import warn, exception
|
||||
from .conf import settings
|
||||
from .system import Path
|
||||
|
||||
@@ -86,16 +87,23 @@ def default_settings(params):
|
||||
return decorator(_default_settings)
|
||||
|
||||
|
||||
def get_closest(word, possibilities, n=3, cutoff=0.6, fallback_to_first=True):
|
||||
def get_closest(word, possibilities, cutoff=0.6, fallback_to_first=True):
|
||||
"""Returns closest match or just first from possibilities."""
|
||||
possibilities = list(possibilities)
|
||||
try:
|
||||
return get_close_matches(word, possibilities, n, cutoff)[0]
|
||||
return difflib_get_close_matches(word, possibilities, 1, cutoff)[0]
|
||||
except IndexError:
|
||||
if fallback_to_first:
|
||||
return possibilities[0]
|
||||
|
||||
|
||||
def get_close_matches(word, possibilities, n=None, cutoff=0.6):
|
||||
"""Overrides `difflib.get_close_match` to controle argument `n`."""
|
||||
if n is None:
|
||||
n = settings.num_close_matches
|
||||
return difflib_get_close_matches(word, possibilities, n, cutoff)
|
||||
|
||||
|
||||
@memoize
|
||||
def get_all_executables():
|
||||
from thefuck.shells import shell
|
||||
@@ -190,6 +198,13 @@ class Cache(object):
|
||||
self._db = None
|
||||
|
||||
def _init_db(self):
|
||||
try:
|
||||
self._setup_db()
|
||||
except Exception:
|
||||
exception("Unable to init cache", sys.exc_info())
|
||||
self._db = {}
|
||||
|
||||
def _setup_db(self):
|
||||
cache_dir = self._get_cache_dir()
|
||||
cache_path = Path(cache_dir).joinpath('thefuck').as_posix()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user