File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 103
103
* Add Assembly Language support.
104
104
* Add Autotools support
105
105
* Add Jsonnet support
106
+ * Add support for ~ada-ts-mode~.
106
107
** Release 8.0.0
107
108
* Add ~lsp-clients-angular-node-get-prefix-command~ to get the Angular server from another location which is still has ~/lib/node_modules~ in it.
108
109
* Set ~lsp-clients-angular-language-server-command~ after the first connection to speed up subsequent connections.
Original file line number Diff line number Diff line change 90
90
91
91
(lsp-register-client
92
92
(make-lsp-client :new-connection (lsp-stdio-connection lsp-ada-als-executable)
93
- :major-modes '(ada-mode )
93
+ :major-modes '(ada-mode ada-ts-mode )
94
94
:priority -1
95
95
:initialized-fn (lambda (workspace )
96
96
(with-lsp-workspace workspace
Original file line number Diff line number Diff line change @@ -794,6 +794,7 @@ Changes take effect only when a new session is started."
794
794
("^go\\.mod\\'" . "go.mod")
795
795
("^settings.json$" . "jsonc")
796
796
(ada-mode . "ada")
797
+ (ada-ts-mode . "ada")
797
798
(awk-mode . "awk")
798
799
(awk-ts-mode . "awk")
799
800
(nxml-mode . "xml")
@@ -5975,6 +5976,7 @@ Request codeAction/resolve for more info if server supports."
5975
5976
;; Taken from `dtrt-indent-mode'
5976
5977
'(
5977
5978
(ada-mode . ada-indent) ; Ada
5979
+ (ada-ts-mode . ada-ts-mode-indent-offset)
5978
5980
(c++-mode . c-basic-offset) ; C++
5979
5981
(c++-ts-mode . c-ts-mode-indent-offset)
5980
5982
(c-mode . c-basic-offset) ; C
You can’t perform that action at this time.
0 commit comments