summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-12-23 21:48:23 +0000
committerMaxime Coste <frrrwww@gmail.com>2013-12-23 21:52:59 +0000
commit5808b0a2285da3a950cda23ee61356a6c56cd6da (patch)
treefe4f3b3ba81f6366ace573033e0335a5c6b9e891
parentc8d3e1d32accbef23db719dfd80bf1fea87a66ff (diff)
Remove unmaintained global.kak
-rw-r--r--rc/global.kak15
1 files changed, 0 insertions, 15 deletions
diff --git a/rc/global.kak b/rc/global.kak
deleted file mode 100644
index 1915e8f1..00000000
--- a/rc/global.kak
+++ /dev/null
@@ -1,15 +0,0 @@
-def -shell-params \
- -shell-completion %{ global -c $1 } \
- tag %{ %sh{
- if [[ $1 != "" ]]; then
- tagname=$1
- else
- tagname=${kak_selection}
- fi
- params=$(global --result grep ${tagname} | sed "s/\([^:]*\):\([0-9]*\):\(.*\)/'\1:\2 \3' 'edit \1 \2; try %{ exec \"20k41Xs\\\\Q\3<ret>\" } catch %{ echo \"could not find [\3] near \1:\2\"; exec \2g }'/")
- if [[ ${params} != "" ]]; then
- echo "menu -auto-single ${params//$'\n'/ }"
- else
- echo echo tag ${tagname} not found
- fi
-}}