2020-05-11 01:56:27 +00:00
|
|
|
#!/usr/bin/env bash
|
2020-04-24 06:21:41 +00:00
|
|
|
#
|
|
|
|
# interactive menu to select file/commit to edit
|
|
|
|
#
|
|
|
|
# @params
|
|
|
|
# Globals
|
2020-04-24 07:26:45 +00:00
|
|
|
# ${mydir}: current directory of the script
|
2020-05-15 08:29:29 +00:00
|
|
|
# ${edit_type}: which type to edit, all files, modified files, commit
|
2020-04-24 07:26:45 +00:00
|
|
|
# ${selected_commit}: selected commit to edit
|
2020-06-24 22:10:44 +00:00
|
|
|
# ${selected_files}: arrays of selected file to edit
|
2020-04-24 06:21:41 +00:00
|
|
|
# Arguments
|
2020-06-24 22:10:44 +00:00
|
|
|
# -m|--modified: display modified file only
|
|
|
|
# -c|--commit: edit commit using interactive rebase
|
|
|
|
# -h|--help: show helpe message and exit
|
2020-04-24 06:21:41 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
set -f
|
|
|
|
|
2020-05-13 07:30:54 +00:00
|
|
|
mydir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2020-04-24 06:21:41 +00:00
|
|
|
source "${mydir}"/../helper/set_variable.sh
|
|
|
|
source "${mydir}"/../helper/git_query.sh
|
|
|
|
|
|
|
|
function usage() {
|
2020-05-13 03:52:28 +00:00
|
|
|
echo -e "Usage: dotbare fedit [-h] [-m] [-c] ...\n"
|
2020-06-24 22:10:44 +00:00
|
|
|
echo -e "Select files/commits through fzf and edit selected files/commits in EDITOR\n"
|
|
|
|
echo -e "Default: list all tracked dotfiles and edit the selected files\n"
|
2020-04-24 06:21:41 +00:00
|
|
|
echo -e "optional arguments:"
|
2020-06-24 22:10:44 +00:00
|
|
|
echo -e " -h, --help\t\tshow this help message and exit"
|
|
|
|
echo -e " -m, --modified\t\tonly display and edit modified files"
|
|
|
|
echo -e " -c, --commit\t\tedit commit using interactive rebase"
|
2020-04-24 06:21:41 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 08:29:29 +00:00
|
|
|
edit_type='all'
|
2020-06-24 22:10:44 +00:00
|
|
|
selected_files=()
|
2020-04-24 06:21:41 +00:00
|
|
|
|
2020-06-24 22:10:44 +00:00
|
|
|
while [[ "$#" -gt 0 ]]; do
|
|
|
|
case "$1" in
|
|
|
|
-m|--modified)
|
|
|
|
edit_type="modified"
|
|
|
|
shift
|
2020-04-24 06:21:41 +00:00
|
|
|
;;
|
2020-06-24 22:10:44 +00:00
|
|
|
-c|--commit)
|
|
|
|
edit_type="commit"
|
|
|
|
shift
|
2020-04-24 06:21:41 +00:00
|
|
|
;;
|
2020-06-24 22:10:44 +00:00
|
|
|
-h|--help)
|
2020-04-24 06:21:41 +00:00
|
|
|
usage
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
*)
|
2020-06-24 22:37:18 +00:00
|
|
|
echo "Invalid option: $1" >&2
|
2020-04-24 06:21:41 +00:00
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-05-15 08:29:29 +00:00
|
|
|
if [[ "${edit_type}" == "commit" ]]; then
|
2020-06-24 22:37:18 +00:00
|
|
|
selected_commit=$(get_commit "select a commit to rename")
|
2020-04-24 06:49:44 +00:00
|
|
|
[[ -z "${selected_commit}" ]] && exit 1
|
|
|
|
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" rebase -i "${selected_commit}"~
|
2020-04-24 06:21:41 +00:00
|
|
|
else
|
2020-06-24 22:10:44 +00:00
|
|
|
while IFS= read -r line; do
|
|
|
|
selected_files+=("${line}")
|
|
|
|
done < <(
|
|
|
|
if [[ "${edit_type}" == "modified" ]]; then
|
|
|
|
get_modified_file "select modified files to edit"
|
|
|
|
else
|
|
|
|
get_git_file "select tracked files to edit"
|
|
|
|
fi
|
|
|
|
)
|
|
|
|
[[ "${#selected_files[@]}" -eq 0 ]] && exit 1
|
|
|
|
exec "${EDITOR}" "${selected_files[@]}"
|
2020-04-24 06:21:41 +00:00
|
|
|
fi
|