2014-07-10 21:05:51 -07:00
|
|
|
" Vim indent file
|
|
|
|
" Language: Rnoweb
|
2024-02-20 15:30:18 -07:00
|
|
|
" Maintainer: This runtime file is looking for a new maintainer.
|
|
|
|
" Former Maintainer: Jakson Alves de Aquino <jalvesaq@gmail.com>
|
|
|
|
" Former Repository: https://github.com/jalvesaq/R-Vim-runtime
|
|
|
|
" Last Change: 2024 Feb 27 07:17PM
|
|
|
|
" 2024 Feb 19 by Vim Project (announce adoption)
|
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
|
|
|
|
2023-04-23 06:22:55 -07:00
|
|
|
function s:NoTeXIndent()
|
2017-04-16 08:42:41 -07:00
|
|
|
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()
|
|
|
|
|
2023-02-28 01:34:27 -07:00
|
|
|
let b:undo_indent = "setl inde< indk<"
|
|
|
|
|
2014-07-10 21:05:51 -07:00
|
|
|
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
|