1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
local M = {}
M.config = function()
options.builtin.compe = {
active = true,
on_config_done = nil,
autocomplete = true,
debug = false,
min_length = 1,
preselect = "enable",
throttle_time = 80,
source_timeout = 200,
incomplete_delay = 400,
max_abbr_width = 100,
max_kind_width = 100,
max_menu_width = 100,
documentation = {
border = "single",
winhighlight = "NormalFloat:CompeDocumentation,FloatBorder:CompeDocumentationBorder",
max_width = 120,
min_width = 60,
max_height = math.floor(vim.o.lines * 0.3),
min_height = 1,
},
-- documentation = true,
source = {
path = { kind = " (Path)" },
buffer = { kind = " (Buffer)" },
calc = { kind = " (Calc)" },
vsnip = { kind = " (Snippet)" },
nvim_lsp = { kind = " (LSP)" },
nvim_lua = false,
spell = { kind = " (Spell)" },
tags = false,
vim_dadbod_completion = false,
snippets_nvim = false,
ultisnips = false,
treesitter = false,
emoji = { kind = " ﲃ (Emoji)", filetypes = { "markdown", "text" } },
-- for emoji press : (idk if that in compe tho)
},
keymap = {
values = {
insert_mode = {
-- ["<Tab>"] = { 'pumvisible() ? "<C-n>" : "<Tab>"', { silent = true, noremap = true, expr = true } },
-- ["<S-Tab>"] = { 'pumvisible() ? "<C-p>" : "<S-Tab>"', { silent = true, noremap = true, expr = true } },
["<C-Space>"] = {
"compe#complete()",
{ silent = true, noremap = true, expr = true },
},
["<C-e>"] = {
"compe#close('<C-e>')",
{ silent = true, noremap = true, expr = true },
},
["<C-f>"] = {
"compe#scroll({ 'delta': +4 })",
{ silent = true, noremap = true, expr = true },
},
["<C-d>"] = {
"compe#scroll({ 'delta': -4 })",
{ silent = true, noremap = true, expr = true },
},
},
},
opts = {
insert_mode = { noremap = true, silent = true, expr = true },
},
},
}
end
M.setup = function()
vim.g.vsnip_snippet_dir = options.vsnip_dir
local compe = require "compe"
compe.setup(options.builtin.compe)
local t = function(str)
return vim.api.nvim_replace_termcodes(str, true, true, true)
end
local check_back_space = function()
local col = vim.fn.col "." - 1
if col == 0 or vim.fn.getline("."):sub(col, col):match "%s" then
return true
else
return false
end
end
local is_emmet_active = function()
local clients = vim.lsp.buf_get_clients()
for _, client in pairs(clients) do
if client.name == "emmet_ls" then
return true
end
end
return false
end
-- Use (s-)tab to:
--- move to prev/next item in completion menuone
--- jump to prev/next snippet's placeholder
_G.tab_complete = function()
if vim.fn.pumvisible() == 1 then
return t "<C-n>"
elseif vim.fn.call("vsnip#jumpable", { 1 }) == 1 then
return t "<Plug>(vsnip-jump-next)"
elseif check_back_space() then
return t "<Tab>"
elseif is_emmet_active() then
return vim.fn["compe#complete"]()
else
return t "<Tab>"
end
end
_G.s_tab_complete = function()
if vim.fn.pumvisible() == 1 then
return t "<C-p>"
elseif vim.fn.call("vsnip#jumpable", { -1 }) == 1 then
return t "<Plug>(vsnip-jump-prev)"
else
return t "<S-Tab>"
end
end
local keymap = require "keymappings"
keymap.load(options.builtin.compe.keymap.values, options.builtin.compe.keymap.opts)
vim.api.nvim_set_keymap("i", "<Tab>", "v:lua.tab_complete()", { expr = true })
vim.api.nvim_set_keymap("s", "<Tab>", "v:lua.tab_complete()", { expr = true })
vim.api.nvim_set_keymap("i", "<S-Tab>", "v:lua.s_tab_complete()", { expr = true })
vim.api.nvim_set_keymap("s", "<S-Tab>", "v:lua.s_tab_complete()", { expr = true })
if options.builtin.compe.on_config_done then
options.builtin.compe.on_config_done(compe)
end
end
return M
|