Add syntax for troff family languages (#397)

This commit is contained in:
Rory Bradford
2019-10-05 15:39:51 +01:00
committed by Caleb Maclennan
parent a4b7c046b3
commit 9208286236

View File

@@ -204,6 +204,7 @@ let s:delimiterMap = {
\ 'glsl': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
\ 'gnuplot': { 'left': '#' },
\ 'go': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
\ 'groff': { 'left': '\#' },
\ 'groovy': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
\ 'gsp': { 'left': '<%--', 'right': '--%>', 'leftAlt': '<!--', 'rightAlt': '-->' },
\ 'gtkrc': { 'left': '#' },
@@ -273,6 +274,7 @@ let s:delimiterMap = {
\ 'mail': { 'left': '> ' },
\ 'mako': { 'left': '##' },
\ 'man': { 'left': '."' },
\ 'mandoc': { 'left': '.\\"' },
\ 'map': { 'left': '%' },
\ 'maple': { 'left': '#' },
\ 'markdown': { 'left': '<!--', 'right': '-->' },
@@ -445,6 +447,7 @@ let s:delimiterMap = {
\ 'tmux': { 'left': '#' },
\ 'toml': { 'left': '#' },
\ 'trasys': { 'left': "$" },
\ 'troff': { 'left': '.\\"' },
\ 'tsalt': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
\ 'tsscl': { 'left': '#' },
\ 'tssgm': { 'left': "comment = '", 'right': "'" },