From: Jan Kratochvil Date: Sun, 14 Nov 2021 08:49:23 +0000 (+0100) Subject: .bashrc: Fix: ctags: Warning: "--file-tags" option is obsolete; use "--extras=+f... X-Git-Url: http://git.jankratochvil.net/?p=nethome.git;a=commitdiff_plain;h=f10969b5a8cf0273c21783c660b52fb97cb179d4 .bashrc: Fix: ctags: Warning: "--file-tags" option is obsolete; use "--extras=+f" instead --- 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; );}