16 lines
375 B
Lua
16 lines
375 B
Lua
-- update this configuration of nvim-surround
|
|
-- to handle {{ }} structure in ansible
|
|
-- I want to be able to add and delete those braces
|
|
local surround = require('nvim-surround')
|
|
|
|
surround.buffer_setup({
|
|
surrounds = {
|
|
['v'] = {
|
|
add = { '{{ ', ' }}' },
|
|
find = '{{[^}]-}}',
|
|
delete = '({{%s+)().+(%s+}})()$',
|
|
}
|
|
}
|
|
})
|
|
|