mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-11 04:22:41 +01:00
13 lines
289 B
Lua
13 lines
289 B
Lua
local pears = require "pears"
|
|
|
|
pears.setup(function(conf)
|
|
conf.preset "tag_matching"
|
|
|
|
conf.on_enter(function(pears_handle)
|
|
if vim.fn.pumvisible() == 1 then
|
|
return vim.fn["coc#_select_confirm"]()
|
|
else
|
|
pears_handle()
|
|
end
|
|
end)
|
|
end)
|