blob: 8ac085bf63fa3b69445748d5c2fc54c3081289ff (
plain) (
tree)
|
|
{
sysLib,
git,
gnused,
}:
sysLib.writeShellScript {
name = "git-edit-index";
src = ./git-edit-index.sh;
generateCompletions = true;
# `git-edit-index` starts neovim, wich might want to shell out from
keepPath = true;
dependencies = [
git
gnused
# $EDITOR
];
}
|