Skip to content

Commit 1815133

Browse files
committed
test
[ci skip]
1 parent 8b95b0f commit 1815133

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

external-deps/python-lsp-server/pylsp/plugins/jedi_completion.py

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spyder/plugins/editor/widgets/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ def insert_completion(self, completion, completion_position):
971971

972972
# Adjustments for file completions
973973
if kind == CompletionItemKind.FILE:
974-
special_chars = ['"', "'", '/']
974+
special_chars = ['"', "'", '/', '\\']
975975

976976
if any(
977977
[current_text.endswith(c) for c in special_chars]

0 commit comments

Comments
 (0)