aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-02-01 13:22:37 -0600
committerToby Vincent <tobyv13@gmail.com>2023-02-01 13:22:37 -0600
commit208b4d3abdb9700b557c8a47a0e24be6f325354b (patch)
tree03810b9cc7a52e77ffd5a19724e0c98cc9c220ff
parentbe3c48db527a422332ca770f38370155965795de (diff)
revert(nvim): remove warning on telescope keymap
-rw-r--r--nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua b/nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua
index 416fdaa..242f59e 100644
--- a/nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua
+++ b/nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua
@@ -29,11 +29,6 @@ local M = {
mappings = {
i = {
["<Esc>"] = function(...)
- vim.notify(
- "You used `<Esc>` to close telescope. Try to use `<C-c>`!",
- vim.log.levels.WARN,
- { title = "Oops!" }
- )
require("telescope.actions").close(...)
end,
["<C-h>"] = function(...)