We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e600b99 commit b03ec97Copy full SHA for b03ec97
xontrib/jedi.py
@@ -11,26 +11,24 @@
11
contextual_completer,
12
get_filter_function,
13
)
14
-
15
from xonsh.parsers.completion_context import CompletionContext
16
17
__all__ = ()
18
19
import jedi
20
21
22
XONSH_SPECIAL_TOKENS = {
23
- "?",
24
- "??",
25
- "$(",
26
- "${",
27
- "$[",
28
- "![",
29
- "!(",
30
- "@(",
31
- "@$(",
32
- "@",
33
- }
+ "?",
+ "??",
+ "$(",
+ "${",
+ "$[",
+ "![",
+ "!(",
+ "@(",
+ "@$(",
+ "@",
+}
34
35
36
XONSH_SPECIAL_TOKENS_FIRST = {tok[0] for tok in XONSH_SPECIAL_TOKENS}
0 commit comments