2017-11-03 08:34:41 +01:00
|
|
|
declare-option -docstring "remove backups once they've been restored" \
|
2017-05-16 13:35:43 +02:00
|
|
|
bool autorestore_purge_restored true
|
2015-07-30 17:43:57 +02:00
|
|
|
|
2015-08-04 15:56:35 +02:00
|
|
|
## Insert the content of the backup file into the current buffer, if a suitable one is found
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command autorestore-restore-buffer -docstring "Restore the backup for the current file if it exists" %{
|
2015-08-04 15:56:35 +02:00
|
|
|
%sh{
|
2017-02-24 12:26:27 +01:00
|
|
|
buffer_basename="${kak_buffile##*/}"
|
2016-10-07 09:57:45 +02:00
|
|
|
buffer_dirname=$(dirname "${kak_buffile}")
|
2015-08-05 16:30:21 +02:00
|
|
|
|
2017-09-28 03:06:08 +02:00
|
|
|
if [ -f "${kak_buffile}" ]; then
|
|
|
|
newer=$(find "${buffer_dirname}"/".${buffer_basename}.kak."* -newer "${kak_buffile}" -exec ls -1t {} + 2>/dev/null | head -n 1)
|
2016-10-06 23:34:22 +02:00
|
|
|
|
2017-09-28 03:06:08 +02:00
|
|
|
older=$(find "${buffer_dirname}"/".${buffer_basename}.kak."* \! -newer "${kak_buffile}" -exec ls -1t {} + 2>/dev/null | head -n 1)
|
|
|
|
else
|
|
|
|
# New buffers that were never written to disk.
|
|
|
|
newer=$(ls -1t "${buffer_dirname}"/".${buffer_basename}.kak."* 2>/dev/null | head -n 1)
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${newer}" ]; then
|
|
|
|
if [ -n "${older}" ]; then
|
|
|
|
printf %s\\n "
|
|
|
|
echo -debug Old backup file(s) found: will not restore ${older} .
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
exit
|
2015-08-07 10:18:12 +02:00
|
|
|
fi
|
2015-07-30 17:43:57 +02:00
|
|
|
|
2016-04-23 07:47:01 +02:00
|
|
|
printf %s\\n "
|
2016-10-06 23:34:22 +02:00
|
|
|
## Replace the content of the buffer with the content of the backup file
|
2017-09-28 03:06:08 +02:00
|
|
|
echo -debug Restoring file: ${newer}
|
2017-09-26 22:52:11 +02:00
|
|
|
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft %{ %d!cat<space>\"${newer}\"<ret>d }
|
2015-07-30 17:43:57 +02:00
|
|
|
|
2016-10-06 23:34:22 +02:00
|
|
|
## If the backup file has to be removed, issue the command once
|
|
|
|
## the current buffer has been saved
|
|
|
|
## If the autorestore_purge_restored option has been unset right after the
|
|
|
|
## buffer was restored, do not remove the backup
|
2016-10-07 09:57:45 +02:00
|
|
|
hook -group autorestore buffer BufWritePost '${kak_buffile}' %{
|
2015-07-30 17:43:57 +02:00
|
|
|
nop %sh{
|
2017-09-28 03:06:08 +02:00
|
|
|
if [ \"\${kak_opt_autorestore_purge_restored}\" = true ];
|
|
|
|
then
|
|
|
|
rm -f \"${buffer_dirname}/.${buffer_basename}.kak.\"*
|
2015-07-30 17:43:57 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
## Remove all the backups that have been created for the current buffer
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command autorestore-purge-backups -docstring "Remove all the backups of the current buffer" %{
|
2017-09-28 03:06:08 +02:00
|
|
|
%sh{
|
|
|
|
[ ! -f "${kak_buffile}" ] && exit
|
2015-07-30 17:43:57 +02:00
|
|
|
|
2017-02-24 12:26:27 +01:00
|
|
|
buffer_basename="${kak_bufname##*/}"
|
2016-10-07 09:57:45 +02:00
|
|
|
buffer_dirname=$(dirname "${kak_bufname}")
|
2015-08-05 16:30:21 +02:00
|
|
|
|
2017-09-28 03:06:08 +02:00
|
|
|
rm -f "${buffer_dirname}/.${buffer_basename}.kak."*
|
|
|
|
|
|
|
|
printf %s\\n "
|
|
|
|
echo -markup {Information}Backup files removed.
|
|
|
|
"
|
2015-07-30 17:43:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
## If for some reason, backup files need to be ignored
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command autorestore-disable -docstring "Disable automatic backup recovering" %{
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks global autorestore
|
2015-07-30 17:43:57 +02:00
|
|
|
}
|
|
|
|
|
2017-02-24 12:26:27 +01:00
|
|
|
hook -group autorestore global BufCreate .* %{ autorestore-restore-buffer }
|