From 2736532e400562584092b8068ff53dc3e39c9ace Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Mon, 17 Jul 2023 21:45:55 +0900 Subject: [PATCH 1/3] Units,ruby: delete an empty line from a test input Signed-off-by: Masatake YAMATO --- .../ruby-class-method-with-prefixing-self.d/input.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Units/parser-ruby.r/ruby-class-method-with-prefixing-self.d/input.rb b/Units/parser-ruby.r/ruby-class-method-with-prefixing-self.d/input.rb index 18038a08d5..cf1d3da06f 100644 --- a/Units/parser-ruby.r/ruby-class-method-with-prefixing-self.d/input.rb +++ b/Units/parser-ruby.r/ruby-class-method-with-prefixing-self.d/input.rb @@ -20,4 +20,3 @@ def self.field(name, storage: field_storage, **attrs) boolean_accessor(name) if attrs[:type] == 'checkbox' && storage != :attribute end end - From 7f7607c21dd3d9d633b23fb2e90f286fde84d1b9 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Sat, 16 Dec 2023 02:42:36 +0900 Subject: [PATCH 2/3] docs(man): fix a typo in ctags-lang-c.rst.in Signed-off-by: Masatake YAMATO --- man/ctags-lang-c.7.rst.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/man/ctags-lang-c.7.rst.in b/man/ctags-lang-c.7.rst.in index 295a173790..c51481d804 100644 --- a/man/ctags-lang-c.7.rst.in +++ b/man/ctags-lang-c.7.rst.in @@ -1,7 +1,7 @@ -.. _ctags-lang-C(7): +.. _ctags-lang-c(7): ============================================================== -ctags-lang-C +ctags-lang-c ============================================================== --------------------------------------------------------------------- Random notes about tagging C source code with Universal Ctags @@ -30,6 +30,8 @@ Change since "0.0" * New role ``foreigndecl`` for ``struct`` kind +* New field ``section`` + SEE ALSO -------- ctags(1), From 549f9339e3e6db9ad5f4de410731c9e7503fd98e Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Sat, 16 Dec 2023 03:16:08 +0900 Subject: [PATCH 3/3] docs(web): add missing man page (ctags-lang-automake) Signed-off-by: Masatake YAMATO --- docs/man/ctags-lang-automake.7.rst | 34 ++++++++++++++++++++++++++ docs/man/ctags-lang-c.7.rst | 38 ++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 docs/man/ctags-lang-automake.7.rst create mode 100644 docs/man/ctags-lang-c.7.rst diff --git a/docs/man/ctags-lang-automake.7.rst b/docs/man/ctags-lang-automake.7.rst new file mode 100644 index 0000000000..a5063dbed3 --- /dev/null +++ b/docs/man/ctags-lang-automake.7.rst @@ -0,0 +1,34 @@ +.. _ctags-lang-automake(7): + +============================================================== +ctags-lang-automake +============================================================== + +Random notes about tagging Automake source code (Makefile.am) with Universal Ctags + +:Version: 6.0.0 +:Manual group: Universal Ctags +:Manual section: 7 + +SYNOPSIS +-------- +| **ctags** ... --languages=+Automake ... +| **ctags** ... --language-force=Automake ... +| **ctags** ... --map-Automake=+.am ... + +DESCRIPTION +----------- +This man page gathers random notes about tagging Automake source code (Makefile.am). + +VERSIONS +-------- + +Change since "0.0" +~~~~~~~~~~~~~~~~~~ + +* Add ``canonicalizedName`` extra. +* Add ``pseudodir`` kind. + +SEE ALSO +-------- +:ref:`ctags(1) ` diff --git a/docs/man/ctags-lang-c.7.rst b/docs/man/ctags-lang-c.7.rst new file mode 100644 index 0000000000..23dba0551c --- /dev/null +++ b/docs/man/ctags-lang-c.7.rst @@ -0,0 +1,38 @@ +.. _ctags-lang-c(7): + +============================================================== +ctags-lang-c +============================================================== + +Random notes about tagging C source code with Universal Ctags + +:Version: 6.0.0 +:Manual group: Universal Ctags +:Manual section: 7 + +SYNOPSIS +-------- +| **ctags** ... --languages=+C ... +| **ctags** ... --language-force=C ... +| **ctags** ... --map-C=+.c ... + +DESCRIPTION +----------- +This man page gathers random notes about tagging C source code. + +VERSIONS +-------- + +Change since "0.0" +~~~~~~~~~~~~~~~~~~ + +* New role ``foreigndecl`` for ``function`` kind + +* New role ``foreigndecl`` for ``struct`` kind + +* New field ``section`` + +SEE ALSO +-------- +:ref:`ctags(1) `, +`The new C/C++ parser `_ (https://docs.ctags.io/en/latest/parser-cxx.html)