James McCoy | 2708c0b | 2024-03-20 14:55:05 -0400 | [diff] [blame] | 1 | " Language: Debian sources.list |
| 2 | " Maintainer: Debian Vim Maintainers <team+vim@tracker.debian.org> |
James McCoy | 0076ddc | 2024-05-25 14:56:49 -0400 | [diff] [blame] | 3 | " Last Change: 2024 May 25 |
James McCoy | 2708c0b | 2024-03-20 14:55:05 -0400 | [diff] [blame] | 4 | " License: Vim License |
| 5 | " URL: https://salsa.debian.org/vim-team/vim-debian/blob/main/ftplugin/deb822sources.vim |
| 6 | |
| 7 | if exists('b:did_ftplugin') |
| 8 | finish |
| 9 | endif |
| 10 | let b:did_ftplugin=1 |
| 11 | |
| 12 | setlocal comments=:# |
James McCoy | 0076ddc | 2024-05-25 14:56:49 -0400 | [diff] [blame] | 13 | setlocal commentstring=#\ %s |
James McCoy | 2708c0b | 2024-03-20 14:55:05 -0400 | [diff] [blame] | 14 | setlocal formatoptions-=t |
| 15 | |
| 16 | let b:undo_ftplugin = 'setlocal comments< commentstring< formatoptions<' |