gnome-terminal: tiene traccia della directory in una nuova scheda


37

Sono su Arch Linux, e quando apro una nuova scheda terminale, va sempre a $HOME. Come posso fare in modo che quando apro una nuova scheda, si apre la shell nella directory in cui mi trovavo in precedenza?

Risposte:


49

C'è un bug relativo a questo problema

Tutto quello che devi fare è aggiungere la seguente riga al tuo .bashrco .zshrc:

. /etc/profile.d/vte.sh

Almeno su Arch, lo script controlla se stai eseguendo bash o zsh e termina se non lo sei.


1
Va notato che questo potrebbe non avere un effetto, a meno che non venga aggiunto dopo export PROMPT_COMMAND=..., se tale cosa esiste già nel tuo .bashrc.
swalog,

2
/etc/profile.d/vte.shignora la PROMPT_COMMANDvariabile. Per risolvere questo problema, puoi modificare vte.she cambiare la parte con PROMPT_COMMAND="__vte_prompt_command"toPROMPT_COMMAND="${PROMPT_COMMAND};__vte_prompt_command"
swalog il

2
Ho fatto attenzione a metterlo nel posto giusto, verificare che lo script esista, ecc., Ma non ha l'effetto desiderato. Sto eseguendo 4.2.3-1-ARCH con Gnome Terminal 3.18.1. Eventuali suggerimenti?
Jack Senechal,

Questo non funziona per me per zsh quando lo si aggiunge al mio .zshrc. Sto usando oh-my-zsh, non sono sicuro che sia correlato.
Andreas Mueller,

1
Sto usando oh-my-zsh. Sono aggiornato sull'arco al massimo da un paio di settimane.
Dai

7

Potrebbe anche crosspostare questa soluzione hacky da superutente:

[Questo] salva la cartella corrente in un file, dopo ogni comando (non danneggia troppo l'IMO) e apre un nuovo terminale nella cartella corrente salvata.

aggiungi quanto segue a .zshrc [o .bashrc ]

# emulate bash PROMPT_COMMAND (only for zsh)
precmd() { eval "$PROMPT_COMMAND" }
# open new terminal in same dir
PROMPT_COMMAND='pwd > "${HOME}/.cwd"'
[[ -f "${HOME}/.cwd" ]] && cd "$(< ${HOME}/.cwd)"

Nota che questo ti metterà anche nella tua ultima directory usata quando apri una nuova finestra .


Ha funzionato alla grande per me. Solus Linux, gnome-terminal e zshell.
psparrow

Funziona benissimo anche per me, sto usando il terminale Loki OS 0.4.1 di default Elementary, grazie.
Rafael Berro,

0

@swalog mi ha ispirato nel suo commento a eliminare tutte le parti non necessarie vte.shsenza modificare il prompt né il titolo del terminale. Nota che non uso zsh, quindi ho rimosso il zshcodice correlato.

# Copyright © 2006 Shaun McCance <shaunm@gnome.org>
# Copyright © 2013 Peter De Wachter <pdewacht@gmail.com>
#
# 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, see <http://www.gnu.org/licenses/>.

# 28 Sep 2019: Tukusej’s Sirs modified this by stripping down all unnecessary parts for his usage
# (src: https://unix.stackexchange.com/questions/93476/gnome-terminal-keep-track-of-directory-in-new-tab#comment219157_93477)

# 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
)

__vte_prompt_command() {
    local command=$(HISTTIMEFORMAT= history 1 | sed 's/^ *[0-9]\+ *//')
    command="${command//;/ }"
    local pwd='~'
    printf "\033]7;file://%s%s\007" "${HOSTNAME:-}" "$(__vte_urlencode "${PWD}")"
}

case "$TERM" in
    xterm*|vte*)
        [ -n "$BASH_VERSION" ] && PROMPT_COMMAND="${PROMPT_COMMAND};__vte_prompt_command"
        ;;
esac
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.