cleanup: Disable auto_preview for now

Till we clean this stuff up
This commit is contained in:
Simrat Grewal
2022-08-10 15:22:47 -07:00
parent 702a7d831b
commit 9ff33755cd

View File

@@ -14,14 +14,6 @@ local function setup_global_autocmd()
end end
end end
local function setup_buffer_autocmd()
if config.options.auto_preview then
vim.cmd "au CursorHold <buffer> lua require'symbols-outline.preview'.show()"
else
vim.cmd "au CursorMoved <buffer> lua require'symbols-outline.preview'.close()"
end
end
------------------------- -------------------------
-- STATE -- STATE
------------------------- -------------------------
@@ -123,8 +115,6 @@ local function setup_keymaps(bufnr)
end) end)
-- hover symbol -- hover symbol
map(config.options.keymaps.hover_symbol, require('symbols-outline.hover').show_hover) map(config.options.keymaps.hover_symbol, require('symbols-outline.hover').show_hover)
-- preview symbol
map(config.options.keymaps.toggle_preview, require('symbols-outline.preview').toggle)
-- rename symbol -- rename symbol
map(config.options.keymaps.rename_symbol, require('symbols-outline.rename').rename) map(config.options.keymaps.rename_symbol, require('symbols-outline.rename').rename)
-- code actions -- code actions
@@ -150,7 +140,6 @@ local function handler(response)
end, end,
}) })
setup_keymaps(M.view.bufnr) setup_keymaps(M.view.bufnr)
setup_buffer_autocmd()
local items = parser.parse(response) local items = parser.parse(response)