" Vim ftplugin file " Language: Free-Form ILE RPG " Maintainer: Andreas Louv " Last Change: Dec 19, 2018 " Version: 22 " URL: https://github.com/andlrc/rpgle.vim if exists('b:did_ftplugin') finish endif let b:did_ftplugin = 1 setlocal iskeyword+=-,% setlocal shiftwidth=2 setlocal suffixesadd=.rpgle,.rpgleinc " setlocal include=^\\s*/\\%(include\\\|copy\\) setlocal include=^\s*\/\%(include\|copy\) setlocal includeexpr=../substitute(v:fname,',','.file/','') setlocal comments=s1:/*,mb:*,ex:*/,://,:* setlocal commentstring=//%s setlocal conceallevel=3 setlocal concealcursor=nvic setlocal tabstop=2 setlocal expandtab setlocal textwidth=100 setlocal colorcolumn=100 " ILE RPG is in case-sensitive setlocal tagcase=ignore smartcase ignorecase let b:match_words = '\:\:\:\' \ . ',\:\:\:\' \ . ',\:\:\:\' \ . ',\:\:\:\' \ . ',\:\:\:\' \ . ',\:\' \ . ',\:\:\' \ . ',\:\' \ . ',\:\' \ . ',\:\:\' \ . ',\:\<\%(likeds\|extname\|end-ds\)\>' " section jumping {{{ nnoremap