vim-textobj-latex
vim-textobj-latex copied to clipboard
Vim text objects for LaTeX code
Often I want to format a paragraph such as this one: ``` \begin{align} ... \end{align} This is the paragraph I wish to format..... ``` So I added a text object...
Probably Vundle does not load in ftplugin subdirectories. Consider renaming to tex_textobj-latex.vim for example. At the moment the following serves: ``` if filereadable(expand("~/.vim/bundle/vim-textobj-latex/ftplugin/tex/textobj-latex.vim")) if has("autocmd") autocmd BufNewFile,BufRead *.tex execute ":source...
Great plugin. One question: How does the "a/iq" movement it interact with the other quote textobject plugins such as https://github.com/beloglazov/vim-textobj-quotes or https://github.com/reedes/vim-textobj-quote Will yours override the other ones when editing...