annotate runtime/ftplugin/asm.vim @ 23959:23cc161f0814
Added tag v8.2.2521 for changeset 41cf615ab57f8b32a1770744ecba0032b2f3b791
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 16 Feb 2021 22:30:04 +0100 |
parents |
661eb972cb22 |
children |
02939ae3aaca |
rev |
line source |
20753
|
1 " Vim filetype plugin file
|
|
2 " Language: asm
|
|
3 " Maintainer: Colin Caine <cmcaine at the common googlemail domain>
|
|
4 " Last Changed: 23 May 2020
|
|
5
|
|
6 if exists("b:did_ftplugin") | finish | endif
|
|
7
|
|
8 setl comments=:;,s1:/*,mb:*,ex:*/,://
|
|
9 setl commentstring=;%s
|
|
10
|
|
11 let b:did_ftplugin = 1
|