Faster zshrc
This commit is contained in:
16
zsh/bin/vim-recover
Executable file
16
zsh/bin/vim-recover
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env zsh
|
||||
|
||||
# Check recovery directory from vim
|
||||
if [ -f $1 ]; then
|
||||
echo >&2 Cannot recover an existing file...
|
||||
return 1
|
||||
fi
|
||||
|
||||
BACKUP_PATH=~/.vim/backups/`echo $PWD/$1 | tr '/' '%'`
|
||||
|
||||
if [ ! -f "$BACKUP_PATH" ]; then
|
||||
echo >&2 Backup not found...
|
||||
return 2
|
||||
fi
|
||||
|
||||
cp $BACKUP_PATH $1
|
||||
Reference in New Issue
Block a user