- created plugin

This commit is contained in:
Erik Mertens
2023-07-31 09:22:36 +02:00
commit 2dba6368a5
18 changed files with 2113 additions and 0 deletions

9
ftdetect/binder.vim Normal file
View File

@ -0,0 +1,9 @@
" Vim ftdetect file
" Language: Binder Language
" Maintainer: Andreas Louv <andreas@louv.dk>
" Last Change: Mar 20, 2019
" Version: 2
" URL: https://github.com/andlrc/rpgle.vim
au BufNewFile,BufRead *.binder setlocal filetype=binder
au BufNewFile,BufRead *.BND setlocal filetype=binder

15
ftdetect/clle.vim Normal file
View File

@ -0,0 +1,15 @@
if exists('b:current_syntax')
finish
endif
let b:current_syntax = 'clle'
" syntax case ignore
" syntax iskeyword @,48-57,192-255,-,%,*,/,_
" syntax keyword clleCommand CHGVAR
" highlight link clleCommand Function
au BufNewFile,BufRead *.clle setlocal filetype=clle

13
ftdetect/rpgle.vim Normal file
View File

@ -0,0 +1,13 @@
" Vim ftdetect file
" Language: Free-Form ILE RPG
" Maintainer: Andreas Louv <andreas@louv.dk>
" Last Change: Mar 20, 2019
" Version: 8
" URL: https://github.com/andlrc/rpgle.vim
au BufNewFile,BufRead *.rpgle setlocal filetype=rpgle
au BufNewFile,BufRead *.sqlrpgle setlocal filetype=rpgle
au BufNewFile,BufRead *.rpgleinc setlocal filetype=rpgle
au BufNewFile,BufRead *.RPGLE setlocal filetype=rpgle
au BufNewFile,BufRead *.SQLRPGLE setlocal filetype=rpgle
au BufNewFile,BufRead *.RPGLEINC setlocal filetype=rpgle