From af120ab348f2e1a5a39dec035ed9dcf84189a64e Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Mon, 3 Oct 2022 21:42:20 +0530 Subject: dotfiles --- zsh/oh-my-zsh/plugins/colored-man-pages/nroff | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 zsh/oh-my-zsh/plugins/colored-man-pages/nroff (limited to 'zsh/oh-my-zsh/plugins/colored-man-pages/nroff') diff --git a/zsh/oh-my-zsh/plugins/colored-man-pages/nroff b/zsh/oh-my-zsh/plugins/colored-man-pages/nroff new file mode 100755 index 0000000..4ae155d --- /dev/null +++ b/zsh/oh-my-zsh/plugins/colored-man-pages/nroff @@ -0,0 +1,12 @@ +#!/bin/sh + +# The whole point of this wrapper is to replace emboldening factor -u0 with +# -u1 under certain circumstances on Solaris. + +if [ "$1,$2,$3" = "-u0,-Tlp,-man" ]; then + shift + exec /usr/bin/nroff -u1 "$@" +else + # Some other invocation of nroff + exec /usr/bin/nroff "$@" +fi -- cgit v1.2.3-59-g8ed1b