diff --git a/cheat/sheets.py b/cheat/sheets.py index 1a0b28e..6f5d99f 100644 --- a/cheat/sheets.py +++ b/cheat/sheets.py @@ -79,11 +79,12 @@ def list(): def search(term): """ Searches all cheatsheets for the specified term """ result = '' + term_lowered = term.lower() for cheatsheet in sorted(get().items()): match = '' for line in open(cheatsheet[1]): - if term in line: + if term_lowered in line.lower(): match += ' ' + line if match != '':