From f10969b5a8cf0273c21783c660b52fb97cb179d4 Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Sun, 14 Nov 2021 09:49:23 +0100 Subject: [PATCH] .bashrc: Fix: ctags: Warning: "--file-tags" option is obsolete; use "--extras=+f" instead --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 9d70dcf..5bd3546 100644 --- a/.bashrc +++ b/.bashrc @@ -294,7 +294,7 @@ function ctags {(unset ctags -o -name "*.py" \ -o -name "*.exp" \ ')' \ - |ctags --file-tags -L - --langmap=Tcl:+.exp "$@" + |ctags --extras=+f -L - --langmap=Tcl:+.exp "$@" fi; );} function ctagsh { ctags "--c-types=+px"; } function cpan {(unset cpan; if [ $# = 0 ];then cpan;else perl -MCPAN -e "install qw($*);";fi; );} -- 1.8.3.1