Bram Moolenaar | 2ecbe53 | 2022-07-29 21:36:21 +0100 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Language: XDG desktop entry |
| 3 | " Maintainer: Eisuke Kawashima ( e.kawaschima+vim AT gmail.com ) |
| 4 | " Last Change: 2022-07-26 |
Riley Bruins | 0a08306 | 2024-06-03 20:40:45 +0200 | [diff] [blame] | 5 | " 2024-05-24 by Riley Bruins <ribru17@gmail.com> ('commentstring') |
Bram Moolenaar | 2ecbe53 | 2022-07-29 21:36:21 +0100 | [diff] [blame] | 6 | |
| 7 | if exists('b:did_ftplugin') |
| 8 | finish |
| 9 | endif |
| 10 | let b:did_ftplugin = v:true |
| 11 | |
| 12 | setl comments=:# |
Riley Bruins | 0a08306 | 2024-06-03 20:40:45 +0200 | [diff] [blame] | 13 | setl commentstring=#\ %s |
Bram Moolenaar | 2ecbe53 | 2022-07-29 21:36:21 +0100 | [diff] [blame] | 14 | let b:undo_ftplugin = 'setl com< cms<' |