From 14ac9f8a7d2c9654ddb1c2a8d2ea8a8c44f39d02 Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Fri, 21 Feb 2020 16:25:04 +0300 Subject: [PATCH] =?UTF-8?q?vifm:=20=D0=BD=D0=B0=D1=81=D1=82=D1=80=D0=BE?= =?UTF-8?q?=D0=B9=D0=BA=D0=B8=20=D0=BF=D0=B5=D1=80=D0=B5=D0=BD=D0=B5=D1=81?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D0=B2=20~/.config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- etc/shell/bash/aliases | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/shell/bash/aliases b/etc/shell/bash/aliases index 97ace45..26545a7 100755 --- a/etc/shell/bash/aliases +++ b/etc/shell/bash/aliases @@ -208,13 +208,13 @@ vicd() { #noindex function vifm() { #noindex if [ -f ~/.vifm/lastdir ]; then - \rm ~/.vifm/lastdir + \rm ~/.config/.vifm/lastdir fi # "command" prevents recursive call TERM=xterm-256color command vifm . - if [ -f ~/.vifm/lastdir ]; then - cd "`cat ~/.vifm/lastdir`" + if [ -f ~/.config/.vifm/lastdir ]; then + cd "`cat ~/.config/.vifm/lastdir`" fi }