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 4343Markdown
4444 Editor Shows Features for Language Markdown example.md Diagnostics=`Color` is misspelt
4545
46- Python
46+ Python (pylsp)
4747 ${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 }
4953
5054R
5155 ${def } = Set Variable xpath:(//span[contains(@class, 'cm-variable')][contains(text(), 'fib')])[last()]
7074 Editor Shows Features for Language YAML example.yaml Diagnostics=duplicate key
7175
7276*** 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+
7383Editor Shows Features for Language
7484 [Arguments] ${Language } ${file } &{features }
7585 Prepare File for Editing ${Language } editor ${file }
Original file line number Diff line number Diff line change 22
33from itertools import (accumulate , chain ); accumulate
44
5-
65# fibs :: Integer :: [Integer]
76def fibs (n ):
87 '''An accumulation of the first n integers in
@@ -27,5 +26,6 @@ def go(ab, _):
2726 print (
2827 'First twenty: ' + repr (
2928 fibs (20 )
30- )
29+ ),
30+ result
3131 )
You can’t perform that action at this time.
0 commit comments