Skip to content

Commit 3eefba5

Browse files
committed
something
1 parent 73b3df3 commit 3eefba5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

init.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,11 +539,11 @@ require('lazy').setup({
539539
-- Jump to the definition of the word under your cursor.
540540
-- This is where a variable was first declared, or where a function is defined, etc.
541541
-- To jump back, press <C-t>.
542-
map('grd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition')
542+
map('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition')
543543

544544
-- WARN: This is not Goto Definition, this is Goto Declaration.
545545
-- For example, in C this would take you to the header.
546-
map('grD', vim.lsp.buf.declaration, '[G]oto [D]eclaration')
546+
map('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration')
547547

548548
-- Fuzzy find all the symbols in your current document.
549549
-- Symbols are things like variables, functions, types, etc.

0 commit comments

Comments
 (0)