Trilowy | 6e91853 | 2024-10-13 19:08:30 +0200 | [diff] [blame] | 1 | " Vim filetype plugin file |
2 | " Language: Gleam | ||||
3 | " Maintainer: Trilowy (https://github.com/trilowy) | ||||
4 | " Last Change: 2024 Oct 13 | ||||
5 | |||||
6 | if exists('b:did_ftplugin') | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | setlocal comments=://,:///,://// | ||||
12 | setlocal commentstring=//\ %s | ||||
13 | |||||
14 | let b:undo_ftplugin = "setlocal comments< commentstring<" | ||||
15 | |||||
16 | " vim: sw=2 sts=2 et |