home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
vim.ftp.fu-berlin.de
/
2015-02-03.vim.ftp.fu-berlin.de.tar
/
vim.ftp.fu-berlin.de
/
unix
/
vim-6.2.tar.bz2
/
vim-6.2.tar
/
vim62
/
runtime
/
macros
/
less.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
2002-02-27
|
215 b
|
10 lines
#!/bin/sh
# Shell script to start Vim with less.vim.
# Read stdin if no arguments were given.
if test $# = 0; then
vim -c 'so $VIMRUNTIME/macros/less.vim' -
else
vim -c 'so $VIMRUNTIME/macros/less.vim' "$@"
fi