aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/index.hdr.in
Commit message (Collapse)AuthorAge
* replace <outp> command with \outp in docsGravatar Kurtis Rader2016-04-23
| | | | | | | | | | Doxygen has been warning that `<outp>` and `</outp>` are not valid XML/HTML commands since commit cb6d5d76 on 20016-04-04. That's primarily because there is at present no way to tell Doxygen to recognize new XML/HTML tags. The actual errors look like this: ``` .../string.doxygen:187: warning: Unsupported xml/html tag </outp> found ``` I hate build errors since they a) cause needless concern, and b) make it harder to notice when I've introduced a new error. So switch from XML/C## style markup to Doxygen style markup for the "outp" annotation.
* Rename "snippets" to "conf" internally, and document them as snippetsGravatar David Adam2016-04-06
| | | | Discussed in #2896.
* Customisable extra configuration, completion and function directoriesGravatar David Adam2016-04-04
| | | | | | | | | | | | | | | - Add options to the autotools build to set the path for the "vendor" or "extra" configuration snippets, functions and completions directories. - Remove the vendor_completions directory from the Xcode build, as these are relocatable and compiling the paths in does not make sense. This allows packaging tools like Homebrew and Nix to use a common directory outside of the main prefix for third-party completions, and to make these available for programmatic discovery through `pkg-config`. Closes #2113
* update lexicon for latest docsGravatar Mark Griffiths2016-04-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #2699 Fixes issues with: * 'string' function synopsis * Redirection display issues * Better file & path detection * Rendering of % & @ chars in both html and man * @ symbol in tutorial Improves robustness by implementing an @EOL marker to prevent hold buffer dumping extra chars after the end of an expression. Added new '{{' and '}}' meta-chars for when you want curly braces in a regexp that was previously tripping up the lexicon. Improve man/html presentation consistency for * string * printf * prompt_pwd * type Use cli-styling for 'practical' examples. Add <bs> tag for presenting content with preceding backslash. Signed-off-by: Mark Griffiths <mark@thebespokepixel.com>
* clarify behavior of ** globGravatar Kurtis Rader2016-03-29
| | | | Fixes #2680
* Reword: Always call suggestions sugggestionsGravatar Fabian Homborg2016-03-29
| | | | Not completions.
* Document pager searchGravatar Fabian Homborg2016-03-29
| | | | Fixes #2866.
* Document more keybindingsGravatar Fabian Homborg2016-03-29
| | | | Fixes #2866.
* Only read .fish files in the snippets directoriesGravatar Fabian Homborg2016-03-26
| | | | | This would allow us to add a README and allows users to easily disable something temporarily.
* Fix stylistic nit in glob documentationGravatar Fabian Homborg2016-03-03
| | | | The test is unnecessary.
* Add functions and configuration snippets hierarchyGravatar Fabian Homborg2016-02-26
| | | | | | | | | | | | This allows "vendors" (i.e. third-party upstreams interested in supporting fish) to add auto-loaded functions and eager-loaded configuration "snippets", while still allowing both the user and the administrator to fully override all of that. This has been inspired by systemd's configuration hierarchy, and implements a similar scheme whereby files with the same name in higher-ranking directories override files in lower-ranking ones. Fixes #1956
* Update index.hdr.inGravatar Adam Dymitruk2016-02-22
| | | | simple grammar correction
* docs: Remove duplicate color variable listingGravatar Fabian Homborg2016-02-21
|
* Add fish_color_autosuggestion to docsGravatar Fabian Homborg2016-02-19
| | | | Fixes #2741.
* Reinstate failglob behaviour for most commandsGravatar Andreas Nordal2016-02-15
| | | | | | | | | | | | | | | | | Expand globs to zero arguments (nullglob) only for set, for and count. The warning about failing globs, and setting the accompanying $status, now happens regardless of mode, interactive or not. It is assumed that the above commands are the common cases where nullglob behaviour is desirable. More importantly, doing this with `set` is a real feature enabler, since the resulting empty array can be passed on to any command. The previous behaviour was actually all nullglob (since commit cab115c8b9933ae7db9412c66d452c0ccb2d7152), but this was undocumented; the failglob warning was still printed in interactive mode, and the documentation was bragging about failglob behaviour.
* Merge change for lengthened and configurable escape key timeoutGravatar ridiculousfish2016-02-04
|\
| * change default escape timeoutGravatar Kurtis Rader2016-02-04
| | | | | | | | | | | | | | | | This changes the default escape timeout for the default keybindings (emacs mode) to 300ms and the default for vi keybindings to 10ms. I couldn't resist fixing a few nits in the fish_vi_key_bindings.fish file since I was touching it to set the escape timeout.
* | Document that appending to universal variables in config.fish is not aGravatar Fabian Homborg2016-01-24
| | | | | | | | | | | | good idea Fixes #2058.
| * document the escape timeoutGravatar Kurtis Rader2016-01-21
| |
* | Fix typos in indexGravatar Fabian Homborg2016-01-10
|/ | | | Fixes fish-site#30.
* Merge pull request #2607 from jakwings/docGravatar Fabian Homborg2015-12-16
|\ | | | | Improve documentations (see #354)
* | configure/docs: update sf.net to sourceforge.netGravatar David Adam2015-12-15
| | | | | | | | | | | | Closes fish-shell/fish-site#29 [ci skip]
| * Doc: Introduce Cartesian Products on the main documentaion page.Gravatar Jak Wings2015-12-14
| |
| * Doc: Introduce another simple way to separate variable names from text.Gravatar Jak Wings2015-12-14
|/ | | | | This can avoid the confusion between brace expansion and the cartesian product behavior of arrays, even if braces can help to do some hacks.
* vi-mode: Inherit \cf and \cb bindings as wellGravatar Fabian Homborg2015-11-06
| | | | | | | This makes them {forward,backward}-char instead of -word, which means they accept suggestions _fully_. Fixes #2255
* vi: Bind \cx to end-of-line in insert modeGravatar Fabian Homborg2015-10-28
| | | | This will also accept any autosuggestion completely.
* Make vi bindings inherit the defaultsGravatar Fabian Homborg2015-10-13
| | | | | | | | | | | This reduces code duplication and adds some previously unavailable bindings that don't quite _violate_ the vi-principle (like prevd-or-backward-word on alt-left) and matches other "impure" bindings like \cf for forward-word (a quite emacs-ish binding) we already have. Fixes #2412 Fixes #2472 Fixes #2255
* Removed misleading space in stderr redirection exampleGravatar Ashok2015-10-11
|
* Document that only variable expansion occurs in ""Gravatar Fabian Homborg2015-09-20
| | | | Fixes #925
* Fix a typo in docs/indexGravatar Alexei Sholik2015-09-15
|
* Fix typo in documentationGravatar Fabian Homborg2015-09-12
|
* Document %last process expansionGravatar Fabian Homborg2015-09-11
| | | | Fixes #2379 (at least the most pressing part of it).
* docs: Improve autoloading/event documentationGravatar Fabian Homborg2015-09-11
| | | | The thing that says "event handlers can't be autoloaded, put it in config.fish". I make good words.
* Document problems with event handlers and autoloadingGravatar Fabian Homborg2015-09-11
| | | | Fixes #845.
* Remove an errant ampersand from the docsGravatar ridiculousfish2015-08-26
| | | | Fixes fish-site issue 26
* Fix raw &amp in docsGravatar Kunal Mehta2015-08-04
| | | The missing semicolon caused a raw &amp to be rendered.
* Merge branch 'death_of_mimedb'Gravatar David Adam2015-07-25
|\
* | docs: typo fixesGravatar Razzi Abuissa2015-07-23
| | | | | | | | | | | | [skip ci] Signed-off-by: David Adam <zanchey@ucc.gu.uwa.edu.au>
| * __fish_complete_suffix: don't provide file description by defaultGravatar David Adam2015-07-23
|/ | | | | Drops dependency on the mimedb tool and reflects the changes made to the default chooser for files in #279.
* Use a better wording for escaping charactersGravatar Nitish Chandra2015-07-12
| | | | Replace the wording '... escapes the tab character ...' with '... represents the tab character ...'. Similarly for other escape sequences.
* docs: document pkg-config command for vendor_completions.dGravatar David Adam2015-05-01
|
* docs: document __fish_complete_path functionGravatar David Adam2015-05-01
| | | | Introduced with 6ece852 for #834.
* Revert "document evaluation of /etc/profile.d/*.fish, introduced in 20a6b65"Gravatar Konrad Borowski2015-04-14
| | | | This reverts commit e17f6fb2dcdbc147cfdb4a55639ad784a927f2a6.
* docs: move discussion of fishd file to universal variable sectionGravatar David Adam2015-03-26
|
* document evaluation of /etc/profile.d/*.fish, introduced in 20a6b65Gravatar David Adam2015-03-26
| | | | Work on #1956.
* update keybindings docsGravatar David Adam2014-11-13
|
* Vim bindings doc: describe modes better and explain some non-vim bindingsGravatar Jared Grubb2014-11-13
|
* document behaviour of arrays that are split on importGravatar David Adam2014-11-10
|
* Create and use $DATADIR/vendor_completions.d/ for upstream completionsGravatar David Adam2014-10-01
| | | | Closes #1485.
* Add Meta+H as keybinding for man page.Gravatar Konrad Borowski2014-09-28
| | | | | | | | Apparently, in zsh, Meta+H can be used to display the manpage for the current command. This commit adds this zsh feature to fish shell. The F1 keybinding is left, although it's now secondary according to fish help, as some terminal emulators don't let the user press F1 key.