view runtime/indent/gitolite.vim @ 23857:16a19892e22e v8.2.2470

patch 8.2.2470: popup_getoptions() does not get textprop from other tab Commit: https://github.com/vim/vim/commit/650264367725af6740b94cfd24d9f5caf0e91356 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 6 14:22:32 2021 +0100 patch 8.2.2470: popup_getoptions() does not get textprop from other tab Problem: Popup_getoptions() does not get textprop from other tab. Solution: use win_valid_any_tab(). (closes https://github.com/vim/vim/issues/7786)
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Feb 2021 14:30:04 +0100
parents 3b26420fc639
children 6dd88e45d47d
line wrap: on
line source

" Vim indent file
" Language:	gitolite configuration
" URL:		https://github.com/sitaramc/gitolite/blob/master/contrib/vim/indent/gitolite.vim
"	(https://raw.githubusercontent.com/sitaramc/gitolite/master/contrib/vim/indent/gitolite.vim)
" Maintainer:	Sitaram Chamarty <sitaramc@gmail.com>
" (former Maintainer:	Teemu Matilainen <teemu.matilainen@iki.fi>)
" Last Change:	2017 Oct 05

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 shiftwidth()
  elseif cline =~ '^\s*config\s'
    return shiftwidth()
  elseif cline =~ '^\s*option\s'
    return shiftwidth()
  elseif pline =~ '^\s*repo\s' && cline =~ '^\s*\(#.*\)\?$'
    return shiftwidth()
  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