mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
remove current directory from matches
This commit is contained in:
parent
1472b417c3
commit
d115075295
@ -202,8 +202,9 @@ def detect_smartcase(needles):
|
|||||||
def find_matches(config, needles, count=1):
|
def find_matches(config, needles, count=1):
|
||||||
"""Return [count] paths matching needles."""
|
"""Return [count] paths matching needles."""
|
||||||
entriefy = lambda tup: Entry(*tup)
|
entriefy = lambda tup: Entry(*tup)
|
||||||
|
not_cwd = lambda entry: entry.path != os.getcwdu()
|
||||||
data = sorted(
|
data = sorted(
|
||||||
imap(entriefy, load(config).iteritems()),
|
ifilter(not_cwd, imap(entriefy, load(config).iteritems())),
|
||||||
key=attrgetter('weight'),
|
key=attrgetter('weight'),
|
||||||
reverse=True)
|
reverse=True)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user