neovim

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

hgcommit.vim (496B)


      1 " Vim filetype plugin file
      2 " Language:	hg (Mercurial) commit file
      3 " Maintainer:	Ken Takata <kentkt at csc dot jp>
      4 " Last Change:	2025 Jun 8
      5 " Filenames:	hg-editor-*.txt
      6 " License:	VIM License
      7 " URL:		https://github.com/k-takata/hg-vim
      8 " 2025 Jun 18 by Vim Project: update commentstring option (#17480)
      9 
     10 if exists("b:did_ftplugin")
     11  finish
     12 endif
     13 let b:did_ftplugin = 1
     14 
     15 setlocal nomodeline
     16 
     17 setlocal comments=:HG\:
     18 setlocal commentstring=HG:\ %s
     19 
     20 let b:undo_ftplugin = 'setl modeline< com< cms<'