view unixSoft/bin/magic_editor.sh @ 351:bef29d49d19f

safe-paste: adds support for bracketed paste mode to zsh Since I don't use oh-my-zsh, just import their code directly with a reference. Based on the site where I learned about this [0], it's originally from [1], and I downloaded it from [2]. 0: https://cirw.in/blog/bracketed-paste 1: http://www.zsh.org/mla/users/2011/msg00367.html 2: https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/plugins/safe-paste/safe-paste.plugin.zsh
author Augie Fackler <raf@durin42.com>
date Mon, 10 Nov 2014 09:26:04 -0500
parents c30d68fbd368
children
line wrap: on
line source

#!/bin/sh
# "magically" pick the 'best' available editor for a given platform

# use emacs if it is running a server
# disabled because I ended up not liking using emacs as $EDITOR, weird, I know
# tempuid=`id -u`
# temphost=`hostname`
# if [ -e "/tmp/esrv$tempuid-$temphost" ]
# then
#     emacsclient "$@"
#     exit $?
# fi

# use subethaedit on OS X
if test "`uname`" = "Darwin" ; then
	if test "x`whereis see`" != "x" ; then
		see -w "$@"
		exit $?
	# no subetha, then try for textwrangler
	elif test "x`whereis edit`" != "x" ; then
		edit -w "$@"
		exit $?
	fi
fi

# we're not on a mac (or preferred mac editors failed, so we like gvim
if test "x`whereis gvim`" != "x"  && test "x$DISPLAY" != "x" ; then
	gvim -f "$@"
# ...or vim, since either gvim wasn't there or display wasn't set
elif test "x`whereis vim`" != "x" ; then
	vim -f "$@"
# wow, this is a weird host, use vi. if that doesn't exist, we're really screwed
else
	vi "$@"
fi

exit $?