Tutorial auto colouring, Man page and Make fixes

Completely fixes #1557 and the underlying Doxygen changes that caused
it. Should make fish docs simpler and more robust, more consistent and
generally prettier.

todo:
- trap unmarked text as arguments in context
- test & fix sed portability - see in particular. (so far tested on BSD
(Mac) and GNU sed).
- test Makefile changes
- last round of aesthetic changes and getting that ascii fish in there…
This commit is contained in:
Mark Griffiths
2014-08-08 03:44:37 +01:00
parent 6513c7eab8
commit 629a39b45b
28 changed files with 637 additions and 482 deletions

View File

@@ -23,11 +23,9 @@ The following code will create `rmi`, which runs `rm` with additional arguments
\fish
alias rmi "rm -i"
\endfish
This is equivalent to entering the following function:
# This is equivalent to entering the following function:
\fish
function rmi
rm -i $argv
end