mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
remove unused imports, minor formatting cleanup
This commit is contained in:
parent
1c8a4c13cd
commit
80a3f0da4d
3
Makefile
3
Makefile
@ -13,6 +13,9 @@ docs:
|
|||||||
pandoc -s -w man docs/manpage_header.md docs/header.md docs/body.md -o docs/autojump.1
|
pandoc -s -w man docs/manpage_header.md docs/header.md docs/body.md -o docs/autojump.1
|
||||||
pandoc -s -w markdown docs/header.md docs/install.md docs/development.md docs/body.md -o README.md
|
pandoc -s -w markdown docs/header.md docs/install.md docs/development.md docs/body.md -o README.md
|
||||||
|
|
||||||
|
lint:
|
||||||
|
flake8 ./
|
||||||
|
|
||||||
release: docs
|
release: docs
|
||||||
# Check for tag existence
|
# Check for tag existence
|
||||||
# git describe release-$(VERSION) 2>&1 >/dev/null || exit 1
|
# git describe release-$(VERSION) 2>&1 >/dev/null || exit 1
|
||||||
|
11
bin/autojump
11
bin/autojump
@ -22,13 +22,11 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
from difflib import SequenceMatcher
|
from difflib import SequenceMatcher
|
||||||
from functools import partial
|
|
||||||
from itertools import chain
|
from itertools import chain
|
||||||
from math import sqrt
|
from math import sqrt
|
||||||
from operator import attrgetter
|
from operator import attrgetter
|
||||||
from operator import itemgetter
|
from operator import itemgetter
|
||||||
import os
|
import os
|
||||||
import platform
|
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
@ -61,7 +59,6 @@ from utils import last
|
|||||||
from utils import print_entry
|
from utils import print_entry
|
||||||
from utils import print_tab_menu
|
from utils import print_tab_menu
|
||||||
from utils import sanitize
|
from utils import sanitize
|
||||||
from utils import second
|
|
||||||
from utils import surround_quotes
|
from utils import surround_quotes
|
||||||
from utils import take
|
from utils import take
|
||||||
|
|
||||||
@ -212,7 +209,10 @@ def match_anywhere(needles, haystack, ignore_case=False):
|
|||||||
"""
|
"""
|
||||||
regex_needle = '.*' + '.*'.join(needles) + '.*'
|
regex_needle = '.*' + '.*'.join(needles) + '.*'
|
||||||
regex_flags = re.IGNORECASE | re.UNICODE if ignore_case else re.UNICODE
|
regex_flags = re.IGNORECASE | re.UNICODE if ignore_case else re.UNICODE
|
||||||
found = lambda haystack: re.search(regex_needle, haystack.path, flags=regex_flags)
|
found = lambda haystack: re.search(
|
||||||
|
regex_needle,
|
||||||
|
haystack.path,
|
||||||
|
flags=regex_flags)
|
||||||
return ifilter(found, haystack)
|
return ifilter(found, haystack)
|
||||||
|
|
||||||
|
|
||||||
@ -289,8 +289,7 @@ def match_fuzzy(needles, haystack, ignore_case=False):
|
|||||||
match_percent = lambda entry: SequenceMatcher(
|
match_percent = lambda entry: SequenceMatcher(
|
||||||
a=needle,
|
a=needle,
|
||||||
b=end_dir(entry.path)).ratio()
|
b=end_dir(entry.path)).ratio()
|
||||||
meets_threshold = lambda entry: match_percent(entry) \
|
meets_threshold = lambda entry: match_percent(entry) >= FUZZY_MATCH_THRESHOLD
|
||||||
>= FUZZY_MATCH_THRESHOLD
|
|
||||||
return ifilter(meets_threshold, haystack)
|
return ifilter(meets_threshold, haystack)
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ from __future__ import print_function
|
|||||||
|
|
||||||
from codecs import open
|
from codecs import open
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
from operator import itemgetter
|
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import sys
|
import sys
|
||||||
@ -68,8 +67,12 @@ def load(config):
|
|||||||
tupleize = lambda x: (x[1], float(x[0]))
|
tupleize = lambda x: (x[1], float(x[0]))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
with open(config['data_path'], 'r', encoding='utf-8', errors='replace') as f:
|
with open(
|
||||||
return dict(imap(tupleize, ifilter(correct_length, imap(parse, f))))
|
config['data_path'],
|
||||||
|
'r', encoding='utf-8',
|
||||||
|
errors='replace') as f:
|
||||||
|
return dict(
|
||||||
|
imap(tupleize, ifilter(correct_length, imap(parse, f))))
|
||||||
except (IOError, EOFError):
|
except (IOError, EOFError):
|
||||||
return load_backup(config)
|
return load_backup(config)
|
||||||
|
|
||||||
|
15
bin/utils.py
15
bin/utils.py
@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
from collections import Iterable
|
|
||||||
import errno
|
import errno
|
||||||
from itertools import islice
|
from itertools import islice
|
||||||
import os
|
import os
|
||||||
@ -14,11 +13,9 @@ import sys
|
|||||||
import unicodedata
|
import unicodedata
|
||||||
|
|
||||||
if sys.version_info[0] == 3:
|
if sys.version_info[0] == 3:
|
||||||
ifilter = filter
|
|
||||||
imap = map
|
imap = map
|
||||||
os.getcwdu = os.getcwd
|
os.getcwdu = os.getcwd
|
||||||
else:
|
else:
|
||||||
from itertools import ifilter
|
|
||||||
from itertools import imap
|
from itertools import imap
|
||||||
|
|
||||||
|
|
||||||
@ -78,9 +75,9 @@ def get_needle_and_index(tab_entry, separator):
|
|||||||
[needle]__[index]__[possible_match]
|
[needle]__[index]__[possible_match]
|
||||||
"""
|
"""
|
||||||
matches = re.search(
|
matches = re.search(
|
||||||
r'(.*)' + \
|
r'(.*)' +
|
||||||
separator + \
|
separator +
|
||||||
r'([0-9]{1})' + \
|
r'([0-9]{1})' +
|
||||||
separator, tab_entry)
|
separator, tab_entry)
|
||||||
return matches.group(1), int(matches.group(2))
|
return matches.group(1), int(matches.group(2))
|
||||||
|
|
||||||
@ -126,9 +123,9 @@ def is_tab_entry(needle, separator):
|
|||||||
[needle]__[index]__[possible_match]
|
[needle]__[index]__[possible_match]
|
||||||
"""
|
"""
|
||||||
pattern = re.compile(
|
pattern = re.compile(
|
||||||
'.*' + \
|
'.*' +
|
||||||
separator + \
|
separator +
|
||||||
'[0-9]{1}' + \
|
'[0-9]{1}' +
|
||||||
separator)
|
separator)
|
||||||
return re.search(pattern, needle)
|
return re.search(pattern, needle)
|
||||||
|
|
||||||
|
@ -4,8 +4,7 @@ IPython autojump magic
|
|||||||
Written by keith hughitt <keith.hughitt@gmail.com>, based on an earlier
|
Written by keith hughitt <keith.hughitt@gmail.com>, based on an earlier
|
||||||
version by Mario Pastorelli <pastorelli.mario@gmail.com>.
|
version by Mario Pastorelli <pastorelli.mario@gmail.com>.
|
||||||
|
|
||||||
To install, `create a new IPython user profile <http://ipython.org/ipython-doc/stable/config/ipython.html#configuring-ipython>`_
|
To install, create a new IPython user profile by running:
|
||||||
if you have not already done so by running:
|
|
||||||
|
|
||||||
ipython profile create
|
ipython profile create
|
||||||
|
|
||||||
@ -14,17 +13,22 @@ And copy this file into the "startup" folder of your new profile (e.g.
|
|||||||
|
|
||||||
@TODO: extend %cd to call "autojump -a"
|
@TODO: extend %cd to call "autojump -a"
|
||||||
"""
|
"""
|
||||||
import os
|
from subprocess import Popen
|
||||||
import subprocess as sub
|
from subprocess import PIPE
|
||||||
from IPython.core.magic import (register_line_magic, register_cell_magic,
|
|
||||||
register_line_cell_magic)
|
from IPython.core.magic import register_line_magic
|
||||||
|
|
||||||
ip = get_ipython()
|
ip = get_ipython()
|
||||||
|
|
||||||
|
|
||||||
@register_line_magic
|
@register_line_magic
|
||||||
def j(path):
|
def j(path):
|
||||||
cmd = ['autojump'] + path.split()
|
cmd = ['autojump'] + path.split()
|
||||||
newpath = sub.Popen(cmd, stdout=sub.PIPE, shell=False).communicate()[0].strip()
|
newpath = Popen(
|
||||||
|
cmd,
|
||||||
|
stdout=PIPE,
|
||||||
|
shell=False).communicate()[0].strip()
|
||||||
|
|
||||||
if newpath:
|
if newpath:
|
||||||
ip.magic('cd %s' % newpath.decode('utf-8'))
|
ip.magic('cd %s' % newpath.decode('utf-8'))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user