Prevent the autorestore to recover backups on non-existent files

This commit is contained in:
Frank LENORMAND 2015-08-05 17:30:21 +03:00 committed by Maxime Coste
parent e29f8d3261
commit d44214f136

View File

@ -7,6 +7,8 @@ def autorestore-restore-buffer -docstring "Restore the backup for the current fi
buffer_basename="${kak_bufname##*/}"
buffer_dirname=$(dirname "${kak_bufname}")
test ! -f "${kak_bufname}" && exit
## Find the name of the latest backup created for the buffer that was open
## The backup file has to have been last modified more recently than the file we are editing
latest_backup_path=$(find "${buffer_dirname}" -maxdepth 1 -type f -readable -newer "${kak_bufname}" -name "\.${buffer_basename}\.kak\.*" -printf '%A@/%p\n' 2>/dev/null \
@ -45,6 +47,8 @@ def autorestore-purge-backups -docstring "Remove all the backups of the current
buffer_basename="${kak_bufname##*/}"
buffer_dirname=$(dirname "${kak_bufname}")
test ! -f "${kak_bufname}" && exit
find "${buffer_dirname}" -maxdepth 1 -type f -readable -name "\.${buffer_basename}\.kak\.*" -delete 2>/dev/null
}
echo -color 'Information Backup files removed'