From a6b3cc68427682a26266f29552b978538c8cbbbd Mon Sep 17 00:00:00 2001 From: Lyude Date: Sat, 25 Mar 2017 07:19:06 -0400 Subject: [PATCH] Add support for piglit's shader_test files (#292) This adds support for shader_test files in piglit, the open source test suite for OpenGL implementations such as mesa. More information on piglit can be found at: https://piglit.freedesktop.org/ --- doc/NERD_commenter.txt | 1 + plugin/NERD_commenter.vim | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/NERD_commenter.txt b/doc/NERD_commenter.txt index a728498..d37507a 100644 --- a/doc/NERD_commenter.txt +++ b/doc/NERD_commenter.txt @@ -1093,6 +1093,7 @@ Simon Hengel htmlcheetah Matt Tolton javacc Ivan Devat javascript.jquery tpope cucumber,pdf +Lyude Paul piglit shader_test ============================================================================== 10. License *NERDComLicense* diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 250b041..b27426d 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -373,6 +373,7 @@ let s:delimiterMap = { \ 'sgmldecl': { 'left': '--', 'right': '--' }, \ 'sgmllnx': { 'left': '' }, \ 'sh': { 'left': '#' }, + \ 'shader_test': { 'left': '#' }, \ 'sicad': { 'left': '*' }, \ 'sile': { 'left': '%' }, \ 'simula': { 'left': '%', 'leftAlt': '--' },