Skip to content

Commit 95f6049

Browse files
committed
Make the search case insensitive.
Signed-off-by: Sam.Richards@taurich.org <Sam.Richards@taurich.org>
1 parent b0c2234 commit 95f6049

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/plugin/python_plugins/filesystem_browser/filesystem_browser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def compute_completions(self, partial_path):
422422
full_p = os.path.join(directory, item)
423423
if os.path.isdir(full_p):
424424
# Filter by base
425-
if item.startswith(base):
425+
if item.lower().startswith(base.lower()):
426426
candidates.append(full_p + os.path.sep)
427427
except OSError:
428428
pass

0 commit comments

Comments
 (0)