spacemacs/layers/+tools/lsp/packages.el
Thanh Vuong 27f1519a5a
[lsp] add option to bind commands to lsp-command-map
`lsp-use-upstream-bindings` set to `t` then Spacemacs will bind all
`lsp-command-map` behind `SPC m`, `,` and `M-m`. This way the bidings will be
managed by upstream `lsp-mode` which is documented at
https://emacs-lsp.github.io/lsp-mode/page/keybindings/.

Spacemacs only replaces the prefix `s-l` with `SPC m`. For example:

| lsp binding | Spacemacs binding                   |
|-------------+-------------------------------------|
| `s-l w s`   | `SPC m w s` or `, w s` or `M-m w s` |
2021-05-03 22:53:11 +02:00

85 lines
2.7 KiB
EmacsLisp

;;; packages.el --- Language Server Protocol Layer packages file for Spacemacs
;;
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
;;
;; Author: Fangrui Song <i@maskray.me>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(defconst lsp-packages
'(
lsp-mode
(lsp-ui :toggle lsp-use-lsp-ui)
(helm-lsp :requires helm)
(lsp-ivy :requires ivy)
(lsp-treemacs :requires treemacs)
(lsp-origami :requires lsp-mode)
popwin))
(defun lsp/init-lsp-mode ()
(use-package lsp-mode
:defer t
:config
(progn
(if lsp-use-upstream-bindings
(spacemacs/lsp-bind-upstream-keys)
(spacemacs/lsp-bind-keys))
(setq lsp-prefer-capf t)
(add-hook 'lsp-after-open-hook (lambda ()
"Setup xref jump handler"
(spacemacs//setup-lsp-jump-handler))))))
(defun lsp/init-lsp-ui ()
(use-package lsp-ui
:defer t
:config
(progn
(if lsp-remap-xref-keybindings
(progn (define-key lsp-ui-mode-map [remap xref-find-definitions] #'lsp-ui-peek-find-definitions)
(define-key lsp-ui-mode-map [remap xref-find-references] #'lsp-ui-peek-find-references)))
(spacemacs/lsp-define-key
lsp-ui-peek-mode-map
"h" #'lsp-ui-peek--select-prev-file
"j" #'lsp-ui-peek--select-next
"k" #'lsp-ui-peek--select-prev
"l" #'lsp-ui-peek--select-next-file
)
)))
(defun lsp/init-helm-lsp ()
(use-package helm-lsp :defer t))
(defun lsp/init-lsp-ivy ()
(use-package lsp-ivy :defer t))
(defun lsp/init-lsp-treemacs ()
(use-package lsp-treemacs :defer t))
(defun lsp/init-lsp-origami ()
(use-package lsp-origami
:defer t
:init
(add-hook 'lsp-after-open-hook #'lsp-origami-try-enable)))
(defun lsp/pre-init-popwin ()
(spacemacs|use-package-add-hook popwin
:post-config
(push '("*lsp-help*" :dedicated t :position bottom :stick t :noselect t :height 0.4)
popwin:special-display-config)))