From b4e1d711d6588a592f89388d2aa9cd34cc6fce0f Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Sun, 2 Aug 2015 16:13:58 +0300 Subject: [PATCH] Fix the pattern used in the backups lookup onliner to avoid false positives --- rc/autorestore.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/autorestore.kak b/rc/autorestore.kak index e66a3793..f505044a 100644 --- a/rc/autorestore.kak +++ b/rc/autorestore.kak @@ -7,7 +7,7 @@ def -hidden _autorestore-restore-buffer %{ buffer_dirname=$(dirname "${kak_bufname}") ## Find the name of the latest backup created for the buffer that was open - latest_backup_path=$(find "${buffer_dirname}" -maxdepth 1 -type f -readable -name ".${buffer_basename}.kak.*" -printf '%A@/%p\n' 2>/dev/null \ + latest_backup_path=$(find "${buffer_dirname}" -maxdepth 1 -type f -readable -name "\.${buffer_basename}\.kak\.*" -printf '%A@/%p\n' 2>/dev/null \ | sort -n -t. -k1 | sed -nr 's/^.+\///;$p') test ! -z "${latest_backup_path}" || exit