10 lines
176 B
Lua
10 lines
176 B
Lua
local ls = require('luasnip')
|
|
|
|
ls.config.set_config {
|
|
-- return back into snippet
|
|
history = true,
|
|
|
|
-- update on text insert
|
|
updateevents = "TextChanged,TextChangedI"
|
|
}
|