We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9d7528 commit 428a4c6Copy full SHA for 428a4c6
plugin/bsl.vim
@@ -0,0 +1,9 @@
1
+
2
+"Поддержка tagbar
3
+let g:tagbar_type_bsl = {
4
+ \ 'ctagstype' : 'bsl',
5
+ \ 'kinds' : [
6
+ \ 'p:Procedures',
7
+ \ 'f:Functions'
8
+ \ ]
9
+ \ }
setup/.ctags
@@ -0,0 +1,6 @@
+--langdef=bsl
+--langmap=bsl:.bsl.os
+--regex-bsl=/^[ \t]*Функция[ \t]+([^\(]*)/\1/f,function,functions/i
+--regex-bsl=/^[ \t]*Function[ \t]+([^\(]*)/\1/f,function,functions/i
+--regex-bsl=/^[ \t]*Процедура[ \t]+([^\(]*)/\1/p,procedure,procedures/i
+--regex-bsl=/^[ \t]*Procedure[ \t]+([^\(]*)/\1/p,procedure,procedures/i
0 commit comments