From edb8e9b58ed533dd95293211acafde3a8038aa94 Mon Sep 17 00:00:00 2001 From: Neeraj Krishna N Date: Wed, 21 Feb 2024 08:24:26 +0530 Subject: [PATCH] added support for tla --- lua/Comment/ft.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/Comment/ft.lua b/lua/Comment/ft.lua index 812eacd..1d73140 100644 --- a/lua/Comment/ft.lua +++ b/lua/Comment/ft.lua @@ -32,6 +32,7 @@ local M = { twig = '{#%s#}', vim = '"%s', lean_b = '/-%s-/', + tla_comment = '\\*%s', } ---Lang table that contains commentstring (linewise/blockwise) for multiple filetypes @@ -148,6 +149,7 @@ local L = setmetatable({ terraform = { M.hash, M.cxx_b }, tex = { M.latex }, template = { M.dbl_hash }, + tla = { M.tla_comment }, tmux = { M.hash }, toml = { M.hash }, twig = { M.twig, M.twig },