aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src
Commit message (Collapse)AuthorAge
...
* | | Consistency fixesGravatar Mark Griffiths2014-09-03
| | |
* | | Make line length, wrapping and spacing consistentGravatar Mark Griffiths2014-09-03
| | |
* | | Fixed a few more edge casesGravatar Mark Griffiths2014-09-03
| | |
* | | Tutorial auto colouring, Man page and Make fixesGravatar Mark Griffiths2014-09-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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…
* | | Fix missed escaped '--' inside /fish blockGravatar Mark Griffiths2014-09-03
| | |
* | | Lexicon filter: fix 'if' and 'for' special casesGravatar Mark Griffiths2014-09-03
| | |
* | | Style fix for sub-line commentsGravatar Mark Griffiths2014-09-03
| | |
* | | Fixes lexicon filter pipes '|"Gravatar Mark Griffiths2014-09-03
| | |
* | | Merged in latest changes to docs and formatting tweaksGravatar Mark Griffiths2014-09-03
| | | | | | | | | | | | | | | | | | Addresses issue #1557 as well as fixing many typos, HTML errors and inconsistencies. Also introduces automatic syntax colouring and enables new documentation to be written in Markdown. TODO fix Tutorial.
* | | Simplify stylingGravatar Mark Griffiths2014-09-03
| | |
* | | Documentation updateGravatar Mark Griffiths2014-09-03
| | | | | | | | | | | | | | | | | | Rework for Doxygen >1.8. Moved large parts of the documentation to a simplified format, making use of Markdown enhancements and fixing bad long options.
| | * failiure/failureGravatar Chris Wolfe2014-09-03
| |/ |/| | | Fix misspelling of failure in the fish shell design doc
| * Formatting updatesGravatar Mark Griffiths2014-09-03
| |
| * Merge branch 'master' into documentation-updateGravatar Mark Griffiths2014-08-30
| |\ | |/ |/|
| * Supporting files for developmentGravatar Mark Griffiths2014-08-30
| |
| * Addition of 'ascii fish' logoGravatar Mark Griffiths2014-08-30
| | | | | | | | + small fixes
* | Fix small typo in documentationGravatar Christos Kontas2014-08-30
| |
| * Various additions and fixesGravatar Mark Griffiths2014-08-27
| |
| * Merge branch 'master' into documentation-updateGravatar Mark Griffiths2014-08-26
| |\ | |/ |/| | | | | | | | | | | Conflicts (FIXED): doc_src/command.txt doc_src/index.hdr.in doc_src/read.txt doc_src/type.txt
| * Fish documentation formatting guidelinesGravatar Mark Griffiths2014-08-26
| |
| * Consistency fixesGravatar Mark Griffiths2014-08-26
| |
* | Merge branch 'make_type_better' of github.com:kballard/fish-shell into ↵Gravatar ridiculousfish2014-08-21
|\ \ | | | | | | | | | kballard-make_type_better
* | | doc: Document how IFS affects command substitutionGravatar Kevin Ballard2014-08-21
| | | | | | | | | | | | | | | | | | | | | IFS is used for more than just the read builtin. Setting it to the empty string also disables line-splitting in command substitution, and it's done this for the past 7 years. Some day we may have a better way to do this, but for now, document the current solution.
* | | doc: Fix docs on $HOME/$USERGravatar Kevin Ballard2014-08-21
| | | | | | | | | | | | | | | | | | The docs claimed that the $HOME and $USER variables could only be changed by the root user. This is untrue. They can be changed by non-root users as well.
* | | doc: Fix links in "Further help and development"Gravatar Kevin Ballard2014-08-21
| | | | | | | | | | | | | | | | | | Hyperlink the mailing list to the proper info page. Tweak the GitHub link to use https.
| | * Make line length, wrapping and spacing consistentGravatar Mark Griffiths2014-08-19
| | |
| | * Merge branch 'master' into documentation-updateGravatar Mark Griffiths2014-08-19
| | |\ | |_|/ |/| | | | | | | | | | | | | | Conflicts (FIXED): .gitignore doc_src/complete.txt doc_src/function.txt
| | * Fixed a few more edge casesGravatar Mark Griffiths2014-08-19
| | |
* | | Support for command wrapping ("aliases")Gravatar ridiculousfish2014-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the --wraps option to 'complete' and 'function'. This allows a command to (recursively) inherit the completions of a wrapped command. Fixes #393. When evaluating a completion, we inspect the entire "wrap chain" for a command, i.e. we follow the sequence of wrapping until we either hit a loop (which we silently ignore) or the end of the chain. We then evaluate completions as if the wrapping command were substituted with the wrapped command. Currently this only works for commands, i.e. 'complete --command gco --wraps git\ checkout' won't work (that would seem to encroaching on abbreviations anyways). It might be useful to show an error message for that case. The commandline builtin reflects the commandline with the wrapped command substituted in, so e.g. git completions (which inspect the command line) will just work. This sort of command line munging is also performed by 'complete -C' so it's not totally without precedent. 'alias will also now mark its generated function as wrapping the 'target.
| | * Tutorial auto colouring, Man page and Make fixesGravatar Mark Griffiths2014-08-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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…
| | * Merge branch 'master' into documentation-updateGravatar Mark Griffiths2014-08-05
| | |\ | |_|/ |/| | | | | | | | | | | Conflicts: doc_src/index.hdr.in -- UPDATED doc_src/license.hdr -- UPDATED
| | * Fix missed escaped '--' inside /fish blockGravatar Mark Griffiths2014-08-05
| | |
* | | Set $CMD_DURATION to milliseconds. Fixes #1585Gravatar Gio d'Amelio2014-08-04
| | |
* | | Clarify I/O redirection documentationGravatar David Adam2014-08-03
| | | | | | | | | | | | | | | | | | Fix the examples and try and improve the clarity of the section. Closes #1409.
* | | Remove getpeerid/getpeerucred and fallbacksGravatar David Adam2014-08-03
| | |
* | | Document new fish_title behavior per #334Gravatar ridiculousfish2014-08-03
| | |
| | * Lexicon filter: fix 'if' and 'for' special casesGravatar Mark Griffiths2014-08-03
| | |
| | * Style fix for sub-line commentsGravatar Mark Griffiths2014-08-02
| | |
| | * Fixes lexicon filter pipes '|"Gravatar Mark Griffiths2014-08-02
| | |
| | * Merged in latest changes to docs and formatting tweaksGravatar Mark Griffiths2014-08-02
| | | | | | | | | | | | | | | | | | Addresses issue #1557 as well as fixing many typos, HTML errors and inconsistencies. Also introduces automatic syntax colouring and enables new documentation to be written in Markdown. TODO fix Tutorial.
| | * Simplify stylingGravatar Mark Griffiths2014-08-01
| | |
| | * Merge branch 'master' into documentation-updateGravatar Mark Griffiths2014-08-01
| | |\ | |_|/ |/| | | | | | | | | | | Conflicts: doc_src/history.txt doc_src/test.txt
| | * Documentation updateGravatar Mark Griffiths2014-08-01
| | | | | | | | | | | | | | | | | | Rework for Doxygen >1.8. Moved large parts of the documentation to a simplified format, making use of Markdown enhancements and fixing bad long options.
* | | Fix bad example in docs for test -n $MANPATHGravatar ridiculousfish2014-07-29
| | | | | | | | | | | | Fixes #1574
* | | Add support for history --merge to incorporate history changes fromGravatar ridiculousfish2014-07-25
| |/ |/| | | | | | | | | other sessions. Fixes #825
* | Fix minor syntax and capitalization mistakes in vi mode docsGravatar David Xia2014-07-15
| |
* | Add docs for vi modeGravatar David Xia2014-07-15
| | | | | | | | fixes #1536
| * read: Support arrays, character splittingGravatar Kevin Ballard2014-07-14
| | | | | | | | | | | | | | | | | | | | Enhance the `read` builtin to support creating an array with the --array flag. With --array, only a single variable name is allowed and the entire input is tokenized and placed into that variable as an array. Also add custom behavior if IFS is empty or unset. In that event, split the input on every character, instead of the previous behavior of doing no splitting at all.
| * command: Rename -p/--path flag to -s/--searchGravatar Kevin Ballard2014-07-13
| |
| * test: Add a new --quiet flag to suppress outputGravatar Kevin Ballard2014-07-13
| | | | | | | | | | | | | | | | | | | | The --quiet flag is useful when only the exit status matters. Fix the documentation for the -t flag to no longer claim that `type` can print "keyword", as it never does that. Stop printing a blank line for functions/builtins when the -p flag has been passed. It's just not useful.