├── LICENSE ├── Readme.md ├── autoload ├── colortemplate.vim └── colortemplate │ ├── config.vim │ ├── importer.vim │ └── util.vim ├── doc ├── colortemplate.txt └── tags ├── ftdetect └── colortemplate.vim ├── ftplugin └── colortemplate.vim ├── import └── colortemplate │ ├── colorscheme.vim │ ├── colorstats.vim │ ├── generator │ ├── base.vim │ ├── template.vim │ ├── vim.vim │ └── vim9.vim │ ├── parser │ └── v3.vim │ └── version.vim ├── plugin └── colortemplate.vim ├── syntax ├── colortemplate-info.vim └── colortemplate.vim ├── templates ├── _bw.colortemplate ├── _common.colortemplate ├── _help.colortemplate ├── dark.colortemplate ├── dark_and_light.colortemplate └── light.colortemplate └── test ├── expected ├── test-93.vim ├── test1.vim ├── test22.vim ├── test24.vim ├── test27.vim ├── test28.vim ├── test29.txt ├── test29.vim ├── test30.txt ├── test30.vim ├── test300.vim ├── test301.colortemplate ├── test301.vim ├── test302.colortemplate ├── test302.vim ├── test303.vim ├── test304.vim ├── test305.vim ├── test306.vim ├── test307.vim ├── test308.vim ├── test309.vim ├── test310.vim ├── test311.vim ├── test312.vim ├── test313.vim ├── test314.vim ├── test315.vim ├── test316.vim ├── test317.vim ├── test318.vim ├── test319.vim ├── test320.vim ├── test321.vim ├── test322.vim ├── test323.vim ├── test34.vim ├── test37.vim ├── test38a.vim ├── test39a.vim ├── test41.vim ├── test42.vim ├── test44a.vim ├── test46a.vim ├── test48a.vim ├── test49a.vim ├── test5.vim ├── test50.vim ├── test51.vim ├── test52.vim ├── test53.vim ├── test65.vim ├── test68a.vim ├── test69.vim ├── test7.vim ├── test70.vim ├── test71.vim ├── test72.vim ├── test73.vim ├── test74.vim ├── test77.vim ├── test78.vim ├── test79.vim ├── test82.vim ├── test84.vim ├── test85.vim ├── test86.vim ├── test88.vim ├── test89.vim ├── test91.vim └── test94.vim ├── hook_install.sh ├── hook_uninstall.sh ├── pre-push.sh ├── runtests.vim ├── templates ├── test-93.colortemplate ├── test1.colortemplate ├── test22.colortemplate ├── test24.colortemplate ├── test27.colortemplate ├── test28.colortemplate ├── test29.colortemplate ├── test30.colortemplate ├── test300.colortemplate ├── test301.colortemplate ├── test302.colortemplate ├── test303.colortemplate ├── test304.colortemplate ├── test305.colortemplate ├── test306.colortemplate ├── test307.colortemplate ├── test308.colortemplate ├── test309.colortemplate ├── test310.colortemplate ├── test311.colortemplate ├── test312.colortemplate ├── test313.colortemplate ├── test314.colortemplate ├── test315.colortemplate ├── test316.colortemplate ├── test317.colortemplate ├── test318.colortemplate ├── test319.colortemplate ├── test320.colortemplate ├── test321.colortemplate ├── test322.colortemplate ├── test323.colortemplate ├── test34.colortemplate ├── test37.colortemplate ├── test38a.colortemplate ├── test38b.colortemplate ├── test38c.colortemplate ├── test39a.colortemplate ├── test39b.colortemplate ├── test41.colortemplate ├── test42.colortemplate ├── test44a.colortemplate ├── test44b.colortemplate ├── test46a.colortemplate ├── test46b.colortemplate ├── test48a.colortemplate ├── test48b.colortemplate ├── test48c.colortemplate ├── test49a.colortemplate ├── test49b.colortemplate ├── test49c.colortemplate ├── test5.colortemplate ├── test50.colortemplate ├── test51.colortemplate ├── test52.colortemplate ├── test53.colortemplate ├── test65.colortemplate ├── test68a.colortemplate ├── test68b ├── test69.colortemplate ├── test7.colortemplate ├── test70.colortemplate ├── test71.colortemplate ├── test72.colortemplate ├── test73.colortemplate ├── test74.colortemplate ├── test77.colortemplate ├── test78.colortemplate ├── test79.colortemplate ├── test82.colortemplate ├── test84.colortemplate ├── test85.colortemplate ├── test86.colortemplate ├── test88.colortemplate ├── test89.colortemplate ├── test91.colortemplate └── test94.colortemplate ├── test_colorscheme.vim ├── test_generator_template.vim ├── test_generator_vim.vim ├── test_generator_vim9.vim └── test_parser_v3.vim /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/Readme.md -------------------------------------------------------------------------------- /autoload/colortemplate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/autoload/colortemplate.vim -------------------------------------------------------------------------------- /autoload/colortemplate/config.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/autoload/colortemplate/config.vim -------------------------------------------------------------------------------- /autoload/colortemplate/importer.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/autoload/colortemplate/importer.vim -------------------------------------------------------------------------------- /autoload/colortemplate/util.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/autoload/colortemplate/util.vim -------------------------------------------------------------------------------- /doc/colortemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/doc/colortemplate.txt -------------------------------------------------------------------------------- /doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/doc/tags -------------------------------------------------------------------------------- /ftdetect/colortemplate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/ftdetect/colortemplate.vim -------------------------------------------------------------------------------- /ftplugin/colortemplate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/ftplugin/colortemplate.vim -------------------------------------------------------------------------------- /import/colortemplate/colorscheme.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/import/colortemplate/colorscheme.vim -------------------------------------------------------------------------------- /import/colortemplate/colorstats.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/import/colortemplate/colorstats.vim -------------------------------------------------------------------------------- /import/colortemplate/generator/base.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/import/colortemplate/generator/base.vim -------------------------------------------------------------------------------- /import/colortemplate/generator/template.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/import/colortemplate/generator/template.vim -------------------------------------------------------------------------------- /import/colortemplate/generator/vim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/import/colortemplate/generator/vim.vim -------------------------------------------------------------------------------- /import/colortemplate/generator/vim9.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/import/colortemplate/generator/vim9.vim -------------------------------------------------------------------------------- /import/colortemplate/parser/v3.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/import/colortemplate/parser/v3.vim -------------------------------------------------------------------------------- /import/colortemplate/version.vim: -------------------------------------------------------------------------------- 1 | vim9script 2 | 3 | export const VERSION = '3.0.0-beta10' 4 | -------------------------------------------------------------------------------- /plugin/colortemplate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/plugin/colortemplate.vim -------------------------------------------------------------------------------- /syntax/colortemplate-info.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/syntax/colortemplate-info.vim -------------------------------------------------------------------------------- /syntax/colortemplate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/syntax/colortemplate.vim -------------------------------------------------------------------------------- /templates/_bw.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/templates/_bw.colortemplate -------------------------------------------------------------------------------- /templates/_common.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/templates/_common.colortemplate -------------------------------------------------------------------------------- /templates/_help.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/templates/_help.colortemplate -------------------------------------------------------------------------------- /templates/dark.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/templates/dark.colortemplate -------------------------------------------------------------------------------- /templates/dark_and_light.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/templates/dark_and_light.colortemplate -------------------------------------------------------------------------------- /templates/light.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/templates/light.colortemplate -------------------------------------------------------------------------------- /test/expected/test-93.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test-93.vim -------------------------------------------------------------------------------- /test/expected/test1.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test1.vim -------------------------------------------------------------------------------- /test/expected/test22.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test22.vim -------------------------------------------------------------------------------- /test/expected/test24.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test24.vim -------------------------------------------------------------------------------- /test/expected/test27.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test27.vim -------------------------------------------------------------------------------- /test/expected/test28.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test28.vim -------------------------------------------------------------------------------- /test/expected/test29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test29.txt -------------------------------------------------------------------------------- /test/expected/test29.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test29.vim -------------------------------------------------------------------------------- /test/expected/test30.txt: -------------------------------------------------------------------------------- 1 | test30_transp_bg 2 | -------------------------------------------------------------------------------- /test/expected/test30.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test30.vim -------------------------------------------------------------------------------- /test/expected/test300.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test300.vim -------------------------------------------------------------------------------- /test/expected/test301.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test301.colortemplate -------------------------------------------------------------------------------- /test/expected/test301.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test301.vim -------------------------------------------------------------------------------- /test/expected/test302.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test302.colortemplate -------------------------------------------------------------------------------- /test/expected/test302.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test302.vim -------------------------------------------------------------------------------- /test/expected/test303.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test303.vim -------------------------------------------------------------------------------- /test/expected/test304.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test304.vim -------------------------------------------------------------------------------- /test/expected/test305.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test305.vim -------------------------------------------------------------------------------- /test/expected/test306.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test306.vim -------------------------------------------------------------------------------- /test/expected/test307.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test307.vim -------------------------------------------------------------------------------- /test/expected/test308.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test308.vim -------------------------------------------------------------------------------- /test/expected/test309.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test309.vim -------------------------------------------------------------------------------- /test/expected/test310.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test310.vim -------------------------------------------------------------------------------- /test/expected/test311.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test311.vim -------------------------------------------------------------------------------- /test/expected/test312.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test312.vim -------------------------------------------------------------------------------- /test/expected/test313.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test313.vim -------------------------------------------------------------------------------- /test/expected/test314.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test314.vim -------------------------------------------------------------------------------- /test/expected/test315.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test315.vim -------------------------------------------------------------------------------- /test/expected/test316.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test316.vim -------------------------------------------------------------------------------- /test/expected/test317.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test317.vim -------------------------------------------------------------------------------- /test/expected/test318.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test318.vim -------------------------------------------------------------------------------- /test/expected/test319.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test319.vim -------------------------------------------------------------------------------- /test/expected/test320.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test320.vim -------------------------------------------------------------------------------- /test/expected/test321.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test321.vim -------------------------------------------------------------------------------- /test/expected/test322.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test322.vim -------------------------------------------------------------------------------- /test/expected/test323.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test323.vim -------------------------------------------------------------------------------- /test/expected/test34.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test34.vim -------------------------------------------------------------------------------- /test/expected/test37.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test37.vim -------------------------------------------------------------------------------- /test/expected/test38a.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test38a.vim -------------------------------------------------------------------------------- /test/expected/test39a.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test39a.vim -------------------------------------------------------------------------------- /test/expected/test41.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test41.vim -------------------------------------------------------------------------------- /test/expected/test42.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test42.vim -------------------------------------------------------------------------------- /test/expected/test44a.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test44a.vim -------------------------------------------------------------------------------- /test/expected/test46a.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test46a.vim -------------------------------------------------------------------------------- /test/expected/test48a.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test48a.vim -------------------------------------------------------------------------------- /test/expected/test49a.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test49a.vim -------------------------------------------------------------------------------- /test/expected/test5.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test5.vim -------------------------------------------------------------------------------- /test/expected/test50.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test50.vim -------------------------------------------------------------------------------- /test/expected/test51.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test51.vim -------------------------------------------------------------------------------- /test/expected/test52.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test52.vim -------------------------------------------------------------------------------- /test/expected/test53.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test53.vim -------------------------------------------------------------------------------- /test/expected/test65.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test65.vim -------------------------------------------------------------------------------- /test/expected/test68a.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test68a.vim -------------------------------------------------------------------------------- /test/expected/test69.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test69.vim -------------------------------------------------------------------------------- /test/expected/test7.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test7.vim -------------------------------------------------------------------------------- /test/expected/test70.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test70.vim -------------------------------------------------------------------------------- /test/expected/test71.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test71.vim -------------------------------------------------------------------------------- /test/expected/test72.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test72.vim -------------------------------------------------------------------------------- /test/expected/test73.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test73.vim -------------------------------------------------------------------------------- /test/expected/test74.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test74.vim -------------------------------------------------------------------------------- /test/expected/test77.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test77.vim -------------------------------------------------------------------------------- /test/expected/test78.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test78.vim -------------------------------------------------------------------------------- /test/expected/test79.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test79.vim -------------------------------------------------------------------------------- /test/expected/test82.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test82.vim -------------------------------------------------------------------------------- /test/expected/test84.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test84.vim -------------------------------------------------------------------------------- /test/expected/test85.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test85.vim -------------------------------------------------------------------------------- /test/expected/test86.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test86.vim -------------------------------------------------------------------------------- /test/expected/test88.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test88.vim -------------------------------------------------------------------------------- /test/expected/test89.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test89.vim -------------------------------------------------------------------------------- /test/expected/test91.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test91.vim -------------------------------------------------------------------------------- /test/expected/test94.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/expected/test94.vim -------------------------------------------------------------------------------- /test/hook_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/hook_install.sh -------------------------------------------------------------------------------- /test/hook_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/hook_uninstall.sh -------------------------------------------------------------------------------- /test/pre-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/pre-push.sh -------------------------------------------------------------------------------- /test/runtests.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/runtests.vim -------------------------------------------------------------------------------- /test/templates/test-93.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test-93.colortemplate -------------------------------------------------------------------------------- /test/templates/test1.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test1.colortemplate -------------------------------------------------------------------------------- /test/templates/test22.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test22.colortemplate -------------------------------------------------------------------------------- /test/templates/test24.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test24.colortemplate -------------------------------------------------------------------------------- /test/templates/test27.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test27.colortemplate -------------------------------------------------------------------------------- /test/templates/test28.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test28.colortemplate -------------------------------------------------------------------------------- /test/templates/test29.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test29.colortemplate -------------------------------------------------------------------------------- /test/templates/test30.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test30.colortemplate -------------------------------------------------------------------------------- /test/templates/test300.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test300.colortemplate -------------------------------------------------------------------------------- /test/templates/test301.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test301.colortemplate -------------------------------------------------------------------------------- /test/templates/test302.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test302.colortemplate -------------------------------------------------------------------------------- /test/templates/test303.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test303.colortemplate -------------------------------------------------------------------------------- /test/templates/test304.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test304.colortemplate -------------------------------------------------------------------------------- /test/templates/test305.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test305.colortemplate -------------------------------------------------------------------------------- /test/templates/test306.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test306.colortemplate -------------------------------------------------------------------------------- /test/templates/test307.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test307.colortemplate -------------------------------------------------------------------------------- /test/templates/test308.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test308.colortemplate -------------------------------------------------------------------------------- /test/templates/test309.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test309.colortemplate -------------------------------------------------------------------------------- /test/templates/test310.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test310.colortemplate -------------------------------------------------------------------------------- /test/templates/test311.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test311.colortemplate -------------------------------------------------------------------------------- /test/templates/test312.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test312.colortemplate -------------------------------------------------------------------------------- /test/templates/test313.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test313.colortemplate -------------------------------------------------------------------------------- /test/templates/test314.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test314.colortemplate -------------------------------------------------------------------------------- /test/templates/test315.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test315.colortemplate -------------------------------------------------------------------------------- /test/templates/test316.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test316.colortemplate -------------------------------------------------------------------------------- /test/templates/test317.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test317.colortemplate -------------------------------------------------------------------------------- /test/templates/test318.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test318.colortemplate -------------------------------------------------------------------------------- /test/templates/test319.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test319.colortemplate -------------------------------------------------------------------------------- /test/templates/test320.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test320.colortemplate -------------------------------------------------------------------------------- /test/templates/test321.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test321.colortemplate -------------------------------------------------------------------------------- /test/templates/test322.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test322.colortemplate -------------------------------------------------------------------------------- /test/templates/test323.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test323.colortemplate -------------------------------------------------------------------------------- /test/templates/test34.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test34.colortemplate -------------------------------------------------------------------------------- /test/templates/test37.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test37.colortemplate -------------------------------------------------------------------------------- /test/templates/test38a.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test38a.colortemplate -------------------------------------------------------------------------------- /test/templates/test38b.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test38b.colortemplate -------------------------------------------------------------------------------- /test/templates/test38c.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test38c.colortemplate -------------------------------------------------------------------------------- /test/templates/test39a.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test39a.colortemplate -------------------------------------------------------------------------------- /test/templates/test39b.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test39b.colortemplate -------------------------------------------------------------------------------- /test/templates/test41.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test41.colortemplate -------------------------------------------------------------------------------- /test/templates/test42.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test42.colortemplate -------------------------------------------------------------------------------- /test/templates/test44a.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test44a.colortemplate -------------------------------------------------------------------------------- /test/templates/test44b.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test44b.colortemplate -------------------------------------------------------------------------------- /test/templates/test46a.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test46a.colortemplate -------------------------------------------------------------------------------- /test/templates/test46b.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test46b.colortemplate -------------------------------------------------------------------------------- /test/templates/test48a.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test48a.colortemplate -------------------------------------------------------------------------------- /test/templates/test48b.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test48b.colortemplate -------------------------------------------------------------------------------- /test/templates/test48c.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test48c.colortemplate -------------------------------------------------------------------------------- /test/templates/test49a.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test49a.colortemplate -------------------------------------------------------------------------------- /test/templates/test49b.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test49b.colortemplate -------------------------------------------------------------------------------- /test/templates/test49c.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test49c.colortemplate -------------------------------------------------------------------------------- /test/templates/test5.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test5.colortemplate -------------------------------------------------------------------------------- /test/templates/test50.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test50.colortemplate -------------------------------------------------------------------------------- /test/templates/test51.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test51.colortemplate -------------------------------------------------------------------------------- /test/templates/test52.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test52.colortemplate -------------------------------------------------------------------------------- /test/templates/test53.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test53.colortemplate -------------------------------------------------------------------------------- /test/templates/test65.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test65.colortemplate -------------------------------------------------------------------------------- /test/templates/test68a.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test68a.colortemplate -------------------------------------------------------------------------------- /test/templates/test68b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test68b -------------------------------------------------------------------------------- /test/templates/test69.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test69.colortemplate -------------------------------------------------------------------------------- /test/templates/test7.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test7.colortemplate -------------------------------------------------------------------------------- /test/templates/test70.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test70.colortemplate -------------------------------------------------------------------------------- /test/templates/test71.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test71.colortemplate -------------------------------------------------------------------------------- /test/templates/test72.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test72.colortemplate -------------------------------------------------------------------------------- /test/templates/test73.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test73.colortemplate -------------------------------------------------------------------------------- /test/templates/test74.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test74.colortemplate -------------------------------------------------------------------------------- /test/templates/test77.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test77.colortemplate -------------------------------------------------------------------------------- /test/templates/test78.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test78.colortemplate -------------------------------------------------------------------------------- /test/templates/test79.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test79.colortemplate -------------------------------------------------------------------------------- /test/templates/test82.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test82.colortemplate -------------------------------------------------------------------------------- /test/templates/test84.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test84.colortemplate -------------------------------------------------------------------------------- /test/templates/test85.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test85.colortemplate -------------------------------------------------------------------------------- /test/templates/test86.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test86.colortemplate -------------------------------------------------------------------------------- /test/templates/test88.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test88.colortemplate -------------------------------------------------------------------------------- /test/templates/test89.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test89.colortemplate -------------------------------------------------------------------------------- /test/templates/test91.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test91.colortemplate -------------------------------------------------------------------------------- /test/templates/test94.colortemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/templates/test94.colortemplate -------------------------------------------------------------------------------- /test/test_colorscheme.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/test_colorscheme.vim -------------------------------------------------------------------------------- /test/test_generator_template.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/test_generator_template.vim -------------------------------------------------------------------------------- /test/test_generator_vim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/test_generator_vim.vim -------------------------------------------------------------------------------- /test/test_generator_vim9.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/test_generator_vim9.vim -------------------------------------------------------------------------------- /test/test_parser_v3.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifepillar/vim-colortemplate/HEAD/test/test_parser_v3.vim --------------------------------------------------------------------------------