#!/bin/sh
|
|
|
|
# Help messages:
|
|
export LONG_USAGE="Select and edit changed files using fzf."
|
|
|
|
# Tell git-sh-setup we're ok with being in a subdir:
|
|
export SUBDIRECTORY_OK=1
|
|
|
|
. "$(git --exec-path)/git-sh-setup"
|
|
|
|
"$EDITOR" $(git sel-changed $1)
|