Wu, Zhenyu | bc32bbd | 2024-11-14 22:55:36 +0100 | [diff] [blame] | 1 | " Vim filetype plugin file |
2 | " Language: LLVM IR | ||||
3 | " Last Change: 2024 Oct 22 | ||||
4 | " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu> | ||||
5 | |||||
6 | if exists("b:did_ftplugin") | finish | endif | ||||
7 | let b:did_ftplugin = 1 | ||||
8 | |||||
9 | setl comments=:; | ||||
10 | setl commentstring=;\ %s | ||||
11 | |||||
12 | let b:undo_ftplugin = "setl commentstring< comments<" |