From 7275c6930ef551f9eed1c4c815367485a8bb3f6a Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 19 Dec 2019 19:21:39 +0100 Subject: [PATCH] Emacs: Keybinding for finding references. --- init/programming/c++.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/init/programming/c++.el b/init/programming/c++.el index 452013b..e4968c8 100644 --- a/init/programming/c++.el +++ b/init/programming/c++.el @@ -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)