summaryrefslogtreecommitdiff
path: root/qutebrowser/completion
diff options
context:
space:
mode:
authorAndrew MacFie <amacfie@sent.com>2021-01-19 14:07:35 -0500
committerAndrew MacFie <amacfie@sent.com>2021-01-19 14:07:35 -0500
commit51343a432bb39556aec68129e7ac1585ee50ac9b (patch)
tree0c073079416c3af261bad377814a5974dc56cf0a /qutebrowser/completion
parent62d627757f60c5a9d58a01a0fd472d8322190954 (diff)
downloadqutebrowser-51343a432bb39556aec68129e7ac1585ee50ac9b.tar.gz
qutebrowser-51343a432bb39556aec68129e7ac1585ee50ac9b.zip
Add filesystem completion to default
Diffstat (limited to 'qutebrowser/completion')
-rw-r--r--qutebrowser/completion/models/filepathcategory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/completion/models/filepathcategory.py b/qutebrowser/completion/models/filepathcategory.py
index e2caae60f..d086e2d8b 100644
--- a/qutebrowser/completion/models/filepathcategory.py
+++ b/qutebrowser/completion/models/filepathcategory.py
@@ -57,7 +57,7 @@ class FilePathCategory(QAbstractListModel):
expanded_paths = sorted(glob.glob(glob_str))
head = Path(val).parts[0]
- # if ~ or ~user was expanded, contract it in _paths
+ # if ~ or ~user was expanded, contract it in `_paths`
if head.startswith('~'):
self._paths = [_contractuser(expanded_path, head) for
expanded_path in expanded_paths]