llvm.vim 286 B

12345678910111213
  1. " Vim filetype plugin file
  2. " Language: LLVM IR
  3. " Last Change: 2024 Oct 22
  4. " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu>
  5. if exists("b:did_ftplugin") | finish | endif
  6. let b:did_ftplugin = 1
  7. setl comments=:;
  8. setl commentstring=;\ %s
  9. let b:undo_ftplugin = "setl commentstring< comments<"