Set the maximum recursion depth to one to avoid unecessary high CPU usage

This commit is contained in:
Frank LENORMAND 2015-07-31 18:34:53 +03:00
parent 5291c06dec
commit 9bd6a6da90

View File

@ -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}" -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