Plan 9 from Bell Labs’s /usr/web/sources/contrib/stefanha/root/sys/lib/vim/vimfiles/indent.vim

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


" Vim support file to switch on loading indent files for file types
"
" Maintainer:	Bram Moolenaar <[email protected]>
" Last Change:	2005 Mar 28

if exists("did_indent_on")
  finish
endif
let did_indent_on = 1

augroup filetypeindent
  au FileType * call s:LoadIndent()
  func! s:LoadIndent()
    if exists("b:undo_indent")
      exe b:undo_indent
      unlet! b:undo_indent b:did_indent
    endif
    if expand("<amatch>") != ""
      if exists("b:did_indent")
	unlet b:did_indent
      endif
      runtime! indent/<amatch>.vim
    endif
  endfunc
augroup END

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to [email protected].