From e58a6497d050480c56b9689004b9ded1cc2b0b9d Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 17 Jan 2016 07:17:17 -0800 Subject: Remove configuration for `vim` and all the scripts No need to carry a configuration for `vim` anymore, and most of the scripts are either useless, or have moved to the *toolbox* repository on GitHub (and are now in go, and sometimes with tests). --- bin/git-blame-from-line-number | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100755 bin/git-blame-from-line-number (limited to 'bin/git-blame-from-line-number') diff --git a/bin/git-blame-from-line-number b/bin/git-blame-from-line-number deleted file mode 100755 index dbe1970..0000000 --- a/bin/git-blame-from-line-number +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -usage() { - echo "usage: $0 " - exit 1 -} - -filename="$1" - -[ -z "${filename}" ] && usage - -lineno="$2" - -[ -z "${lineno}" ] && usage - -line=$(git blame -L "${lineno}","${lineno}" "${filename}") -sha=$(echo $line | awk '{print $1}') - -if [[ "${sha}" == "00000000" ]]; then - echo "${line}" -else - git show "${sha}" -fi -- cgit 1.4.1