├── .perlcriticrc ├── .shellcheckrc ├── .yamllint.yml ├── LICENSE ├── README.md ├── cmake.vim.in ├── extract-upper-case.pl ├── indent └── cmake.vim ├── modules └── Doxygen.json ├── syntax └── cmake.vim └── test ├── CMakeLists.txt ├── bracket-args-and-comment.cmake ├── bracket-args-and-comment.cmake.html.ref ├── command-as-args.cmake ├── command-as-args.cmake.html.ref ├── default-commands.vim ├── escaped-quotes.cmake ├── escaped-quotes.cmake.html.ref ├── folding-with-levels.cmake ├── folding-with-levels.cmake.html.ref-all ├── folding-with-levels.cmake.html.ref-inner ├── folding-with-levels.cmake.html.ref-middle ├── folding-with-levels.cmake.html.ref-outer ├── folding-with-levels.cmake.html.ref-unfolded ├── folding-with-levels.vim ├── generator-expression-not-plain-args.cmake ├── generator-expression-not-plain-args.cmake.html.ref ├── package-config-helpers.cmake ├── package-config-helpers.cmake.html.ref ├── run-test.sh ├── variable-as-varname.cmake ├── variable-as-varname.cmake.html.ref └── vimrc /.perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/.perlcriticrc -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- 1 | disable=SC2086,SC2181 2 | -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- 1 | --- 2 | line-length: 120 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/README.md -------------------------------------------------------------------------------- /cmake.vim.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/cmake.vim.in -------------------------------------------------------------------------------- /extract-upper-case.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/extract-upper-case.pl -------------------------------------------------------------------------------- /indent/cmake.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/indent/cmake.vim -------------------------------------------------------------------------------- /modules/Doxygen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/modules/Doxygen.json -------------------------------------------------------------------------------- /syntax/cmake.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/syntax/cmake.vim -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/bracket-args-and-comment.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/bracket-args-and-comment.cmake -------------------------------------------------------------------------------- /test/bracket-args-and-comment.cmake.html.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/bracket-args-and-comment.cmake.html.ref -------------------------------------------------------------------------------- /test/command-as-args.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/command-as-args.cmake -------------------------------------------------------------------------------- /test/command-as-args.cmake.html.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/command-as-args.cmake.html.ref -------------------------------------------------------------------------------- /test/default-commands.vim: -------------------------------------------------------------------------------- 1 | TOhtml 2 | exec "w! " . output 3 | qa! 4 | -------------------------------------------------------------------------------- /test/escaped-quotes.cmake: -------------------------------------------------------------------------------- 1 | string(REPLACE "\"" "'" ${FOO} ${BAR}) # a comment 2 | -------------------------------------------------------------------------------- /test/escaped-quotes.cmake.html.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/escaped-quotes.cmake.html.ref -------------------------------------------------------------------------------- /test/folding-with-levels.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/folding-with-levels.cmake -------------------------------------------------------------------------------- /test/folding-with-levels.cmake.html.ref-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/folding-with-levels.cmake.html.ref-all -------------------------------------------------------------------------------- /test/folding-with-levels.cmake.html.ref-inner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/folding-with-levels.cmake.html.ref-inner -------------------------------------------------------------------------------- /test/folding-with-levels.cmake.html.ref-middle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/folding-with-levels.cmake.html.ref-middle -------------------------------------------------------------------------------- /test/folding-with-levels.cmake.html.ref-outer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/folding-with-levels.cmake.html.ref-outer -------------------------------------------------------------------------------- /test/folding-with-levels.cmake.html.ref-unfolded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/folding-with-levels.cmake.html.ref-unfolded -------------------------------------------------------------------------------- /test/folding-with-levels.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/folding-with-levels.vim -------------------------------------------------------------------------------- /test/generator-expression-not-plain-args.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/generator-expression-not-plain-args.cmake -------------------------------------------------------------------------------- /test/generator-expression-not-plain-args.cmake.html.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/generator-expression-not-plain-args.cmake.html.ref -------------------------------------------------------------------------------- /test/package-config-helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/package-config-helpers.cmake -------------------------------------------------------------------------------- /test/package-config-helpers.cmake.html.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/package-config-helpers.cmake.html.ref -------------------------------------------------------------------------------- /test/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/run-test.sh -------------------------------------------------------------------------------- /test/variable-as-varname.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/variable-as-varname.cmake -------------------------------------------------------------------------------- /test/variable-as-varname.cmake.html.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/variable-as-varname.cmake.html.ref -------------------------------------------------------------------------------- /test/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pboettch/vim-cmake-syntax/HEAD/test/vimrc --------------------------------------------------------------------------------