You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
449 B
Lua
16 lines
449 B
Lua
return {
|
|
'preservim/vim-textobj-quote',
|
|
dependencies = { 'kana/vim-textobj-user' },
|
|
config = function()
|
|
vim.cmd [[
|
|
augroup textobj_quote
|
|
autocmd!
|
|
autocmd FileType markdown call textobj#quote#init()
|
|
autocmd FileType textile call textobj#quote#init()
|
|
autocmd FileType text call textobj#quote#init({'educate': 0})
|
|
augroup END
|
|
]]
|
|
end,
|
|
ft = { 'markdown', 'mkd', 'textile', 'tex', 'text' },
|
|
}
|