Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support XDG base directory specification #2384

Closed
4 changes: 1 addition & 3 deletions Tmain/load-conf-files-under-default-xdg-config-home/run.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# Copyright: 2017 Masatake YAMATO
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copyright notice is neeed, but is not mine.

# License: GPL-2

CTAGS=$1

. ../utils.sh

exit_if_win32 "$CTAGS"

# $HOME/.config/ctags/*.ctags are loaded
export HOME=./myhome
export XDG_CONFIG_HOME=
${CTAGS}
4 changes: 1 addition & 3 deletions Tmain/load-conf-files-under-xdg-config-home/run.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# Copyright: 2017 Masatake YAMATO
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copyright notice is neeed, but is not mine.

# License: GPL-2

CTAGS=$1

. ../utils.sh

exit_if_win32 "$CTAGS"

# $XDG_CONFIG_HOME/ctags/*.ctags are loaded
export XDG_CONFIG_HOME=./.config
${CTAGS}