File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 43
43
Markdown
44
44
Editor Shows Features for Language Markdown example.md Diagnostics=`Color` is misspelt
45
45
46
- Python
46
+ Python (pylsp)
47
47
${def } = Set Variable xpath:(//span[contains(@class, 'cm-variable')][contains(text(), 'fib')])[last()]
48
- Editor Shows Features for Language Python example.py Diagnostics=multiple spaces after keyword Jump to Definition=${def } Rename=${def }
48
+ Editor Shows Features for Server pylsp Python example.py Diagnostics=undefined name 'result' (pyflakes) Jump to Definition=${def } Rename=${def }
49
+
50
+ Python (pyright)
51
+ ${def } = Set Variable xpath:(//span[contains(@class, 'cm-variable')][contains(text(), 'fib')])[last()]
52
+ Editor Shows Features for Server pyright Python example.py Diagnostics=is not defined (Pyright) Jump to Definition=${def } Rename=${def }
49
53
50
54
R
51
55
${def } = Set Variable xpath:(//span[contains(@class, 'cm-variable')][contains(text(), 'fib')])[last()]
70
74
Editor Shows Features for Language YAML example.yaml Diagnostics=duplicate key
71
75
72
76
*** Keywords ***
77
+ Editor Shows Features for Server
78
+ [Arguments] ${server } ${Language } ${file } &{features }
79
+ Configure JupyterLab Plugin
80
+ ... {"language_servers": {"${server } ": {"priority": 10000}}
81
+ Editor Shows Features for Language ${Language } ${file } &{features }
82
+
73
83
Editor Shows Features for Language
74
84
[Arguments] ${Language } ${file } &{features }
75
85
Prepare File for Editing ${Language } editor ${file }
Original file line number Diff line number Diff line change 2
2
3
3
from itertools import (accumulate , chain ); accumulate
4
4
5
-
6
5
# fibs :: Integer :: [Integer]
7
6
def fibs (n ):
8
7
'''An accumulation of the first n integers in
@@ -27,5 +26,6 @@ def go(ab, _):
27
26
print (
28
27
'First twenty: ' + repr (
29
28
fibs (20 )
30
- )
29
+ ),
30
+ result
31
31
)
You can’t perform that action at this time.
0 commit comments