Use more modern haxe package, closes #340

This commit is contained in:
Adam Stankiewicz
2021-06-09 11:49:01 +02:00
parent ff8c1d7674
commit af4d6aa3cf
10 changed files with 611 additions and 398 deletions

19
indent/haxe.vim Normal file
View File

@@ -0,0 +1,19 @@
if polyglot#init#is_disabled(expand('<sfile>:p'), 'haxe', 'indent/haxe.vim')
finish
endif
" Language: Haxe
" Maintainer: None! Wanna improve this?
" Last Change: 2007 Jan 22
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
" C indenting is not too bad.
setlocal cindent
setlocal cinoptions+=j1,J1
setlocal indentkeys=0{,0},0),0],!^F,o,O,e
let b:undo_indent = "setl cin<"