0
0
mirror of https://github.com/vim/vim.git synced 2025-07-24 10:45:12 -04:00
vim/runtime/indent/rnoweb.vim

37 lines
842 B
VimL
Raw Normal View History

2014-07-10 22:01:47 +02:00
" Vim indent file
" Language: Rnoweb
" Author: Jakson Alves de Aquino <jalvesaq@gmail.com>
2015-06-19 13:27:23 +02:00
" Last Change: Sun Mar 22, 2015 09:28AM
2014-07-10 22:01:47 +02:00
" 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()
2015-06-19 13:27:23 +02:00
let curline = getline(".")
if curline =~ '^<<.*>>=$' || curline =~ '^\s*@$'
2014-07-10 22:01:47 +02:00
return 0
endif
if search("^<<", "bncW") > search("^@", "bncW")
return s:RIndent()
endif
return s:TeXIndent()
endfunction
" vim: sw=2