Mercurial > vim
view runtime/indent/rnoweb.vim @ 6417:77fe94082f53 v7.4.539
updated for version 7.4.539
Problem: Crash when computing buffer count. Problem with range for user
commands. Line range wrong in Visual area.
Solution: Avoid segfault in compute_buffer_local_count(). Check for
CMD_USER when checking type of range. (Marcin Szamotulski)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sun, 30 Nov 2014 14:50:16 +0100 |
parents | 0efec12f52ac |
children | 37828f7503c7 |
line wrap: on
line source
" Vim indent file " Language: Rnoweb " Author: Jakson Alves de Aquino <jalvesaq@gmail.com> " Last Change: Wed Jul 09, 2014 07:28PM " 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() if getline(".") =~ "^<<.*>>=$" return 0 endif if search("^<<", "bncW") > search("^@", "bncW") return s:RIndent() endif return s:TeXIndent() endfunction " vim: sw=2