diff options
author | Chris <[email protected]> | 2021-03-27 01:04:04 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-27 01:04:04 -0400 |
commit | 56f8d4ccbd2380838207df60cf36e60710235e77 (patch) | |
tree | 18f1b9dd587abb65ef5ac0d8b1e57ce4d8a4e5ac | |
parent | 373ce124227c6ec4490f25718c221ff27a06989d (diff) | |
parent | 1e823abc052175b3247c1804e2cef83ec7e43001 (diff) |
Merge branch 'master' of github.com:ChristianChiarulli/nvcode
-rw-r--r-- | lua/nv-telescope/init.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/nv-telescope/init.lua b/lua/nv-telescope/init.lua index 4b035031..bcb2de67 100644 --- a/lua/nv-telescope/init.lua +++ b/lua/nv-telescope/init.lua @@ -39,6 +39,7 @@ require('telescope').setup { i = { ["<C-j>"] = actions.move_selection_next, ["<C-k>"] = actions.move_selection_previous, + ["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist, -- To disable a keymap, put [map] = false -- So, to not map "<C-n>", just put -- ["<c-x>"] = false, @@ -55,7 +56,8 @@ require('telescope').setup { }, n = { ["<C-j>"] = actions.move_selection_next, - ["<C-k>"] = actions.move_selection_previous + ["<C-k>"] = actions.move_selection_previous, + ["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist, -- ["<C-i>"] = my_cool_custom_action, } } |