1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

clarify detect_smartcase docstring

This commit is contained in:
William Ting 2013-12-17 12:04:11 -06:00
parent b695cc3f7d
commit 1472b417c3

View File

@ -191,6 +191,14 @@ def decrease_path(config, path, increment=15):
return path, data[path]
def detect_smartcase(needles):
"""
If any needles contain an uppercase letter then use case sensitive
searching. Otherwise use case insensitive searching.
"""
return not any(imap(has_uppercase, needles))
def find_matches(config, needles, count=1):
"""Return [count] paths matching needles."""
entriefy = lambda tup: Entry(*tup)