From 97ccd8d036996684d1ba6acf56bda61c7e184090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 5 Oct 2017 23:42:14 +0200 Subject: Add some fixups and more removals --- bashrc | 31 ------------------------------- 1 file changed, 31 deletions(-) (limited to 'bashrc') diff --git a/bashrc b/bashrc index f36391e..397994c 100644 --- a/bashrc +++ b/bashrc @@ -10,13 +10,6 @@ if [ -f /etc/bashrc ]; then . /etc/bashrc fi -# Source all completions -if [ -d ~/.bash_completions ]; then - for F in $(find ~/.bash_completions -type f); do - . "$F" - done -fi - # PROMPT ####################################################### PS1='$( if [ `id -u` -eq "0" ]; then @@ -41,27 +34,3 @@ case "$TERM" in trap 'settitle' DEBUG ;; esac - -# Completions ################################################## - -_gitbmerge() { - local cur prev - _init_completion || return - [ $COMP_CWORD -gt 1 ] && return # Complete only single dependency - COMPREPLY=() - local GDIR="$(pwd)" - while [ ! -d "$GDIR/.git" ]; do - [ -z "$GDIR" ] && return - GDIR="${GDIR%/*}" - done - GDIR="$GDIR/.git" - [ -f "$GDIR" ] && GDIR="$(cat "$GDIR")" # This just points to some other directory - [ -d "$GDIR/refs/heads" ] || return # No completion if there is no local branch - local ops="" - for B in "$GDIR"/refs/heads/*; do - # TODO skip branch on HEAD - ops="$ops ${B#$GDIR/refs/heads/}" - done - COMPREPLY+=($(compgen -W "${ops}" -- ${cur})) -} -complete -F _gitbmerge gitbmerge -- cgit v1.2.3