neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

karel.vim (396B)


      1 " Vim filetype plugin file
      2 " Language:    KAREL
      3 " Last Change: 2024-11-18
      4 " Maintainer:  Kirill Morozov <kirill@robotix.pro>
      5 " Credits:     Patrick Meiser-Knosowski for the initial implementation.
      6 
      7 if exists("b:did_ftplugin")
      8  finish
      9 endif
     10 let b:did_ftplugin = 1
     11 
     12 setlocal comments=:--
     13 setlocal commentstring=--\ %s
     14 setlocal suffixesadd+=.kl,.KL
     15 
     16 let b:undo_ftplugin = "setlocal com< cms< sua<"