view runtime/indent/gitolite.vim @ 11150:9f9409588102 v8.0.0462

patch 8.0.0462: failure of an MS-Windows test may go unnoticed commit https://github.com/vim/vim/commit/b27523ff7ab3083c20c0f33415d890f978726c4f Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 16 14:04:51 2017 +0100 patch 8.0.0462: failure of an MS-Windows test may go unnoticed Problem: If an MS-Windows tests succeeds at first and then fails in a way it does not produce a test.out file it looks like the test succeeded. Solution: Delete the previous output file.
author Christian Brabandt <cb@256bit.org>
date Thu, 16 Mar 2017 14:15:04 +0100
parents 91e53bcb7946
children 63b0b7b79b25
line wrap: on
line source

" Vim indent file
" Language:	gitolite configuration
" URL:		https://github.com/tmatilai/gitolite.vim
" Maintainer:	Teemu Matilainen <teemu.matilainen@iki.fi>
" Last Change:	2011-12-24

if exists("b:did_indent")
  finish
endif
let b:did_indent = 1

setlocal autoindent
setlocal indentexpr=GetGitoliteIndent()
setlocal indentkeys=o,O,*<Return>,!^F,=repo,\",=

" Only define the function once.
if exists("*GetGitoliteIndent")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

function! GetGitoliteIndent()
  let prevln = prevnonblank(v:lnum-1)
  let pline = getline(prevln)
  let cline = getline(v:lnum)

  if cline =~ '^\s*\(C\|R\|RW\|RW+\|RWC\|RW+C\|RWD\|RW+D\|RWCD\|RW+CD\|-\)[ \t=]'
    return &sw
  elseif cline =~ '^\s*config\s'
    return &sw
  elseif pline =~ '^\s*repo\s' && cline =~ '^\s*\(#.*\)\?$'
    return &sw
  elseif cline =~ '^\s*#'
    return indent(prevln)
  elseif cline =~ '^\s*$'
    return -1
  else
    return 0
  endif
endfunction

let &cpo = s:cpo_save
unlet s:cpo_save