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