Ask the user to merge changes if source and destination were out of sync

This commit is contained in:
har0ke 2023-10-05 21:07:33 +02:00
parent 0187e952ea
commit d6bd506e66
2 changed files with 9 additions and 1 deletions

View File

@ -4,7 +4,7 @@
"window.customMenuBarAltFocus": false,
"window.titleBarStyle": "custom",
"window.menuBarVisibility": "visible",
"workbench.colorTheme": "Default Light+",
"workbench.colorTheme": "papercolor-vscode-dark",
"workbench.startupEditor": "none",
"task.problemMatchers.neverPrompt": {
"shell": true

View File

@ -105,6 +105,14 @@ function install() {
fi
fi
if [ -e "${dst}" ]; then
if command -v meld &> /dev/null
then
meld "${src}" "${dst}"
else
vim -d "${src}" "${dst}"
fi
fi
backup_file "${dst}"
echo "${dst} will now be linked."