Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/vim73/macros/less.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vim73/macros/less.sh')
-rwxr-xr-xvim73/macros/less.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/vim73/macros/less.sh b/vim73/macros/less.sh
new file mode 100755
index 0000000..484c714
--- /dev/null
+++ b/vim73/macros/less.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+# Shell script to start Vim with less.vim.
+# Read stdin if no arguments were given.
+
+if test -t 1; then
+ if test $# = 0; then
+ vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' -
+ else
+ vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' "$@"
+ fi
+else
+ # Output is not a terminal, cat arguments or stdin
+ if test $# = 0; then
+ cat
+ else
+ cat "$@"
+ fi
+fi