File tree Expand file tree Collapse file tree
src/autotools_language_server Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
22[project ]
33name = " autotools-language-server"
4- version = " 0.1.2 "
4+ version = " 0.1.3 "
55description = " Language server for configure.ac"
66readme = " README.md"
77# type_a | type_b
88requires-python = " >= 3.10"
99license = " GPL-3.0-or-later"
1010keywords = [" autotools" , " language server" ]
1111dependencies = [
12- " lsp-tree-sitter>=0.2.9 " ,
12+ " lsp-tree-sitter>=0.2.13 " ,
1313 " tree-sitter-autoconf>=0.0.1" ,
1414]
1515
Original file line number Diff line number Diff line change 22`importlib.metadata.version() <https://docs.python.org/3/library/importlib.metadata.html#distribution-versions>`_.
33"""
44
5- __version__ = "0.1.2 "
5+ __version__ = "0.1.3 "
Original file line number Diff line number Diff line change 1+ $nodes [0 ].type as $type |
12if $type == "macro_name" or ($complete and $type == "code" ) then
23 .properties
34else
45 {}
56end | to_entries [] |
6- if .key | (if $complete then startswith ($text ) else . == $text end ) then
7+ if .key | ($nodes [ 0 ] .text as $text | if $complete then startswith ($text ) else . == $text end ) then
78 {
89 label : .key ,
910 insert_text : .key ,
You can’t perform that action at this time.
0 commit comments