From d8f65bd0ec8b27c2ce3db983b6cf1308f2818870 Mon Sep 17 00:00:00 2001 From: Gianni Chiappetta Date: Wed, 13 Jan 2021 21:31:29 -0500 Subject: [PATCH] feat(rc): match `.graphqls` file extension as graphql filetype --- rc/filetype/graphql.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/filetype/graphql.kak b/rc/filetype/graphql.kak index 430905b8..18a77d7a 100644 --- a/rc/filetype/graphql.kak +++ b/rc/filetype/graphql.kak @@ -4,7 +4,7 @@ # Detection # ‾‾‾‾‾‾‾‾‾ -hook global BufCreate .*[.](graphql) %{ +hook global BufCreate .*[.](graphqls?) %{ set-option buffer filetype graphql }