You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
local builtin = require 'telescope.builtin'
|
|
|
|
vim.keymap.set('n', '<C-s>', function()
|
|
builtin.current_buffer_fuzzy_find()
|
|
end)
|
|
-- Use vimacs version
|
|
--
|
|
-- vim.keymap.set('i', '<C-s>', function()
|
|
-- builtin.current_buffer_fuzzy_find()
|
|
--end)
|