Mercurial > vim
view runtime/macros/less.sh @ 29820:8629106c4982 v9.0.0249
patch 9.0.0249: no test for what 9.0.0234 fixes
Commit: https://github.com/vim/vim/commit/3a7ad904d27d904e57f7a22eb33872a587ae6673
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 23 19:54:27 2022 +0100
patch 9.0.0249: no test for what 9.0.0234 fixes
Problem: No test for what 9.0.0234 fixes.
Solution: Add a test. (issue https://github.com/vim/vim/issues/10950)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 23 Aug 2022 21:00:02 +0200 |
parents | 1b584a6f446c |
children |
line wrap: on
line source
#!/bin/sh # Shell script to start Vim with less.vim. # Read stdin if no arguments were given and stdin was redirected. if test -t 1; then if test $# = 0; then if test -t 0; then echo "Missing filename" 1>&2 exit fi 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 if test -t 0; then echo "Missing filename" 1>&2 exit fi cat else cat "$@" fi fi