On my machine, calling help only opens the main help page, and does  
not go to the specific page.
So:
help complete
open the help page commands.html, instead of commands.html#complete
(I have BROWSER set to "open")

To fix that, I wrote a little applescript:
---
#!/usr/bin/osascript
on run argv
        tell application "Safari"
                open location item 1 of argv
        end tell
end run
---
which I save as openURL, and then I set BROWSER to openURL.

Works, but maybe there is a more elegant solution?

Michael

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Fish-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fish-users

Reply via email to