From: Michael D. Lowis Date: Wed, 30 Nov 2016 21:13:29 +0000 (-0500) Subject: install xman along with the other binaries X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=aab3b2cd1c2f40149f58c246dd4c6bf971385780;p=projs%2Ftide.git install xman along with the other binaries --- diff --git a/Makefile b/Makefile index 6a3ece6..d3a56ad 100644 --- a/Makefile +++ b/Makefile @@ -29,12 +29,14 @@ install: all cp xpick $(PREFIX)/bin cp xfilepick $(PREFIX)/bin cp xtagpick $(PREFIX)/bin + cp xman $(PREFIX)/bin uninstall: rm -f $(PREFIX)/bin/xedit rm -f $(PREFIX)/bin/xpick rm -f $(PREFIX)/bin/xfilepick rm -f $(PREFIX)/bin/xtagpick + rm -f $(PREFIX)/bin/xman test: unittests ./unittests diff --git a/xman b/xman index 173bbb0..05d95b6 100755 --- a/xman +++ b/xman @@ -1,2 +1,2 @@ #!/bin/sh -(nohup man -P cat "$@" | fmt | edit -) &> /dev/null & +(nohup man -P cat "$@" | fmt | xedit -) &> /dev/null &