Skip to content
Snippets Groups Projects
Commit 44fe4621 authored by nimrod's avatar nimrod
Browse files

Completion for git-skel.

parent ef4e1076
No related branches found
No related tags found
No related merge requests found
# vim: ft=bash
_git_skel () {
local cur prev words cword opts
_init_completion || return
pushd "$HOME/.config/git/skel" >/dev/null
COMPREPLY=($(compgen -o filenames -f -- "$cur"))
popd >/dev/null
}
if [ -f /usr/share/bash-completion/completions/git ]
then
. /usr/share/bash-completion/completions/git
__git_complete git-skel _git_skel
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment