From 1c7b57608e653b55731d5971ba11c4c691b14c8c Mon Sep 17 00:00:00 2001 From: Bertold Sedlak <60078188+teaVeloper@users.noreply.github.com> Date: Thu, 18 Feb 2021 04:44:26 +0100 Subject: [PATCH] Add UC4 Filetype (#462) Add Support for UC4 Scripts as used by Automic Automation Engine See docs for details: https://docs.automic.com/documentation/webhelp/english/AWA/11.2/AE/11.2/All%20Guides/Content/ucabqx.htm --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index a692fe0..10a49db 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -450,6 +450,7 @@ let s:delimiterMap = { \ 'typescript': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'typescriptreact': { 'left': '//', 'leftAlt': '{/*', 'rightAlt': '*/}' }, \ 'uc': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, + \ 'uc4': { 'left': '!' }, \ 'uil': { 'left': '!' }, \ 'upstart': { 'left': '#' }, \ 'vala': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },