Remove _CONFIG_LOCATION variable again.

It has been decided that this feature should been removed until it will be requested.
This commit is contained in:
Thore Weilbier 2018-11-07 09:31:21 +01:00 committed by GitHub
parent 206ded75d8
commit 0e46b92aba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -20,15 +20,11 @@ _CACHED_TPM_PATH="$(_tpm_path)"
#
_get_user_tmux_conf() {
# Define the different possible locations.
custom_location="$TMUX_PLUGIN_MANAGER_CONFIG_LOCATION"
xdg_location="$XDG_CONFIG_HOME/tmux/tmux.conf"
default_location="$HOME/.tmux.conf"
# Search for the correct configuration file by priority.
if [ -n "$custom_location" ]; then
echo "$custom_location"
elif [ -f "$xdg_location" ]; then
if [ -f "$xdg_location" ]; then
echo "$xdg_location"
else