2018-03-16 00:38:24 +00:00
|
|
|
|
;;; funcs.el --- Language Server Protocol Layer functions file for Spacemacs
|
2018-02-19 03:53:07 +00:00
|
|
|
|
;;
|
2020-09-16 21:34:40 +00:00
|
|
|
|
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
|
2018-02-19 03:53:07 +00:00
|
|
|
|
;;
|
|
|
|
|
;; Author: Fangrui Song <i@maskray.me>
|
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
|
;;
|
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
|
;;
|
|
|
|
|
;;; License: GPLv3
|
|
|
|
|
|
2019-03-25 10:47:46 +00:00
|
|
|
|
(defun spacemacs//setup-lsp-jump-handler ()
|
2018-05-08 04:17:56 +00:00
|
|
|
|
"Set jump handler for LSP with the given MODE."
|
2019-03-25 10:47:46 +00:00
|
|
|
|
(add-to-list 'spacemacs-jump-handlers '(lsp-ui-peek-find-definitions :async t)))
|
2018-04-26 19:43:50 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
|
|
|
|
|
;; Key bindings
|
|
|
|
|
|
|
|
|
|
;; Used for lsp-ui-peek-mode, but may be able to use some spacemacs fn. instead?
|
|
|
|
|
(defun spacemacs/lsp-define-key (keymap key def &rest bindings)
|
|
|
|
|
"Define multiple key bindings with KEYMAP KEY DEF BINDINGS."
|
|
|
|
|
(interactive)
|
|
|
|
|
(while key
|
|
|
|
|
(define-key keymap (kbd key) def)
|
|
|
|
|
(setq key (pop bindings)
|
|
|
|
|
def (pop bindings))))
|
|
|
|
|
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(defun spacemacs/lsp-bind-keys ()
|
|
|
|
|
"Define key bindings for the lsp minor mode."
|
2019-12-23 15:38:07 +00:00
|
|
|
|
(cl-ecase lsp-navigation
|
2018-11-22 10:56:35 +00:00
|
|
|
|
('simple (spacemacs//lsp-bind-simple-navigation-functions "g"))
|
|
|
|
|
('peek (spacemacs//lsp-bind-peek-navigation-functions "g"))
|
|
|
|
|
('both
|
2019-04-14 08:47:21 +00:00
|
|
|
|
(spacemacs//lsp-bind-simple-navigation-functions "g")
|
|
|
|
|
(spacemacs//lsp-bind-peek-navigation-functions "G")))
|
2018-03-16 00:38:24 +00:00
|
|
|
|
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(spacemacs/set-leader-keys-for-minor-mode 'lsp-mode
|
2019-04-14 08:47:21 +00:00
|
|
|
|
;; format
|
2018-03-16 00:38:24 +00:00
|
|
|
|
"=b" #'lsp-format-buffer
|
2019-04-14 08:47:21 +00:00
|
|
|
|
"=r" #'lsp-format-region
|
2019-09-04 18:13:57 +00:00
|
|
|
|
"=o" #'lsp-organize-imports
|
|
|
|
|
;; code actions
|
|
|
|
|
"aa" #'lsp-execute-code-action
|
|
|
|
|
"af" #'spacemacs//lsp-action-placeholder
|
|
|
|
|
"ar" #'spacemacs//lsp-action-placeholder
|
|
|
|
|
"as" #'spacemacs//lsp-action-placeholder
|
2019-04-14 08:47:21 +00:00
|
|
|
|
;; goto
|
2019-09-04 18:13:57 +00:00
|
|
|
|
;; N.B. implementation and references covered by xref bindings / lsp provider...
|
2018-12-11 21:59:25 +00:00
|
|
|
|
"gt" #'lsp-find-type-definition
|
2018-11-22 10:56:35 +00:00
|
|
|
|
"gk" #'spacemacs/lsp-avy-goto-word
|
|
|
|
|
"gK" #'spacemacs/lsp-avy-goto-symbol
|
2018-09-20 15:59:40 +00:00
|
|
|
|
"gM" #'lsp-ui-imenu
|
2019-04-14 08:47:21 +00:00
|
|
|
|
;; help
|
2018-03-16 00:38:24 +00:00
|
|
|
|
"hh" #'lsp-describe-thing-at-point
|
2019-04-14 08:47:21 +00:00
|
|
|
|
;; jump
|
|
|
|
|
;; backend
|
2019-02-19 05:25:28 +00:00
|
|
|
|
"bd" #'lsp-describe-session
|
2019-09-04 18:13:57 +00:00
|
|
|
|
"br" #'lsp-workspace-restart
|
|
|
|
|
"bs" #'lsp-workspace-shutdown
|
2020-10-18 20:20:18 +00:00
|
|
|
|
"bv" #'lsp-version
|
2019-04-14 08:47:21 +00:00
|
|
|
|
;; refactor
|
2018-03-16 00:38:24 +00:00
|
|
|
|
"rr" #'lsp-rename
|
2019-04-14 08:47:21 +00:00
|
|
|
|
;; toggles
|
2018-03-16 00:38:24 +00:00
|
|
|
|
"Td" #'lsp-ui-doc-mode
|
|
|
|
|
"Ts" #'lsp-ui-sideline-mode
|
|
|
|
|
"TF" #'spacemacs/lsp-ui-doc-func
|
|
|
|
|
"TS" #'spacemacs/lsp-ui-sideline-symb
|
2019-04-14 08:47:21 +00:00
|
|
|
|
"TI" #'spacemacs/lsp-ui-sideline-ignore-duplicate
|
|
|
|
|
"Tl" #'lsp-lens-mode
|
|
|
|
|
;; folders
|
|
|
|
|
"Fs" #'lsp-workspace-folders-switch
|
|
|
|
|
"Fr" #'lsp-workspace-folders-remove
|
2019-09-04 18:13:57 +00:00
|
|
|
|
"Fa" #'lsp-workspace-folders-add
|
|
|
|
|
;; text/code
|
|
|
|
|
"xh" #'lsp-document-highlight
|
|
|
|
|
"xl" #'lsp-lens-show
|
2019-10-01 03:48:24 +00:00
|
|
|
|
"xL" #'lsp-lens-hide))
|
2018-03-16 00:38:24 +00:00
|
|
|
|
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(defun spacemacs//lsp-bind-simple-navigation-functions (prefix-char)
|
|
|
|
|
(spacemacs/set-leader-keys-for-minor-mode 'lsp-mode
|
2018-12-11 21:59:25 +00:00
|
|
|
|
(concat prefix-char "i") #'lsp-find-implementation
|
2018-09-20 15:59:40 +00:00
|
|
|
|
(concat prefix-char "d") #'xref-find-definitions
|
|
|
|
|
(concat prefix-char "r") #'xref-find-references
|
2019-04-14 08:47:21 +00:00
|
|
|
|
(concat prefix-char "e") #'lsp-treemacs-errors-list
|
2019-11-15 10:49:24 +00:00
|
|
|
|
(concat prefix-char "b") #'xref-pop-marker-stack)
|
2020-04-16 04:43:47 +00:00
|
|
|
|
(cond
|
|
|
|
|
((configuration-layer/package-usedp 'helm)
|
2019-09-04 18:13:57 +00:00
|
|
|
|
(spacemacs/set-leader-keys-for-minor-mode 'lsp-mode
|
2020-04-16 04:43:47 +00:00
|
|
|
|
(concat prefix-char "s") #'helm-lsp-workspace-symbol
|
|
|
|
|
(concat prefix-char "S") #'helm-lsp-global-workspace-symbol))
|
|
|
|
|
((configuration-layer/package-usedp 'ivy)
|
|
|
|
|
(spacemacs/set-leader-keys-for-minor-mode 'lsp-mode
|
|
|
|
|
(concat prefix-char "s") #'lsp-ivy-workspace-symbol
|
|
|
|
|
(concat prefix-char "S") #'lsp-ivy-global-workspace-symbol))
|
|
|
|
|
(t (spacemacs/set-leader-keys-for-minor-mode 'lsp-mode
|
|
|
|
|
(concat prefix-char "s") #'lsp-ui-find-workspace-symbol))))
|
2018-09-20 15:59:40 +00:00
|
|
|
|
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(defun spacemacs//lsp-bind-peek-navigation-functions (prefix-char)
|
|
|
|
|
(spacemacs/set-leader-keys-for-minor-mode 'lsp-mode
|
2018-09-20 15:59:40 +00:00
|
|
|
|
(concat prefix-char "i") #'lsp-ui-peek-find-implementation
|
|
|
|
|
(concat prefix-char "d") #'lsp-ui-peek-find-definitions
|
|
|
|
|
(concat prefix-char "r") #'lsp-ui-peek-find-references
|
|
|
|
|
(concat prefix-char "s") #'lsp-ui-peek-find-workspace-symbol
|
2019-09-04 18:13:57 +00:00
|
|
|
|
(concat prefix-char "S") #'lsp-treemacs-symbols
|
2019-11-15 10:49:24 +00:00
|
|
|
|
(concat prefix-char "b") #'lsp-ui-peek-jump-backward
|
2019-04-14 08:47:21 +00:00
|
|
|
|
(concat prefix-char "e") #'lsp-ui-flycheck-list
|
2018-09-20 15:59:40 +00:00
|
|
|
|
(concat prefix-char "n") #'lsp-ui-peek-jump-forward))
|
2018-03-16 00:38:24 +00:00
|
|
|
|
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(defun spacemacs//lsp-declare-prefixes-for-mode (mode)
|
|
|
|
|
"Define key binding prefixes for the specific MODE."
|
2019-06-24 15:05:51 +00:00
|
|
|
|
(unless (member mode lsp-layer--active-mode-list)
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(add-to-list 'lsp-layer--active-mode-list mode)
|
2019-06-24 15:05:51 +00:00
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "m=" "format")
|
2019-09-04 18:13:57 +00:00
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "ma" "code actions")
|
2019-06-24 15:05:51 +00:00
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "mb" "backend")
|
2019-09-04 18:13:57 +00:00
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "mF" "folder")
|
2019-06-24 15:05:51 +00:00
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "mg" "goto")
|
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "mG" "peek")
|
2019-09-04 18:13:57 +00:00
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "mh" "help")
|
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "mr" "refactor")
|
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "mT" "toggle")
|
|
|
|
|
(spacemacs/declare-prefix-for-mode mode "mx" "text/code")
|
2019-06-24 15:05:51 +00:00
|
|
|
|
(dolist (prefix '("mg" "mG"))
|
|
|
|
|
(spacemacs/declare-prefix-for-mode mode (concat prefix "h") "hierarchy")
|
|
|
|
|
(spacemacs/declare-prefix-for-mode mode (concat prefix "m") "members"))))
|
2018-11-22 10:56:35 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(defun spacemacs//lsp-bind-extensions-for-mode (mode
|
|
|
|
|
layer-name
|
|
|
|
|
backend-name
|
|
|
|
|
key
|
|
|
|
|
kind)
|
|
|
|
|
"Bind extensions under the appropriate prefix(es) for the major-mode MODE.
|
|
|
|
|
MODE should be a quoted symbol corresponding to a valid major mode.
|
2018-03-16 00:38:24 +00:00
|
|
|
|
|
2019-11-03 01:05:53 +00:00
|
|
|
|
LAYER-NAME is a string, the name of the layer
|
|
|
|
|
BACKEND-NAME is a string, the name of the backend that's set for the layer
|
2019-10-01 03:48:24 +00:00
|
|
|
|
KEY is a string corresponding to a key sequence
|
|
|
|
|
KIND is a quoted symbol corresponding to an extension defined using
|
|
|
|
|
`lsp-define-extensions'."
|
2019-12-23 15:38:07 +00:00
|
|
|
|
(cl-ecase lsp-navigation
|
2019-10-01 03:48:24 +00:00
|
|
|
|
('simple (spacemacs/set-leader-keys-for-major-mode mode
|
|
|
|
|
(concat "g" key)
|
|
|
|
|
(spacemacs//lsp-extension-name
|
|
|
|
|
layer-name backend-name "find" kind)))
|
|
|
|
|
('peek (spacemacs/set-leader-keys-for-major-mode mode
|
|
|
|
|
(concat "g" key)
|
|
|
|
|
(spacemacs//lsp-extension-name
|
|
|
|
|
layer-name backend-name "peek" kind)))
|
|
|
|
|
('both (spacemacs/set-leader-keys-for-major-mode mode
|
|
|
|
|
(concat "g" key)
|
|
|
|
|
(spacemacs//lsp-extension-name
|
|
|
|
|
layer-name backend-name "find" kind)
|
|
|
|
|
(concat "G" key)
|
|
|
|
|
(spacemacs//lsp-extension-name
|
|
|
|
|
layer-name backend-name "peek" kind)))))
|
2018-03-16 00:38:24 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(defun spacemacs/lsp-bind-extensions-for-mode (mode
|
|
|
|
|
layer-name
|
|
|
|
|
backend-name
|
|
|
|
|
key
|
|
|
|
|
kind
|
|
|
|
|
&rest bindings)
|
|
|
|
|
"Bind extensions under the appropriate prefix(es) for the major-mode MODE.
|
2018-03-16 00:38:24 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
MODE is a quoted symbol corresponding to a valid major mode.
|
2019-11-03 01:05:53 +00:00
|
|
|
|
LAYER-NAME is a string, the name of the layer
|
|
|
|
|
BACKEND-NAME is a string, the name of the backend that's set for the layer
|
2019-10-01 03:48:24 +00:00
|
|
|
|
KEY is a string corresponding to a key sequence
|
|
|
|
|
KIND is a quoted symbol corresponding to an extension defined using
|
|
|
|
|
`lsp-define-extensions'.
|
|
|
|
|
BINDINGS is other KEY and KIND to create other key bindings."
|
2018-03-16 00:38:24 +00:00
|
|
|
|
(while key
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(spacemacs//lsp-bind-extensions-for-mode mode layer-name backend-name key kind)
|
2018-03-16 00:38:24 +00:00
|
|
|
|
(setq key (pop bindings)
|
2019-10-01 03:48:24 +00:00
|
|
|
|
kind (pop bindings))))
|
2018-03-16 00:38:24 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
|
|
|
|
|
;; Extensions
|
|
|
|
|
|
|
|
|
|
(defun spacemacs/lsp-define-extensions (layer-name
|
|
|
|
|
backend-name
|
|
|
|
|
kind
|
|
|
|
|
request
|
|
|
|
|
&optional extra)
|
|
|
|
|
"Wrap backend-specific LSP extensions.
|
|
|
|
|
|
2019-11-03 01:05:53 +00:00
|
|
|
|
This function uses `lsp-find-custom' and `lsp-ui-peek-find-custom'.
|
2019-10-01 03:48:24 +00:00
|
|
|
|
The function names are defined in `spacemacs//lsp-extension-name.'"
|
|
|
|
|
(dolist (nav-mode '("find" "peek"))
|
|
|
|
|
(if extra
|
|
|
|
|
(spacemacs//lsp-define-custom-extension
|
|
|
|
|
layer-name backend-name nav-mode kind request extra)
|
|
|
|
|
(spacemacs//lsp-define-custom-extension
|
|
|
|
|
layer-name backend-name nav-mode kind request))))
|
2018-09-20 15:59:40 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(defun spacemacs//lsp-extension-name (layer-name backend-name nav-mode kind)
|
|
|
|
|
"Return the extension name.
|
|
|
|
|
|
|
|
|
|
Pattern is `spacemacs/<layer-name>-<backend-end>-<nav-mode>-<kind>'.
|
|
|
|
|
|
|
|
|
|
Examples of return name:
|
|
|
|
|
- spacemacs/c-c++-lsp-clangd-find-clangd-other-file
|
|
|
|
|
- spacemacs/c-c++-lsp-clangd-peek-clangd-other-file
|
|
|
|
|
|
2019-11-03 01:05:53 +00:00
|
|
|
|
LAYER-NAME is a string, the name of the layer
|
|
|
|
|
BACKEND-NAME is a string, the name of the backend that's set for the layer
|
2019-10-01 03:48:24 +00:00
|
|
|
|
NAV-MODE is a string with value `peek' or `find'
|
|
|
|
|
KIND is a quoted symbol corresponding to an extension defined using
|
|
|
|
|
`lsp-define-extensions'."
|
|
|
|
|
(intern
|
|
|
|
|
(concat "spacemacs/"
|
|
|
|
|
layer-name "-" backend-name "-" nav-mode "-" (symbol-name kind))))
|
|
|
|
|
|
|
|
|
|
(defun spacemacs//lsp-define-custom-extension (layer-name
|
|
|
|
|
backend-name
|
|
|
|
|
nav-mode
|
|
|
|
|
kind
|
|
|
|
|
request
|
|
|
|
|
&optional extra)
|
|
|
|
|
"Helper function to define custom LSP extensions.
|
|
|
|
|
|
2019-11-03 01:05:53 +00:00
|
|
|
|
LAYER-NAME is a string, the name of the layer
|
|
|
|
|
BACKEND-NAME is a string, the name of the backend that's set for the layer
|
2019-10-01 03:48:24 +00:00
|
|
|
|
NAV-MODE is a string with value `peek' or `find'
|
|
|
|
|
KIND is a quoted symbol corresponding to an extension defined using
|
|
|
|
|
`lsp-define-extensions'.
|
|
|
|
|
REQUEST is a string defining the request
|
2019-11-03 01:05:53 +00:00
|
|
|
|
EXTRA is an additional parameter that's passed to the LSP function"
|
2019-02-01 21:18:55 +00:00
|
|
|
|
(let ((lsp-extension-fn (if (equal nav-mode "find")
|
2019-04-14 08:47:21 +00:00
|
|
|
|
'lsp-find-locations
|
2018-09-20 15:59:40 +00:00
|
|
|
|
'lsp-ui-peek-find-custom))
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(extension-name (spacemacs//lsp-extension-name
|
|
|
|
|
layer-name backend-name nav-mode kind))
|
|
|
|
|
(extension-descriptor (format (concat nav-mode " %s")
|
|
|
|
|
(symbol-name kind))))
|
2018-09-20 15:59:40 +00:00
|
|
|
|
(if extra
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(defalias extension-name
|
|
|
|
|
`(lambda ()
|
|
|
|
|
,extension-descriptor
|
|
|
|
|
(interactive)
|
|
|
|
|
(funcall ',lsp-extension-fn ,request ',extra)))
|
|
|
|
|
(defalias extension-name
|
|
|
|
|
`(lambda ()
|
|
|
|
|
,extension-descriptor
|
|
|
|
|
(interactive)
|
|
|
|
|
(funcall ',lsp-extension-fn ,request))))))
|
2018-09-20 15:59:40 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
|
|
|
|
|
;; Utils
|
2018-09-20 15:59:40 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(defun spacemacs/lsp-ui-doc-func ()
|
|
|
|
|
"Toggle the function signature in the lsp-ui-doc overlay"
|
|
|
|
|
(interactive)
|
|
|
|
|
(setq lsp-ui-doc-include-signature (not lsp-ui-doc-include-signature)))
|
2018-11-22 10:56:35 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(defun spacemacs/lsp-ui-sideline-symb ()
|
|
|
|
|
"Toggle the symbol in the lsp-ui-sideline overlay.
|
|
|
|
|
(generally redundant in C modes)"
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(interactive)
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(setq lsp-ui-sideline-show-symbol (not lsp-ui-sideline-show-symbol)))
|
2018-11-22 10:56:35 +00:00
|
|
|
|
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(defun spacemacs/lsp-ui-sideline-ignore-duplicate ()
|
|
|
|
|
"Toggle ignore duplicates for lsp-ui-sideline overlay"
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(interactive)
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(setq lsp-ui-sideline-ignore-duplicate
|
|
|
|
|
(not lsp-ui-sideline-ignore-duplicate)))
|
2018-11-22 10:56:35 +00:00
|
|
|
|
|
2019-09-04 18:13:57 +00:00
|
|
|
|
(defun spacemacs//lsp-action-placeholder ()
|
|
|
|
|
(interactive)
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(message "Not supported yet... (to be implemented in 'lsp-mode')"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; ivy integration
|
2019-09-04 18:13:57 +00:00
|
|
|
|
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(defun spacemacs//lsp-avy-document-symbol (all)
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((line 0) (col 0) (w (selected-window))
|
2019-04-14 08:47:21 +00:00
|
|
|
|
(ccls (and (memq major-mode '(c-mode c++-mode objc-mode)) (eq c-c++-backend 'lsp-ccls)))
|
|
|
|
|
(start-line (1- (line-number-at-pos (window-start))))
|
|
|
|
|
(end-line (1- (line-number-at-pos (window-end))))
|
|
|
|
|
ranges point0 point1
|
|
|
|
|
candidates)
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char 1)
|
|
|
|
|
(cl-loop for loc in
|
2019-10-01 03:48:24 +00:00
|
|
|
|
(lsp--send-request
|
|
|
|
|
(lsp--make-request
|
|
|
|
|
"textDocument/documentSymbol"
|
|
|
|
|
`(:textDocument ,(lsp--text-document-identifier)
|
|
|
|
|
:all ,(if all t :json-false)
|
|
|
|
|
:startLine ,start-line :endLine ,end-line)))
|
|
|
|
|
for range = (if ccls
|
|
|
|
|
loc
|
|
|
|
|
(->> loc (gethash "location") (gethash "range")))
|
2019-04-14 08:47:21 +00:00
|
|
|
|
for range_start = (gethash "start" range)
|
|
|
|
|
for range_end = (gethash "end" range)
|
|
|
|
|
for l0 = (gethash "line" range_start)
|
|
|
|
|
for c0 = (gethash "character" range_start)
|
|
|
|
|
for l1 = (gethash "line" range_end)
|
|
|
|
|
for c1 = (gethash "character" range_end)
|
|
|
|
|
while (<= l0 end-line)
|
|
|
|
|
when (>= l0 start-line)
|
|
|
|
|
do
|
|
|
|
|
(forward-line (- l0 line))
|
|
|
|
|
(forward-char c0)
|
|
|
|
|
(setq point0 (point))
|
|
|
|
|
(forward-line (- l1 l0))
|
|
|
|
|
(forward-char c1)
|
|
|
|
|
(setq point1 (point))
|
|
|
|
|
(setq line l1 col c1)
|
|
|
|
|
(push `((,point0 . ,point1) . ,w) candidates)))
|
2018-11-22 10:56:35 +00:00
|
|
|
|
(avy-with avy-document-symbol
|
|
|
|
|
(avy--process candidates
|
2019-04-14 08:47:21 +00:00
|
|
|
|
(avy--style-fn avy-style)))))
|
2019-10-01 03:48:24 +00:00
|
|
|
|
|
|
|
|
|
(defun spacemacs/lsp-avy-goto-word ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(spacemacs//lsp-avy-document-symbol t))
|
|
|
|
|
|
|
|
|
|
(defun spacemacs/lsp-avy-goto-symbol ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(spacemacs//lsp-avy-document-symbol nil))
|