summaryrefslogtreecommitdiffstats
path: root/nvim
diff options
context:
space:
mode:
authorChiller Dragon <chillerdragon@gmail.com>2024-03-12 07:20:39 +0800
committerGitHub <noreply@github.com>2024-03-11 19:20:39 -0400
commite03a46b2f1ec26dd5b5eda1d8884df6f93a39490 (patch)
tree8f00b58070796d725360cbb1bf7125fbed969b2e /nvim
parentc2aa6e2cf1766129520de459e000010856ef4f99 (diff)
downloaddots-e03a46b2f1ec26dd5b5eda1d8884df6f93a39490.tar.gz
chore: rename <C-T> to <C-t> for consistency (#719)
Diffstat (limited to 'nvim')
-rw-r--r--nvim/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua
index 9216e60..c570c4c 100644
--- a/nvim/init.lua
+++ b/nvim/init.lua
@@ -456,7 +456,7 @@ require('lazy').setup({
-- Jump to the definition of the word under your cursor.
-- This is where a variable was first declared, or where a function is defined, etc.
- -- To jump back, press <C-T>.
+ -- To jump back, press <C-t>.
map('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition')
-- Find references for the word under your cursor.