Skip to content

Commit

Permalink
Add the geany_ prefix to all parser files
Browse files Browse the repository at this point in the history
The geany_ prefix is meant to indicate that the parser either has a
geany-specific implementation or that there are some things in the parser
which should be committed upstream. Once a parser is fully synced
with the upstream version, we can drop the geany_ prefix. This helps us
know which parsers are synced (and for which we can just copy the
uctags version) and where we still have some work to do.

In this initial commit, add the geany_ prefix everywhere - some parsers
are already fully synced and the geany_ prefix can be dropped when we
update to the up-to-date uctags version.
  • Loading branch information
techee committed Nov 19, 2020
1 parent 81c5a2e commit 0347e74
Show file tree
Hide file tree
Showing 46 changed files with 48 additions and 48 deletions.
90 changes: 45 additions & 45 deletions ctags/Makefile.am
Expand Up @@ -10,51 +10,51 @@ AM_CFLAGS = \
noinst_LTLIBRARIES = libctags.la

parsers = \
parsers/abaqus.c \
parsers/abc.c \
parsers/asciidoc.c \
parsers/asm.c \
parsers/basic.c \
parsers/bibtex.c \
parsers/c.c \
parsers/cobol.c \
parsers/iniconf.c \
parsers/css.c \
parsers/diff.c \
parsers/docbook.c \
parsers/erlang.c \
parsers/flex.c \
parsers/fortran.c \
parsers/go.c \
parsers/haskell.c \
parsers/haxe.c \
parsers/html.c \
parsers/jscript.c \
parsers/json.c \
parsers/lcpp.c \
parsers/lcpp.h \
parsers/lua.c \
parsers/make.c \
parsers/markdown.c \
parsers/matlab.c \
parsers/nsis.c \
parsers/objc.c \
parsers/pascal.c \
parsers/perl.c \
parsers/php.c \
parsers/powershell.c \
parsers/python.c \
parsers/r.c \
parsers/rst.c \
parsers/ruby.c \
parsers/rust.c \
parsers/sh.c \
parsers/sql.c \
parsers/tcl.c \
parsers/tex.c \
parsers/txt2tags.c \
parsers/verilog.c \
parsers/vhdl.c
parsers/geany_abaqus.c \
parsers/geany_abc.c \
parsers/geany_asciidoc.c \
parsers/geany_asm.c \
parsers/geany_basic.c \
parsers/geany_bibtex.c \
parsers/geany_c.c \
parsers/geany_cobol.c \
parsers/geany_iniconf.c \
parsers/geany_css.c \
parsers/geany_diff.c \
parsers/geany_docbook.c \
parsers/geany_erlang.c \
parsers/geany_flex.c \
parsers/geany_fortran.c \
parsers/geany_go.c \
parsers/geany_haskell.c \
parsers/geany_haxe.c \
parsers/geany_html.c \
parsers/geany_jscript.c \
parsers/geany_json.c \
parsers/geany_lcpp.c \
parsers/geany_lcpp.h \
parsers/geany_lua.c \
parsers/geany_make.c \
parsers/geany_markdown.c \
parsers/geany_matlab.c \
parsers/geany_nsis.c \
parsers/geany_objc.c \
parsers/geany_pascal.c \
parsers/geany_perl.c \
parsers/geany_php.c \
parsers/geany_powershell.c \
parsers/geany_python.c \
parsers/geany_r.c \
parsers/geany_rst.c \
parsers/geany_ruby.c \
parsers/geany_rust.c \
parsers/geany_sh.c \
parsers/geany_sql.c \
parsers/geany_tcl.c \
parsers/geany_tex.c \
parsers/geany_txt2tags.c \
parsers/geany_verilog.c \
parsers/geany_vhdl.c

# skip cmd.c and mini-geany.c which define main()
libctags_la_SOURCES = \
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion ctags/parsers/c.c → ctags/parsers/geany_c.c
Expand Up @@ -19,7 +19,7 @@
#include "debug.h"
#include "mio.h"
#include "entry.h"
#include "lcpp.h"
#include "geany_lcpp.h"
#include "keyword.h"
#include "options.h"
#include "parse.h"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion ctags/parsers/lcpp.c → ctags/parsers/geany_lcpp.c
Expand Up @@ -17,7 +17,7 @@

#include "debug.h"
#include "entry.h"
#include "lcpp.h"
#include "geany_lcpp.h"
#include "kind.h"
#include "options_p.h"
#include "read.h"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion ctags/parsers/verilog.c → ctags/parsers/geany_verilog.c
Expand Up @@ -27,7 +27,7 @@
#include "parse.h"
#include "read.h"
#include "vstring.h"
#include "lcpp.h"
#include "geany_lcpp.h"
#include "routines.h"
#include "xtag.h"

Expand Down
File renamed without changes.

0 comments on commit 0347e74

Please sign in to comment.