mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 19:25:11 -07:00
bd30ae53cb
indent/r.vim : change shiftwidth to 2 and minor bug fixes. indent/rhelp.vim : move the position of the test if the script was already sourced indent/rmd.vim : minor bug fix indent/rnoweb.vim : minor bug fix syntax/r.vim : minor bug fixes and improvement (distinguish = from ==)
37 lines
842 B
VimL
37 lines
842 B
VimL
" Vim indent file
|
|
" Language: Rnoweb
|
|
" Author: Jakson Alves de Aquino <jalvesaq@gmail.com>
|
|
" Last Change: Sun Mar 22, 2015 09:28AM
|
|
|
|
|
|
" Only load this indent file when no other was loaded.
|
|
if exists("b:did_indent")
|
|
finish
|
|
endif
|
|
runtime indent/tex.vim
|
|
let s:TeXIndent = function(substitute(&indentexpr, "()", "", ""))
|
|
unlet b:did_indent
|
|
runtime indent/r.vim
|
|
let s:RIndent = function(substitute(&indentexpr, "()", "", ""))
|
|
let b:did_indent = 1
|
|
|
|
setlocal indentkeys=0{,0},!^F,o,O,e,},=\bibitem,=\item
|
|
setlocal indentexpr=GetRnowebIndent()
|
|
|
|
if exists("*GetRnowebIndent")
|
|
finish
|
|
endif
|
|
|
|
function GetRnowebIndent()
|
|
let curline = getline(".")
|
|
if curline =~ '^<<.*>>=$' || curline =~ '^\s*@$'
|
|
return 0
|
|
endif
|
|
if search("^<<", "bncW") > search("^@", "bncW")
|
|
return s:RIndent()
|
|
endif
|
|
return s:TeXIndent()
|
|
endfunction
|
|
|
|
" vim: sw=2
|