mirror of
https://github.com/neovim/neovim.git
synced 2026-01-06 03:17:23 +10:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
14 lines
485 B
VimL
14 lines
485 B
VimL
" Vim filetype plugin file
|
|
" Language: TI Code Composer Studio General Extension Language
|
|
" Document: https://downloads.ti.com/ccs/esd/documents/users_guide/ccs_debug-gel.html
|
|
" Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu> (invalid)
|
|
" Last Change: 2024 Dec 25
|
|
|
|
if exists("b:did_ftplugin") | finish | endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
|
|
setlocal commentstring=/*\ %s\ */
|
|
|
|
let b:undo_ftplugin = "setl commentstring< comments<"
|