File tree 8 files changed +15
-14
lines changed
8 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 1
1
* Changelog
2
- ** Master branch
2
+ ** Release 7.0
3
+ * Support for new language server - Shttps://github.com/lighttiger2505/sqls (thanks to @v2okimochi)
4
+ * Provided automatic installers for elp/css/bash/purescript(thanks to @kiennq)
3
5
* Configurable Rust Analyzer inlay face via ~lsp-rust-analyzer-inlay-face~.
4
6
* Add ~lsp-headerline-breadcrumb-mode~ which shows a breadcrumb with the document symbols on headerline when enabled.
5
7
* Add ~lsp-modeline-code-actions-mode~ which shows code actions on modeline when enabled.
29
31
can be enabled via =lsp-headerline-breadcrumb-enable=
30
32
* Migrated lsp-mode to use plists(thanks to @yyoncho, @kiennq and @ericdallo).
31
33
* lsp-diagnostics-modeline: perf improvement (thanks to @kiennq)
32
-
33
34
** Release 6.3
34
35
* Implemented ~company-capf~ integration. ~company-lsp~ is no longer supported.
35
36
* Dropped support for dart language server in favour of dart SDK(breaking)
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ The codelens can be found at https://github.com/golang/tools/blob/4d5ea46c79fe3b
114
114
:type (lsp-gopls--defcustom-available-as-alist-type lsp-gopls-available-codelens)
115
115
:group 'lsp-gopls
116
116
:risky t
117
- :package-version '(lsp-mode " 6.4 " ))
117
+ :package-version '(lsp-mode " 7.0 " ))
118
118
119
119
(lsp-register-custom-settings
120
120
'((" gopls.usePlaceholders" lsp-gopls-use-placeholders t )
Original file line number Diff line number Diff line change 66
66
(defcustom lsp-haxe-hxml " build.hxml"
67
67
" The compile file for the haxe project."
68
68
:type 'file
69
- :package-version '(lsp-mode . " 6.4 " ))
69
+ :package-version '(lsp-mode . " 7.0 " ))
70
70
71
71
; ; https://github.com/emacs-lsp/lsp-mode/blob/150a933694349df960dc8fd7a15e04f5727e6433/lsp-rust.el#L251
72
72
(lsp-defun lsp-clients--haxe-processStart (_workspace (&haxe:ProcessStartNotification :title ))
Original file line number Diff line number Diff line change 5
5
;; Author: Vibhav Pant, Fangrui Song, Ivan Yonchovski
6
6
;; Keywords: languages
7
7
;; Package-Requires: ((emacs "25.1") (dash "2.14.1") (dash-functional "2.14.1") (f "0.20.0") (ht "2.0") (spinner "1.7.3") (markdown-mode "2.3") (lv "0"))
8
- ;; Version: 6.3.1
8
+ ;; Version: 7.0
9
9
10
10
;; URL: https://github.com/emacs-lsp/lsp-mode
11
11
;; This program is free software; you can redistribute it and/or modify
@@ -606,7 +606,7 @@ This flag affects only server which do not support incremental update."
606
606
"If non-nil, enable the `dap-auto-configure-mode`."
607
607
:type 'boolean
608
608
:group 'lsp-mode
609
- :package-version '(lsp-mode . "6.4 "))
609
+ :package-version '(lsp-mode . "7.0 "))
610
610
611
611
(defcustom lsp-links-check-internal 0.1
612
612
"The interval for updating document links."
Original file line number Diff line number Diff line change @@ -372,14 +372,14 @@ should be the python executable. This option will be prioritized over
372
372
Can hit performance, as well as lsp-mode implements its own fuzzy search on completion items."
373
373
:type 'boolean
374
374
:group 'lsp-pyls
375
- :package-version '(lsp-mode . " 6.4 " ))
375
+ :package-version '(lsp-mode . " 7.0 " ))
376
376
377
377
(defcustom lsp-pyls-plugins-jedi-completion-include-class-objects t
378
378
" If enabled, adds class objects to completion in order to avoid snippet with init args.
379
379
Has no effect if `lsp-pyls-plugins-jedi-completion-include-params' is disabled. Requires pyls >= 0.33.0"
380
380
:type 'boolean
381
381
:group 'lsp-pyls
382
- :package-version '(lsp-mode . " 6.4 " ))
382
+ :package-version '(lsp-mode . " 7.0 " ))
383
383
384
384
(defcustom lsp-pyls-rename-backend 'jedi
385
385
" Choose renaming backend. Jedi is preferred but only works for python >= 3.6 and pyls >= 0.32.0
@@ -388,7 +388,7 @@ So it will rename only references it can find."
388
388
:type '(choice (const :tag " jedi" jedi)
389
389
(const :tag " rope" rope))
390
390
:group 'lsp-pyls
391
- :package-version '(lsp-mode . " 6.4 " ))
391
+ :package-version '(lsp-mode . " 7.0 " ))
392
392
393
393
394
394
(defun lsp-pyls-get-pyenv-environment ()
Original file line number Diff line number Diff line change @@ -460,7 +460,7 @@ The command should include `--message=format=json` or similar option."
460
460
" The face to use for the Rust Analyzer inlays."
461
461
:type 'face
462
462
:group 'lsp-rust
463
- :package-version '(lsp-mode . " 6.4 " ))
463
+ :package-version '(lsp-mode . " 7.0 " ))
464
464
465
465
(defun lsp-rust-analyzer--make-init-options ()
466
466
" Init options for rust-analyzer"
Original file line number Diff line number Diff line change 30
30
" LSP support for the PHP programming language, using serenata"
31
31
:group 'lsp-mode
32
32
:link '(url-link " https://gitlab.com/Serenata/Serenata" )
33
- :package-version '(lsp-mode . " 6.4 " ))
33
+ :package-version '(lsp-mode . " 7.0 " ))
34
34
35
35
(defcustom lsp-serenata-server-path
36
36
" serenata.phar"
Original file line number Diff line number Diff line change 30
30
" LSP support for SQL, using sqls"
31
31
:group 'lsp-mode
32
32
:link '(url-link " https://github.com/lighttiger2505/sqls" )
33
- :package-version `(lsp-mode . " 6.4 " ))
33
+ :package-version `(lsp-mode . " 7.0 " ))
34
34
35
35
(defcustom lsp-sqls-server " sqls"
36
36
" Path to the `sqls` binary."
37
37
:group 'lsp-sqls
38
38
:risky t
39
39
:type 'file
40
- :package-version `(lsp-mode . " 6.4 " ))
40
+ :package-version `(lsp-mode . " 7.0 " ))
41
41
42
42
(defcustom lsp-sqls-workspace-config-path " workspace"
43
43
" If non-nil then setup workspace configuration with json file path."
44
44
:group 'lsp-sqls
45
45
:risky t
46
46
:type '(choice (const " workspace" )
47
47
(const " root" ))
48
- :package-version `(lsp-mode . " 6.4 " ))
48
+ :package-version `(lsp-mode . " 7.0 " ))
49
49
50
50
(defun lsp-sqls--make-launch-cmd ()
51
51
(-let [base `(, lsp-sqls-server )]
You can’t perform that action at this time.
0 commit comments