From 7c49fb2ac01a9f03410100c8e78f647bbea857e8 Mon Sep 17 00:00:00 2001 From: Tobias Schmitz Date: Wed, 13 Jul 2022 07:14:29 +0200 Subject: [PATCH] feat: add `arduino` support (#181) --- lua/Comment/ft.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/Comment/ft.lua b/lua/Comment/ft.lua index f6ba25d..c5bb5e8 100644 --- a/lua/Comment/ft.lua +++ b/lua/Comment/ft.lua @@ -21,6 +21,7 @@ local M = { ---Lang table that contains commentstring (linewise/blockwise) for mutliple filetypes ---@type table { filetype = { linewise, blockwise } } local L = { + arduino = { M.cxx_l, M.cxx_b }, bash = { M.hash }, bib = { M.latex }, c = { M.cxx_l, M.cxx_b },