We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6367a18 commit 3d43be3Copy full SHA for 3d43be3
babi/prompt.py
@@ -110,7 +110,7 @@ def _tab(self) -> None:
110
111
def _complete_file(self) -> None:
112
# only allow completion at the end of the prompt or before a separator
113
- if self._x != len(self._s) and self._s[self._x] not in ("/", " "):
+ if self._x != len(self._s) and self._s[self._x] not in ('/', ' '):
114
return
115
partial = self._s[:self._x]
116
completions = glob.glob(f'{partial}*')
0 commit comments