Skip to content

Commit

Permalink
completion/bash: add completion rules for ctags
Browse files Browse the repository at this point in the history
Close #1168.

The changes for Makefile.am and configure.ac are derrived
from util-linux. Their licenses are covered withn "The ./COPYING file (GPL-2.0-or-later)".

Quoted from README.licensing:

    The project util-linux doesn't use the same license for all of the code.
    There is code under:

       * GPL-3.0-or-later   - GNU General Public License version 3, or any later version

       * GPL-2.0-or-later   - GNU General Public License version 2, or any later version

       * GPL-2.0            - GNU General Public License version 2

       * LGPL-2.1-or-later  - GNU Lesser General Public License 2.1 or any later version

       * BSD-3-Clause       - BSD 3-Clause "New" or "Revised" License

       * BSD-4-Clause-UC    - BSD 4-Clause University of California-Specific

       * Public Domain

    Please, check the source code for more details. A license is usually at the start
    of each source file.

    The ./COPYING file (GPL-2.0-or-later) is the default license for code without
    an explicitly defined license.
  • Loading branch information
masatake committed Oct 12, 2022
1 parent 8334234 commit 70a8718
Show file tree
Hide file tree
Showing 3 changed files with 889 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -278,3 +278,9 @@ dist-hook:
include $(top_srcdir)/makefiles/testing.mak

include $(top_srcdir)/makefiles/help.mak

bashcompletiondir = @bashcompletiondir@
if BASH_COMPLETION
dist_bashcompletion_DATA =
dist_bashcompletion_DATA += completion/ctags.bash
endif

0 comments on commit 70a8718

Please sign in to comment.