mirror of https://github.com/cheat/cheat.git
Merge pull request #399 from tculp/case-insensitive-search
Changed search behavior to lower the search term and the lines being …
This commit is contained in:
commit
500dbbbd4a
|
@ -79,11 +79,12 @@ def list():
|
||||||
def search(term):
|
def search(term):
|
||||||
""" Searches all cheatsheets for the specified term """
|
""" Searches all cheatsheets for the specified term """
|
||||||
result = ''
|
result = ''
|
||||||
|
lowered_term = term.lower()
|
||||||
|
|
||||||
for cheatsheet in sorted(get().items()):
|
for cheatsheet in sorted(get().items()):
|
||||||
match = ''
|
match = ''
|
||||||
for line in open(cheatsheet[1]):
|
for line in open(cheatsheet[1]):
|
||||||
if term in line:
|
if lowered_term in line:
|
||||||
match += ' ' + line
|
match += ' ' + line
|
||||||
|
|
||||||
if match != '':
|
if match != '':
|
||||||
|
|
Loading…
Reference in New Issue