From dd7302f311edde38d7761ba617be76ce78b74ed0 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Thu, 3 Feb 2022 16:54:27 +0100 Subject: [PATCH] zsh:funcs:nvim-man: Use subjunctive in comment --- .config/zsh/zshrc.d/40-functions.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/zshrc.d/40-functions.zsh b/.config/zsh/zshrc.d/40-functions.zsh index a6a5295..3a685af 100644 --- a/.config/zsh/zshrc.d/40-functions.zsh +++ b/.config/zsh/zshrc.d/40-functions.zsh @@ -403,7 +403,7 @@ nvim-man() { # Check for existence of man page. command man -w "$1" >/dev/null || return - # $MANPAGER does the trick too but lines are hard-wrapped. + # $MANPAGER would do the trick too but lines would be hard-wrapped. nvim -u NORC +"runtime! plugin/man.vim | Man $1 | only | set scrolloff=999 | normal M" else command man "$@"