mirror of
https://github.com/neovim/neovim.git
synced 2026-01-04 18:37:02 +10:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
13 lines
296 B
VimL
13 lines
296 B
VimL
" Vim filetype plugin file
|
|
" Language: LLVM IR
|
|
" Last Change: 2024 Oct 22
|
|
" Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu> (invalid)
|
|
|
|
if exists("b:did_ftplugin") | finish | endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setl comments=:;
|
|
setl commentstring=;\ %s
|
|
|
|
let b:undo_ftplugin = "setl commentstring< comments<"
|