From a52610c009e3fb4bd5434629c7a51c85c2747f0d Mon Sep 17 00:00:00 2001 From: lasorda <7352092+lasorda@users.noreply.github.com> Date: Thu, 14 Jan 2021 22:30:49 +0800 Subject: [PATCH] add a new language (#738) * Update ctags.vim * update uctags.vim with lpc --- autoload/tagbar/types/ctags.vim | 1 + autoload/tagbar/types/uctags.vim | 1 + 2 files changed, 2 insertions(+) diff --git a/autoload/tagbar/types/ctags.vim b/autoload/tagbar/types/ctags.vim index e225f13..97c49f2 100644 --- a/autoload/tagbar/types/ctags.vim +++ b/autoload/tagbar/types/ctags.vim @@ -115,6 +115,7 @@ function! tagbar#types#ctags#init(supported_types) abort \ 'union' : 'u' \ } let types.c = type_c + let types.lpc = type_c " C++ {{{1 let type_cpp = tagbar#prototypes#typeinfo#new() let type_cpp.ctagstype = 'c++' diff --git a/autoload/tagbar/types/uctags.vim b/autoload/tagbar/types/uctags.vim index d85d0ea..c1715ba 100644 --- a/autoload/tagbar/types/uctags.vim +++ b/autoload/tagbar/types/uctags.vim @@ -215,6 +215,7 @@ function! tagbar#types#uctags#init(supported_types) abort \ 'union' : 'u' \ } let types.c = type_c + let types.lpc = type_c " C++ {{{1 let type_cpp = tagbar#prototypes#typeinfo#new() let type_cpp.ctagstype = 'c++'