2014-07-10 21:05:51 -07:00
|
|
|
" Vim indent file
|
|
|
|
" Language: Rnoweb
|
|
|
|
" Author: Jakson Alves de Aquino <jalvesaq@gmail.com>
|
2016-06-20 07:37:19 -07:00
|
|
|
" Homepage: https://github.com/jalvesaq/R-Vim-runtime
|
2017-04-16 08:42:41 -07:00
|
|
|
" Last Change: Fri Apr 15, 2016 10:58PM
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
|
|
|
|
" Only load this indent file when no other was loaded.
|
|
|
|
if exists("b:did_indent")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
runtime indent/tex.vim
|
2017-04-16 08:42:41 -07:00
|
|
|
|
|
|
|
function! s:NoTeXIndent()
|
|
|
|
return indent(line("."))
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
if &indentexpr == "" || &indentexpr == "GetRnowebIndent()"
|
|
|
|
let s:TeXIndent = function("s:NoTeXIndent")
|
|
|
|
else
|
|
|
|
let s:TeXIndent = function(substitute(&indentexpr, "()", "", ""))
|
|
|
|
endif
|
|
|
|
|
2018-10-29 15:38:41 -07:00
|
|
|
unlet! b:did_indent
|
2014-07-10 21:05:51 -07:00
|
|
|
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()
|
2015-04-03 07:44:18 -07:00
|
|
|
let curline = getline(".")
|
|
|
|
if curline =~ '^<<.*>>=$' || curline =~ '^\s*@$'
|
2014-07-10 21:05:51 -07:00
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
if search("^<<", "bncW") > search("^@", "bncW")
|
|
|
|
return s:RIndent()
|
|
|
|
endif
|
|
|
|
return s:TeXIndent()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" vim: sw=2
|