From 79e161252a40bb8161ade568ceb524643e44b852 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Fri, 25 Jun 2021 23:40:25 +0300 Subject: [PATCH] [nvim] make tcomment respect my favorite comment marker for Assembly --- nvim/plugin/editing.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/plugin/editing.vim b/nvim/plugin/editing.vim index f5f5336..7c24336 100644 --- a/nvim/plugin/editing.vim +++ b/nvim/plugin/editing.vim @@ -273,6 +273,8 @@ set commentstring=//%s " Make an alias for the comment text object omap gc ac + let g:tcomment#ignore_comment_def = ['asm'] + " }}}