저는 Zsh를 사용하여 Arch에서 gnome 3.10.1을 실행하고 있습니다. 내가 직면한 문제는 터미널 창에서 새 탭이나 창을 만들 때 현재 디렉터리가 내 홈 디렉터리로 재설정된다는 것입니다.
나는 이것을 시도했습니다 :gnome-terminal: 새 탭에서 디렉토리 추적, 그러나 성공하지 못했습니다.
내 파일에 일부 구성이 있을 수 있다고 생각하여 .zshrc
파일을 정리하고 다음 줄을 추가했습니다.
. /etc/profile.d/vte.sh
그러나 예상대로 작동하지 않습니다.
예, 파일이 존재하며 해당 내용은 다음과 같습니다.
# Copyright © 2006 Shaun McCance <[email protected]>
# Copyright © 2013 Peter De Wachter <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Not bash or zsh?
[ -n "$BASH_VERSION" -o -n "$ZSH_VERSION" ] || return 0
# Not an interactive shell?
[[ $- == *i* ]] || return 0
# Not running under vte?
[ "${VTE_VERSION:-0}" -ge 3405 ] || return 0
__vte_urlencode() (
# This is important to make sure string manipulation is handled
# byte-by-byte.
LC_ALL=C
str="$1"
while [ -n "$str" ]; do
safe="${str%%[!a-zA-Z0-9/:_\.\-\!\'\(\)~]*}"
printf "%s" "$safe"
str="${str#"$safe"}"
if [ -n "$str" ]; then
printf "%%%02X" "'$str"
str="${str#?}"
fi
done
)
# Print a warning so that anyone who's added this manually to his PS1 can adapt.
# The function will be removed in a later version.
__vte_ps1() {
echo -n "(__vte_ps1 is obsolete)"
}
__vte_osc7 () {
printf "\033]7;file://%s%s\a" "${HOSTNAME:-}" "$(__vte_urlencode "${PWD}")"
}
__vte_prompt_command() {
printf "\033]0;%s@%s:%s\007%s" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}" "$(__vte_osc7)"
}
case "$TERM" in
xterm*|vte*)
[ -n "$BASH_VERSION" ] && PROMPT_COMMAND="__vte_prompt_command"
[ -n "$ZSH_VERSION" ] && chpwd_functions+=(__vte_osc7)
;;
esac
true
이거 정말 짜증나는데...
해결책이 있나요?
답변1
아직도 이 문제가 있는지는 모르겠지만, 터미널 프로필에서 /bin/zsh를 사용자 정의 명령으로 실행하고 있다는 것이 문제라는 것을 알았습니다. 이를 비활성화하면 문제가 해결되었으며 여전히 zsh를 기본 쉘로 유지했습니다.