Emacs: Keybinding for finding references.

This commit is contained in:
tastytea 2019-12-19 19:21:39 +01:00
parent d281ab6166
commit 7275c6930e
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
;;; c++.el --- C++ settings. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-11-04T10:10:29+00:00>
;; Time-stamp: <2019-12-19T18:21:05+00:00>
;;; Commentary:
@ -111,7 +111,9 @@
:bind
(:map lsp-ui-mode-map
("M-." . lsp-ui-peek-find-definitions))
("M-." . lsp-ui-peek-find-definitions)
("C-M-." . lsp-ui-peek-find-references)
)
:hook
(lsp-mode . lsp-ui-mode)