Browse Source

Remove Bwana.app support

Bwana.app has been stale for years. It no longer works properly.
master
Sorin Ionescu 11 years ago
parent
commit
232313e2a0
  1. 2
      modules/osx/README.md
  2. 4
      modules/osx/functions/_manb
  3. 24
      modules/osx/functions/manb

2
modules/osx/README.md

@ -15,7 +15,6 @@ Aliases @@ -15,7 +15,6 @@ Aliases
Functions
---------
- `manb` opens _man_ pages in [_Bwana.app_][2].
- `manp` opens _man_ pages in _Preview.app_.
- `pfd` prints the current _Finder_ directory.
- `pfs` prints the current _Finder_ selection.
@ -29,7 +28,6 @@ Authors @@ -29,7 +28,6 @@ Authors
- [Sorin Ionescu](https://github.com/sorin-ionescu)
[1]: http://www.apple.com/macosx/
[2]: http://bruji.com/bwana/
[3]: http://www.iterm2.com/
[4]: https://github.com/sorin-ionescu/prezto/issues

4
modules/osx/functions/_manb_manp → modules/osx/functions/_manb

@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
#compdef manb manp
#compdef manp
#autoload
#
# Completes manb and manp.
# Completes manp.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>

24
modules/osx/functions/manb

@ -1,24 +0,0 @@ @@ -1,24 +0,0 @@
#
# Opens man pages in Bwana.app.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function manb {
local page
if (( $# > 0 )); then
for page in "$@"; do
open "man://$page" 2>/dev/null
if (( $? != 0 )); then
print "$0: Bwana is not installed" >&2
break
fi
done
else
print 'What manual page do you want?' >&2
fi
}
manb "$@"
Loading…
Cancel
Save