Skip to content

Commit

Permalink
Add support for Kotlin tags
Browse files Browse the repository at this point in the history
  • Loading branch information
dolik-rce committed Dec 4, 2021
1 parent 808b7a3 commit 84b0295
Show file tree
Hide file tree
Showing 18 changed files with 25,080 additions and 8 deletions.
11 changes: 10 additions & 1 deletion ctags/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ AM_CFLAGS = \
$(GTK_CFLAGS) \
@LIBGEANY_CFLAGS@

if MINGW
AM_CFLAGS += -DUSE_SYSTEM_STRNLEN=1
endif

noinst_LTLIBRARIES = libctags.la

parsers = \
Expand Down Expand Up @@ -56,7 +60,12 @@ parsers = \
parsers/geany_tex.c \
parsers/txt2tags.c \
parsers/geany_verilog.c \
parsers/geany_vhdl.c
parsers/geany_vhdl.c \
parsers/peg/peg_common.h \
parsers/peg/kotlin.c \
parsers/peg/kotlin.h \
parsers/peg/kotlin_post.h \
parsers/peg/kotlin_pre.h

# skip cmd.c and mini-geany.c which define main()
# also skip lregex-pcre2.c which we don't use
Expand Down

0 comments on commit 84b0295

Please sign in to comment.