mirror of
https://github.com/nvbn/thefuck.git
synced 2025-02-22 12:58:33 +00:00
#441: Remove shells methods wrappers
This commit is contained in:
parent
b5dc7aab6d
commit
fe07fcaa62
@ -1,7 +1,10 @@
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import pytest
|
import pytest
|
||||||
|
from thefuck import shells
|
||||||
from thefuck import conf
|
from thefuck import conf
|
||||||
|
|
||||||
|
shells.shell = shells.Generic()
|
||||||
|
|
||||||
|
|
||||||
def pytest_addoption(parser):
|
def pytest_addoption(parser):
|
||||||
"""Adds `--run-without-docker` argument."""
|
"""Adds `--run-without-docker` argument."""
|
||||||
@ -46,3 +49,14 @@ def functional(request):
|
|||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def source_root():
|
def source_root():
|
||||||
return Path(__file__).parent.parent.resolve()
|
return Path(__file__).parent.parent.resolve()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def set_shell(monkeypatch, request):
|
||||||
|
def _set(cls):
|
||||||
|
shell = cls()
|
||||||
|
monkeypatch.setattr('thefuck.shells.shell', shell)
|
||||||
|
request.addfinalizer()
|
||||||
|
return shell
|
||||||
|
|
||||||
|
return _set
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
import pytest
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
|
||||||
def generic_shell(monkeypatch):
|
|
||||||
monkeypatch.setattr('thefuck.shells.and_', lambda *x: u' && '.join(x))
|
|
@ -1,5 +1,5 @@
|
|||||||
from thefuck import shells
|
|
||||||
from thefuck.rules.git_branch_list import match, get_new_command
|
from thefuck.rules.git_branch_list import match, get_new_command
|
||||||
|
from thefuck.shells import shell
|
||||||
from tests.utils import Command
|
from tests.utils import Command
|
||||||
|
|
||||||
|
|
||||||
@ -16,4 +16,4 @@ def test_not_match():
|
|||||||
|
|
||||||
def test_get_new_command():
|
def test_get_new_command():
|
||||||
assert (get_new_command(Command('git branch list')) ==
|
assert (get_new_command(Command('git branch list')) ==
|
||||||
shells.and_('git branch --delete list', 'git branch'))
|
shell.and_('git branch --delete list', 'git branch'))
|
||||||
|
@ -5,7 +5,7 @@ from tests.utils import Command
|
|||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def history(mocker):
|
def history(mocker):
|
||||||
return mocker.patch('thefuck.rules.history.get_history',
|
return mocker.patch('thefuck.shells.shell.get_history',
|
||||||
return_value=['le cat', 'fuck', 'ls cat',
|
return_value=['le cat', 'fuck', 'ls cat',
|
||||||
'diff x', 'nocommand x'])
|
'diff x', 'nocommand x'])
|
||||||
|
|
||||||
|
@ -18,4 +18,5 @@ def history_lines(mocker):
|
|||||||
mock = mocker.patch('io.open')
|
mock = mocker.patch('io.open')
|
||||||
mock.return_value.__enter__ \
|
mock.return_value.__enter__ \
|
||||||
.return_value.readlines.return_value = lines
|
.return_value.readlines.return_value = lines
|
||||||
|
|
||||||
return aux
|
return aux
|
||||||
|
@ -4,7 +4,7 @@ import pytest
|
|||||||
from thefuck.shells import Bash
|
from thefuck.shells import Bash
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.usefixtures('isfile')
|
@pytest.mark.usefixtures('isfile', 'no_memoize', 'no_cache')
|
||||||
class TestBash(object):
|
class TestBash(object):
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def shell(self):
|
def shell(self):
|
||||||
|
@ -4,7 +4,7 @@ import pytest
|
|||||||
from thefuck.shells import Fish
|
from thefuck.shells import Fish
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.usefixtures('isfile')
|
@pytest.mark.usefixtures('isfile', 'no_memoize', 'no_cache')
|
||||||
class TestFish(object):
|
class TestFish(object):
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def shell(self):
|
def shell(self):
|
||||||
|
@ -4,7 +4,7 @@ import pytest
|
|||||||
from thefuck.shells.tcsh import Tcsh
|
from thefuck.shells.tcsh import Tcsh
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.usefixtures('isfile')
|
@pytest.mark.usefixtures('isfile', 'no_memoize', 'no_cache')
|
||||||
class TestTcsh(object):
|
class TestTcsh(object):
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def shell(self):
|
def shell(self):
|
||||||
|
@ -4,7 +4,7 @@ import pytest
|
|||||||
from thefuck.shells.zsh import Zsh
|
from thefuck.shells.zsh import Zsh
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.usefixtures('isfile')
|
@pytest.mark.usefixtures('isfile', 'no_memoize', 'no_cache')
|
||||||
class TestZsh(object):
|
class TestZsh(object):
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def shell(self):
|
def shell(self):
|
||||||
|
@ -103,11 +103,6 @@ class TestCommand(object):
|
|||||||
monkeypatch.setattr('thefuck.types.Command._wait_output',
|
monkeypatch.setattr('thefuck.types.Command._wait_output',
|
||||||
staticmethod(lambda *_: True))
|
staticmethod(lambda *_: True))
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
|
||||||
def generic_shell(self, monkeypatch):
|
|
||||||
monkeypatch.setattr('thefuck.shells.from_shell', lambda x: x)
|
|
||||||
monkeypatch.setattr('thefuck.shells.to_shell', lambda x: x)
|
|
||||||
|
|
||||||
def test_from_script_calls(self, Popen, settings):
|
def test_from_script_calls(self, Popen, settings):
|
||||||
settings.env = {}
|
settings.env = {}
|
||||||
assert Command.from_raw_script(
|
assert Command.from_raw_script(
|
||||||
|
@ -50,7 +50,7 @@ class TestGetClosest(object):
|
|||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def get_aliases(mocker):
|
def get_aliases(mocker):
|
||||||
mocker.patch('thefuck.shells.get_aliases',
|
mocker.patch('thefuck.shells.shell.get_aliases',
|
||||||
return_value=['vim', 'apt-get', 'fsck', 'fuck'])
|
return_value=['vim', 'apt-get', 'fsck', 'fuck'])
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,7 +7,8 @@ from argparse import ArgumentParser
|
|||||||
from warnings import warn
|
from warnings import warn
|
||||||
from pprint import pformat
|
from pprint import pformat
|
||||||
import sys
|
import sys
|
||||||
from . import logs, types, shells
|
from . import logs, types
|
||||||
|
from .shells import shell
|
||||||
from .conf import settings
|
from .conf import settings
|
||||||
from .corrector import get_corrected_commands
|
from .corrector import get_corrected_commands
|
||||||
from .exceptions import EmptyCommand
|
from .exceptions import EmptyCommand
|
||||||
@ -45,7 +46,7 @@ def print_alias(entry_point=True):
|
|||||||
alias = get_alias()
|
alias = get_alias()
|
||||||
if len(sys.argv) > position:
|
if len(sys.argv) > position:
|
||||||
alias = sys.argv[position]
|
alias = sys.argv[position]
|
||||||
print(shells.app_alias(alias))
|
print(shell.app_alias(alias))
|
||||||
|
|
||||||
|
|
||||||
def how_to_configure_alias():
|
def how_to_configure_alias():
|
||||||
@ -55,7 +56,7 @@ def how_to_configure_alias():
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
settings.init()
|
settings.init()
|
||||||
logs.how_to_configure_alias(shells.how_to_configure())
|
logs.how_to_configure_alias(shell.how_to_configure())
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from thefuck import shells
|
|
||||||
from thefuck.utils import memoize
|
from thefuck.utils import memoize
|
||||||
|
from thefuck.shells import shell
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import CommandNotFound
|
import CommandNotFound
|
||||||
@ -26,5 +26,5 @@ def match(command):
|
|||||||
|
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
name = get_package(command.script)
|
name = get_package(command.script)
|
||||||
formatme = shells.and_('sudo apt-get install {}', '{}')
|
formatme = shell.and_('sudo apt-get install {}', '{}')
|
||||||
return formatme.format(name, command.script)
|
return formatme.format(name, command.script)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import re
|
import re
|
||||||
from thefuck import shells
|
|
||||||
from thefuck.utils import for_app
|
from thefuck.utils import for_app
|
||||||
from thefuck.specific.sudo import sudo_support
|
from thefuck.specific.sudo import sudo_support
|
||||||
|
from thefuck.shells import shell
|
||||||
|
|
||||||
|
|
||||||
@sudo_support
|
@sudo_support
|
||||||
@ -14,5 +14,5 @@ def match(command):
|
|||||||
|
|
||||||
@sudo_support
|
@sudo_support
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
repl = shells.and_('mkdir -p \\1', 'cd \\1')
|
repl = shell.and_('mkdir -p \\1', 'cd \\1')
|
||||||
return re.sub(r'^cd (.*)', repl, command.script)
|
return re.sub(r'^cd (.*)', repl, command.script)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import tarfile
|
import tarfile
|
||||||
import os
|
import os
|
||||||
from thefuck import shells
|
|
||||||
from thefuck.utils import for_app
|
from thefuck.utils import for_app
|
||||||
|
from thefuck.shells import shell
|
||||||
|
|
||||||
|
|
||||||
tar_extensions = ('.tar', '.tar.Z', '.tar.bz2', '.tar.gz', '.tar.lz',
|
tar_extensions = ('.tar', '.tar.Z', '.tar.bz2', '.tar.gz', '.tar.lz',
|
||||||
@ -33,8 +33,8 @@ def match(command):
|
|||||||
|
|
||||||
|
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
dir = shells.quote(_tar_file(command.script_parts)[1])
|
dir = shell.quote(_tar_file(command.script_parts)[1])
|
||||||
return shells.and_('mkdir -p {dir}', '{cmd} -C {dir}') \
|
return shell.and_('mkdir -p {dir}', '{cmd} -C {dir}') \
|
||||||
.format(dir=dir, cmd=command.script)
|
.format(dir=dir, cmd=command.script)
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import os
|
import os
|
||||||
import zipfile
|
import zipfile
|
||||||
from thefuck.utils import for_app
|
from thefuck.utils import for_app
|
||||||
from thefuck.shells import quote
|
from thefuck.shells import shell
|
||||||
|
|
||||||
|
|
||||||
def _is_bad_zip(file):
|
def _is_bad_zip(file):
|
||||||
@ -38,7 +38,8 @@ def match(command):
|
|||||||
|
|
||||||
|
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
return u'{} -d {}'.format(command.script, quote(_zip_file(command)[:-4]))
|
return u'{} -d {}'.format(
|
||||||
|
command.script, shell.quote(_zip_file(command)[:-4]))
|
||||||
|
|
||||||
|
|
||||||
def side_effect(old_cmd, command):
|
def side_effect(old_cmd, command):
|
||||||
|
@ -2,7 +2,7 @@ import re
|
|||||||
import os
|
import os
|
||||||
from thefuck.utils import memoize, default_settings
|
from thefuck.utils import memoize, default_settings
|
||||||
from thefuck.conf import settings
|
from thefuck.conf import settings
|
||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
|
|
||||||
|
|
||||||
# order is important: only the first match is considered
|
# order is important: only the first match is considered
|
||||||
@ -75,4 +75,4 @@ def get_new_command(command):
|
|||||||
file=m.group('file'),
|
file=m.group('file'),
|
||||||
line=m.group('line'))
|
line=m.group('line'))
|
||||||
|
|
||||||
return shells.and_(editor_call, command.script)
|
return shell.and_(editor_call, command.script)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import re
|
import re
|
||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
from thefuck.specific.git import git_support
|
from thefuck.specific.git import git_support
|
||||||
|
|
||||||
|
|
||||||
@ -15,5 +15,5 @@ def get_new_command(command):
|
|||||||
r"error: pathspec '([^']*)' "
|
r"error: pathspec '([^']*)' "
|
||||||
r"did not match any file\(s\) known to git.", command.stderr)[0]
|
r"did not match any file\(s\) known to git.", command.stderr)[0]
|
||||||
|
|
||||||
formatme = shells.and_('git add -- {}', '{}')
|
formatme = shell.and_('git add -- {}', '{}')
|
||||||
return formatme.format(missing_file, command.script)
|
return formatme.format(missing_file, command.script)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
from thefuck.specific.git import git_support
|
from thefuck.specific.git import git_support
|
||||||
|
|
||||||
|
|
||||||
@ -11,4 +11,4 @@ def match(command):
|
|||||||
|
|
||||||
@git_support
|
@git_support
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
return shells.and_('git branch --delete list', 'git branch')
|
return shell.and_('git branch --delete list', 'git branch')
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
import re
|
import re
|
||||||
import subprocess
|
import subprocess
|
||||||
from thefuck import shells, utils
|
from thefuck import utils
|
||||||
from thefuck.utils import replace_argument
|
from thefuck.utils import replace_argument
|
||||||
from thefuck.specific.git import git_support
|
from thefuck.specific.git import git_support
|
||||||
|
from thefuck.shells import shell
|
||||||
|
|
||||||
|
|
||||||
@git_support
|
@git_support
|
||||||
@ -34,5 +35,5 @@ def get_new_command(command):
|
|||||||
if closest_branch:
|
if closest_branch:
|
||||||
return replace_argument(command.script, missing_file, closest_branch)
|
return replace_argument(command.script, missing_file, closest_branch)
|
||||||
else:
|
else:
|
||||||
return shells.and_('git branch {}', '{}').format(
|
return shell.and_('git branch {}', '{}').format(
|
||||||
missing_file, command.script)
|
missing_file, command.script)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
from thefuck.specific.git import git_support
|
from thefuck.specific.git import git_support
|
||||||
|
|
||||||
|
|
||||||
@ -14,4 +14,4 @@ def get_new_command(command):
|
|||||||
branch = line.split(' ')[-1]
|
branch = line.split(' ')[-1]
|
||||||
set_upstream = line.replace('<remote>', 'origin')\
|
set_upstream = line.replace('<remote>', 'origin')\
|
||||||
.replace('<branch>', branch)
|
.replace('<branch>', branch)
|
||||||
return shells.and_(set_upstream, command.script)
|
return shell.and_(set_upstream, command.script)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
from thefuck.utils import replace_argument
|
from thefuck.utils import replace_argument
|
||||||
from thefuck.specific.git import git_support
|
from thefuck.specific.git import git_support
|
||||||
|
|
||||||
@ -13,5 +13,5 @@ def match(command):
|
|||||||
|
|
||||||
@git_support
|
@git_support
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
return shells.and_(replace_argument(command.script, 'push', 'pull'),
|
return shell.and_(replace_argument(command.script, 'push', 'pull'),
|
||||||
command.script)
|
command.script)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
from thefuck.specific.git import git_support
|
from thefuck.specific.git import git_support
|
||||||
|
|
||||||
|
|
||||||
@ -11,5 +11,5 @@ def match(command):
|
|||||||
|
|
||||||
@git_support
|
@git_support
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
formatme = shells.and_('git stash', '{}')
|
formatme = shell.and_('git stash', '{}')
|
||||||
return formatme.format(command.script)
|
return formatme.format(command.script)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from difflib import get_close_matches
|
from difflib import get_close_matches
|
||||||
from thefuck.shells import get_history
|
from thefuck.shells import shell
|
||||||
from thefuck.utils import get_closest, memoize, get_all_executables, get_alias
|
from thefuck.utils import get_closest, memoize, get_all_executables, get_alias
|
||||||
|
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ def _not_corrected(history, tf_alias):
|
|||||||
|
|
||||||
@memoize
|
@memoize
|
||||||
def _history_of_exists_without_current(command):
|
def _history_of_exists_without_current(command):
|
||||||
history = get_history()
|
history = shell.get_history()
|
||||||
tf_alias = get_alias()
|
tf_alias = get_alias()
|
||||||
executables = get_all_executables()
|
executables = get_all_executables()
|
||||||
return [line for line in _not_corrected(history, tf_alias)
|
return [line for line in _not_corrected(history, tf_alias)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import re
|
import re
|
||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
|
|
||||||
|
|
||||||
patterns = (
|
patterns = (
|
||||||
@ -26,5 +26,5 @@ def get_new_command(command):
|
|||||||
file = file[0]
|
file = file[0]
|
||||||
dir = file[0:file.rfind('/')]
|
dir = file[0:file.rfind('/')]
|
||||||
|
|
||||||
formatme = shells.and_('mkdir -p {}', '{}')
|
formatme = shell.and_('mkdir -p {}', '{}')
|
||||||
return formatme.format(dir, command.script)
|
return formatme.format(dir, command.script)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from thefuck.specific.archlinux import get_pkgfile, archlinux_env
|
from thefuck.specific.archlinux import get_pkgfile, archlinux_env
|
||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
|
|
||||||
|
|
||||||
def match(command):
|
def match(command):
|
||||||
@ -9,7 +9,7 @@ def match(command):
|
|||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
packages = get_pkgfile(command.script)
|
packages = get_pkgfile(command.script)
|
||||||
|
|
||||||
formatme = shells.and_('{} -S {}', '{}')
|
formatme = shell.and_('{} -S {}', '{}')
|
||||||
return [formatme.format(pacman, package, command.script)
|
return [formatme.format(pacman, package, command.script)
|
||||||
for package in packages]
|
for package in packages]
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import shlex
|
import shlex
|
||||||
from thefuck.shells import quote
|
from thefuck.shells import shell
|
||||||
from thefuck.utils import for_app
|
from thefuck.utils import for_app
|
||||||
|
|
||||||
|
|
||||||
@ -15,4 +15,4 @@ def get_new_command(command):
|
|||||||
if e.startswith(('s/', '-es/')) and e[-1] != '/':
|
if e.startswith(('s/', '-es/')) and e[-1] != '/':
|
||||||
script[i] += '/'
|
script[i] += '/'
|
||||||
|
|
||||||
return ' '.join(map(quote, script))
|
return ' '.join(map(shell.quote, script))
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import re
|
import re
|
||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
from thefuck.utils import for_app
|
from thefuck.utils import for_app
|
||||||
|
|
||||||
|
|
||||||
@ -10,4 +10,4 @@ def match(command):
|
|||||||
|
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
path = re.findall(r"touch: cannot touch '(.+)/.+':", command.stderr)[0]
|
path = re.findall(r"touch: cannot touch '(.+)/.+':", command.stderr)[0]
|
||||||
return shells.and_(u'mkdir -p {}'.format(path), command.script)
|
return shell.and_(u'mkdir -p {}'.format(path), command.script)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
from thefuck.utils import for_app
|
from thefuck.utils import for_app
|
||||||
|
|
||||||
|
|
||||||
@ -9,4 +9,4 @@ def match(command):
|
|||||||
|
|
||||||
|
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
return shells.and_('tsuru login', command.script)
|
return shell.and_('tsuru login', command.script)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from thefuck import shells
|
from thefuck.shells import shell
|
||||||
from thefuck.utils import for_app
|
from thefuck.utils import for_app
|
||||||
|
|
||||||
|
|
||||||
@ -13,8 +13,8 @@ def get_new_command(command):
|
|||||||
if len(cmds) >= 3:
|
if len(cmds) >= 3:
|
||||||
machine = cmds[2]
|
machine = cmds[2]
|
||||||
|
|
||||||
startAllInstances = shells.and_("vagrant up", command.script)
|
startAllInstances = shell.and_("vagrant up", command.script)
|
||||||
if machine is None:
|
if machine is None:
|
||||||
return startAllInstances
|
return startAllInstances
|
||||||
else:
|
else:
|
||||||
return [shells.and_("vagrant up " + machine, command.script), startAllInstances]
|
return [shell.and_("vagrant up " + machine, command.script), startAllInstances]
|
||||||
|
@ -3,10 +3,7 @@ implement `from_shell`, `to_shell`, `app_alias`, `put_to_history` and
|
|||||||
`get_aliases` methods.
|
`get_aliases` methods.
|
||||||
"""
|
"""
|
||||||
import os
|
import os
|
||||||
import sys
|
|
||||||
from psutil import Process
|
from psutil import Process
|
||||||
from ..utils import memoize
|
|
||||||
from .. import logs
|
|
||||||
from .bash import Bash
|
from .bash import Bash
|
||||||
from .fish import Fish
|
from .fish import Fish
|
||||||
from .generic import Generic
|
from .generic import Generic
|
||||||
@ -20,51 +17,12 @@ shells = {'bash': Bash,
|
|||||||
'tcsh': Tcsh}
|
'tcsh': Tcsh}
|
||||||
|
|
||||||
|
|
||||||
@memoize
|
|
||||||
def _get_shell():
|
def _get_shell():
|
||||||
try:
|
try:
|
||||||
shell = Process(os.getpid()).parent().name()
|
shell_name = Process(os.getpid()).parent().name()
|
||||||
except TypeError:
|
except TypeError:
|
||||||
shell = Process(os.getpid()).parent.name
|
shell_name = Process(os.getpid()).parent.name
|
||||||
return shells.get(shell, Generic)()
|
return shells.get(shell_name, Generic)()
|
||||||
|
|
||||||
|
|
||||||
# Public interface of current shell:
|
shell = _get_shell()
|
||||||
def from_shell(command):
|
|
||||||
return _get_shell().from_shell(command)
|
|
||||||
|
|
||||||
|
|
||||||
def to_shell(command):
|
|
||||||
return _get_shell().to_shell(command)
|
|
||||||
|
|
||||||
|
|
||||||
def app_alias(alias):
|
|
||||||
return _get_shell().app_alias(alias)
|
|
||||||
|
|
||||||
|
|
||||||
def put_to_history(command):
|
|
||||||
return _get_shell().put_to_history(command)
|
|
||||||
|
|
||||||
|
|
||||||
def and_(*commands):
|
|
||||||
return _get_shell().and_(*commands)
|
|
||||||
|
|
||||||
|
|
||||||
def get_aliases():
|
|
||||||
return _get_shell().get_aliases()
|
|
||||||
|
|
||||||
|
|
||||||
def split_command(command):
|
|
||||||
return _get_shell().split_command(command)
|
|
||||||
|
|
||||||
|
|
||||||
def quote(s):
|
|
||||||
return _get_shell().quote(s)
|
|
||||||
|
|
||||||
|
|
||||||
def get_history():
|
|
||||||
return _get_shell().get_history()
|
|
||||||
|
|
||||||
|
|
||||||
def how_to_configure():
|
|
||||||
return _get_shell().how_to_configure()
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import re
|
import re
|
||||||
from decorator import decorator
|
from decorator import decorator
|
||||||
from ..utils import is_app
|
from ..utils import is_app
|
||||||
from ..shells import quote, split_command
|
from ..shells import shell
|
||||||
|
|
||||||
|
|
||||||
@decorator
|
@decorator
|
||||||
@ -23,7 +23,8 @@ def git_support(fn, command):
|
|||||||
# 'commit' '--amend'
|
# 'commit' '--amend'
|
||||||
# which is surprising and does not allow to easily test for
|
# which is surprising and does not allow to easily test for
|
||||||
# eg. 'git commit'
|
# eg. 'git commit'
|
||||||
expansion = ' '.join(map(quote, split_command(search.group(2))))
|
expansion = ' '.join(shell.quote(part)
|
||||||
|
for part in shell.split_command(search.group(2)))
|
||||||
new_script = command.script.replace(alias, expansion)
|
new_script = command.script.replace(alias, expansion)
|
||||||
|
|
||||||
command = command.update(script=new_script)
|
command = command.update(script=new_script)
|
||||||
|
@ -4,7 +4,8 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
import six
|
import six
|
||||||
from psutil import Process, TimeoutExpired
|
from psutil import Process, TimeoutExpired
|
||||||
from . import logs, shells
|
from . import logs
|
||||||
|
from .shells import shell
|
||||||
from .conf import settings, DEFAULT_PRIORITY, ALL_ENABLED
|
from .conf import settings, DEFAULT_PRIORITY, ALL_ENABLED
|
||||||
from .exceptions import EmptyCommand
|
from .exceptions import EmptyCommand
|
||||||
from .utils import compatibility_call
|
from .utils import compatibility_call
|
||||||
@ -29,7 +30,7 @@ class Command(object):
|
|||||||
def script_parts(self):
|
def script_parts(self):
|
||||||
if not hasattr(self, '_script_parts'):
|
if not hasattr(self, '_script_parts'):
|
||||||
try:
|
try:
|
||||||
self._script_parts = shells.split_command(self.script)
|
self._script_parts = shell.split_command(self.script)
|
||||||
except Exception:
|
except Exception:
|
||||||
logs.debug(u"Can't split command script {} because:\n {}".format(
|
logs.debug(u"Can't split command script {} because:\n {}".format(
|
||||||
self, sys.exc_info()))
|
self, sys.exc_info()))
|
||||||
@ -93,7 +94,7 @@ class Command(object):
|
|||||||
script = ' '.join(raw_script)
|
script = ' '.join(raw_script)
|
||||||
|
|
||||||
script = script.strip()
|
script = script.strip()
|
||||||
return shells.from_shell(script)
|
return shell.from_shell(script)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_raw_script(cls, raw_script):
|
def from_raw_script(cls, raw_script):
|
||||||
@ -279,7 +280,7 @@ class CorrectedCommand(object):
|
|||||||
if self.side_effect:
|
if self.side_effect:
|
||||||
compatibility_call(self.side_effect, old_cmd, self.script)
|
compatibility_call(self.side_effect, old_cmd, self.script)
|
||||||
if settings.alter_history:
|
if settings.alter_history:
|
||||||
shells.put_to_history(self.script)
|
shell.put_to_history(self.script)
|
||||||
# This depends on correct setting of PYTHONIOENCODING by the alias:
|
# This depends on correct setting of PYTHONIOENCODING by the alias:
|
||||||
logs.debug(u'PYTHONIOENCODING: {}'.format(
|
logs.debug(u'PYTHONIOENCODING: {}'.format(
|
||||||
os.environ.get('PYTHONIOENCODING', '>-not-set-<')))
|
os.environ.get('PYTHONIOENCODING', '>-not-set-<')))
|
||||||
|
@ -93,7 +93,7 @@ def get_closest(word, possibilities, n=3, cutoff=0.6, fallback_to_first=True):
|
|||||||
|
|
||||||
@memoize
|
@memoize
|
||||||
def get_all_executables():
|
def get_all_executables():
|
||||||
from thefuck.shells import get_aliases
|
from thefuck.shells import shell
|
||||||
|
|
||||||
def _safe(fn, fallback):
|
def _safe(fn, fallback):
|
||||||
try:
|
try:
|
||||||
@ -110,7 +110,7 @@ def get_all_executables():
|
|||||||
for exe in _safe(lambda: list(Path(path).iterdir()), [])
|
for exe in _safe(lambda: list(Path(path).iterdir()), [])
|
||||||
if not _safe(exe.is_dir, True)
|
if not _safe(exe.is_dir, True)
|
||||||
and exe.name not in tf_entry_points]
|
and exe.name not in tf_entry_points]
|
||||||
aliases = [alias for alias in get_aliases() if alias != tf_alias]
|
aliases = [alias for alias in shell.get_aliases() if alias != tf_alias]
|
||||||
return bins + aliases
|
return bins + aliases
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user