Put this in your .vimrc:
call plug#begin('~/.vim/plugged')
Plug 'matthijsk/motoman-inform-vim-syntax'
call plug#end()
For the first installation run:
:PlugInstall
Update every once in a while with:
:PlugUpdate
Extract and copy the folders
/ftdetect
, /ftplugin
and /syntax
into your
~/.vim/
or %USERPROFILE%\vimfiles\
directory.
Overwrite jbi.vim files from older installation.
Put the following in your .vimrc:
syntax on
filetype plugin on
It's nice to be able to quickly navigate through the source code, especially
if you make heavy use of CALL JOB:<JOBNAME>
statements. The current file
under the cursor can be opened using gf
or CTRL-W_CTRL-F
. This also work
on directory and will open the netrw plugin shipped with Vim. After a few gf
you can go back with Ctrl-O
(Older position) and go back in with Ctrl-I
(go back In).