Wu, Zhenyu | 9360de9 | 2024-12-25 10:37:57 +0100 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Language: TI Code Composer Studio General Extension Language |
| 3 | " Document: https://downloads.ti.com/ccs/esd/documents/users_guide/ccs_debug-gel.html |
| 4 | " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu> |
| 5 | " Last Change: 2024 Dec 25 |
| 6 | |
| 7 | if exists("b:did_ftplugin") | finish | endif |
| 8 | let b:did_ftplugin = 1 |
| 9 | |
| 10 | setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,:// |
| 11 | setlocal commentstring=/*\ %s\ */ |
| 12 | |
| 13 | let b:undo_ftplugin = "setl commentstring< comments<" |