Five more plugins from lite-xl-plugins @ 31eef29, all default VSCode behaviors: - selectionhighlight: highlights other occurrences of the selected word - bracketmatch: highlights the bracket matching the one under the cursor - colorpreview: inline swatches for #hex/rgb()/hsl() color literals - navigate: Go Back / Go Forward cursor history (alt+left/right) - editorconfig: applies .editorconfig files; vendored as the whole upstream directory (parser + test harness, lite-xl test editorconfig); builds on the bundled trimwhitespace plugin All depend on core only (editorconfig additionally on trimwhitespace, already shipped). Verified against the built package: all plugins load, navigate registers its commands, and an .editorconfig with indent_size = 2 is applied to an opened file. Pinned to lite-xl-plugins @ 31eef29 (see debian/extra/README.source).
72 lines
884 B
Plaintext
72 lines
884 B
Plaintext
; test { and }
|
|
|
|
root=true
|
|
|
|
; word choice
|
|
[*.{py,js,html}]
|
|
choice=true
|
|
|
|
; single choice
|
|
[{single}.b]
|
|
choice=single
|
|
|
|
; empty choice
|
|
[{}.c]
|
|
empty=all
|
|
|
|
; choice with empty word
|
|
[a{b,c,}.d]
|
|
empty=word
|
|
|
|
; choice with empty words
|
|
[a{,b,,c,}.e]
|
|
empty=words
|
|
|
|
; no closing brace
|
|
[{.f]
|
|
closing=false
|
|
|
|
; nested braces
|
|
[{word,{also},this}.g]
|
|
nested=true
|
|
|
|
; nested braces, adjacent at start
|
|
[{{a,b},c}.k]
|
|
nested_start=true
|
|
|
|
; nested braces, adjacent at end
|
|
[{a,{b,c}}.l]
|
|
nested_end=true
|
|
|
|
; closing inside beginning
|
|
[{},b}.h]
|
|
closing=inside
|
|
|
|
; opening inside beginning
|
|
[{{,b,c{d}.i]
|
|
unmatched=true
|
|
|
|
; escaped comma
|
|
[{a\,b,cd}.txt]
|
|
comma=yes
|
|
|
|
; escaped closing brace
|
|
[{e,\},f}.txt]
|
|
closing=yes
|
|
|
|
; escaped backslash
|
|
[{g,\\,i}.txt]
|
|
backslash=yes
|
|
|
|
; patterns nested in braces
|
|
[{some,a{*c,b}[ef]}.j]
|
|
patterns=nested
|
|
|
|
; numeric braces
|
|
[{3..120}]
|
|
number=true
|
|
|
|
; alphabetical
|
|
[{aardvark..antelope}]
|
|
words=a
|