summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-04-15 17:03:59 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-04-15 17:03:59 -0400
commitf62b10487c2d2560923865b07306765f8ff055a2 (patch)
treed8843020a98833e688a53d2d23436741f5e719fe /bin
parentd63d53e4b21cc68b04e3c52c717f507f785f6258 (diff)
Fiddle with the default editor
Start tracking .selected editor, make use of this in .profile. Create the v-editor script, which calls either $VISUAL, $EDITOR, or $SELECTED editor, depending. Symlink `v-editor' to `editor', to overide /bin/editor, which might be used by some stupid programs.
Diffstat (limited to 'bin')
l---------bin/editor1
-rwxr-xr-xbin/v-editor7
2 files changed, 8 insertions, 0 deletions
diff --git a/bin/editor b/bin/editor
new file mode 120000
index 0000000..8ca5677
--- /dev/null
+++ b/bin/editor
@@ -0,0 +1 @@
+v-editor \ No newline at end of file
diff --git a/bin/v-editor b/bin/v-editor
new file mode 100755
index 0000000..dc141bc
--- /dev/null
+++ b/bin/v-editor
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+if [ -n "$DISPLAY" ]; then
+ ${VISUAL:-$SELECTED_EDITOR} $@
+else
+ ${EDITOR:-$SELECTED_EDITOR} $@
+fi