bgeron-g
5d680f6dbc
Fix typo
2016-06-23 18:23:10 +02:00
Fabian Homborg
f9edcbbbe2
Document clipboard bindings.
2016-06-21 16:25:11 +02:00
Aaron Gyes
f04644f749
Lossless recompress of images with pngcrush+zopfli
...
And tweak RTF.
2016-06-18 10:03:26 -07:00
Fabian Homborg
8829bb1364
Expand string documentation
...
Explain that globs need to match the entire string and a bit about our
regular expressions.
2016-06-08 15:04:54 +02:00
David Adam
bb11999bf7
license.hdr: remove strlcat license information
...
Function and code removed in 5bf1b0e5f
[ci skip]
2016-05-30 16:00:23 +08:00
Fabian Homborg
ffe5736abb
History docs: Move descriptions to the corresponding options
...
This should clarify `--delete`s behavior without `--prefix` or
`--contains` a bit.
Fixes #3054 .
2016-05-28 14:22:16 +02:00
Fabian Homborg
d55b226f19
Document the rest of the electric/ro vars
...
Fixes #3072 .
2016-05-26 18:27:39 +02:00
Fabian Homborg
1bad956633
docs: Remove section about clipboard integration
2016-05-25 16:10:16 +02:00
Dennis Ideler
0a40dcdb44
Fix documentation links to or
and and
command
2016-05-24 17:16:30 -07:00
Fabian Homborg
dc470bcad3
Document noclobber redirections
...
Fixes #2812 .
2016-05-23 11:29:38 +02:00
Camille Scholtz
2606cfe72d
add option to modify script being restyled
...
This change allows the user to specify the script name on the CLI in addition
to being redirected from stdin. It also adds a `-w` flag to write the modified
script to the original file.
2016-05-22 20:00:23 -07:00
James Campos
432c0058a9
[doc] move regex example ( #3045 )
...
this example uses regex, so it should not be in the glob examples
2016-05-20 15:57:29 +02:00
ridiculousfish
30ea7cc3f8
Update docs to reflect new if/while condtion chaining
...
Documents new behavior in #1428
2016-05-19 13:01:12 -07:00
Kurtis Rader
73f2992a2e
make debug() output more useful
...
This change does several things. First, and most important, it allows
dumping the "n" most recent stack frames on each debug() call. Second,
it demangles the C++ symbols. Third, it prepends each debug() message
with the debug level.
Unrelated to the above I've replaced all `assert(!is_forked_child());`
statements with `ASSERT_IS_NOT_FORKED_CHILD()` for consistency.
2016-05-17 14:52:55 -07:00
Kurtis Rader
51468b7646
add function --shadow-builtin
flag
...
It's currently too easy for someone to bork their shell by doing something
like `function test; return 0; end`. That's obviously a silly, contrived,
example but the point is that novice users who learn about functions are
prone to do something like that without realizing it will bork the shell. Even
expert users who know about the `test` builtin might forget that, say, `pwd`
is a builtin.
This change adds a `--shadow-builtin` flag that must be specified to
indicate you know what you're doing.
Fixes #3000
2016-05-14 20:38:32 -07:00
Kurtis Rader
b055b8440c
enhance the key_reader program
...
The original `key_reader` program was useful but didn't do much that `xxd`
or `od -tx1z` didn't do. Furthermore, it wasn't built and installed by
default. This change adds features that make it superior to those programs
for decoding interactive key presses and makes it a first-class citizen
like the `fish_indent` program that is always available.
Fixes #2991
2016-05-10 14:11:30 -07:00
Vladimír Čunát
100eef4e42
docs: fix location of generated_completions ( #3010 )
2016-05-08 13:51:30 +02:00
Fabian Homborg
1d101ef3d0
docs: Mention cartesian product in variable-expansion section
...
See #3002 .
2016-05-07 19:49:15 +02:00
Alexey Alekhin
01e5ca5c96
Changed the code to add fish to /etc/shells to the one that is mentioned in the Readme
2016-05-06 18:47:57 -07:00
Kurtis Rader
d97c22df2d
add floating point output to math
command
...
This makes it easy for the user to request floating point output with the
desired number of digits after the decimal point (not to be confused with
significant digits).
Note that this is just a thin wrapper so someone can say `math -s3 10 / 3`
rather than `math "scale=3; 10 /3"`.
Resolves #1643
2016-05-03 19:29:04 -07:00
Jorge Bucaran
08c29727e0
Add missing color definitions to __fish_init_1_50_0 reset. ( #2987 )
...
* Add missing color definitions to __fish_init_1_50_0 reset.
The values where determined by inspecting the values of:
* fish_color_end
* fish_color_user
* fish_color_host
after resetting the color theme via fish_config.
* Add documentation for fish_color_user and fish_color_host.
2016-05-01 11:58:43 +02:00
Kurtis Rader
6c329e8a83
provide a realpath implementation
...
Not all distros have a `realpath` command. Provide a function that uses the
real command if available else use the fish builtin.
Fixes #2932
2016-04-28 16:03:27 -07:00
Fabian Homborg
ba5a22e2ce
Deprecate fish_vi_mode
...
This was never mentioned in the documentation as the way to switch to
vi-mode, and now does nothing of value anymore.
2016-04-26 15:21:15 +02:00
Kurtis Rader
dcef1a5593
more doxygen lexicon changes to eliminate errors
...
I noticed that Doxygen was also complaining about the "<asis>" and "<bs>"
tags. So convert those to the backslash form like we did for "<outp>" in the
previous commit.
2016-04-24 15:02:52 -07:00
Kurtis Rader
5df8fab463
replace <outp> command with \outp in docs
...
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.
2016-04-23 21:19:58 -07:00
Kurtis Rader
b8817215dc
trivial fixes to make doxygen happy
2016-04-23 12:26:57 -07:00
Fabian Homborg
6c5f923a47
Remove non-existing functions in bind docs
...
At least delete-line was previously a thing, but none of these are still available.
First part of #2914
2016-04-08 16:35:12 +02:00
Aaron Gyes
790c7f80c7
Implement an --invert/-v for string match, like grep -v.
...
Only lines that do not match the pattern are shown.
2016-04-08 10:49:29 +08:00
Fabian Homborg
8477126ae4
Correct true-color statement in set_color docs
...
- OSX Terminal does not support it
- We do some detection
2016-04-07 18:27:34 +02:00
Kurtis Rader
35e282928a
clarify documentation for the source
command
...
Make it clear that fish 2.3.0 changed how `$argv` is initialized.
2016-04-06 17:18:06 -07:00
Kurtis Rader
4ff8e6e781
change how redirections are formatted
...
Modify `fish_indent` to emit redirections without a space before the target of
the redirection; e.g., "2>&1" rather than "2>& 1" as the former is clearer to
humans.
Fixes #2899
2016-04-05 19:29:23 -07:00
David Adam
200a10e78d
Rename "snippets" to "conf" internally, and document them as snippets
...
Discussed in #2896 .
2016-04-06 09:33:09 +08:00
Mark Griffiths
9e93ddc097
Fix a couple of minor issues in string examples
...
Print correct return code in 2nd example
Remove syntax colouring in \cg
Signed-off-by: Mark Griffiths <mark@thebespokepixel.com>
2016-04-05 10:57:32 -07:00
Kurtis Rader
3435e94994
make the string man page more readable
...
I didn't notice when I merged commit cb6d5d76c8
by thebespokepixel.com that it removed the explicit wrapping in the `string`
man page. That makes `man string` harder to read so reinstate the explicit
wrapping.
2016-04-04 21:32:03 -07:00
David Adam
484c1484c9
Customisable extra configuration, completion and function directories
...
- 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
2016-04-04 15:58:13 -07:00
Mark Griffiths
cb6d5d76c8
update lexicon for latest docs
...
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>
2016-04-04 15:23:56 -07:00
Kurtis Rader
35cee1e39c
remove "doc" make target and rename "user_doc"
...
Fixes #2874
2016-03-30 19:20:23 -07:00
Kurtis Rader
0e18e2ba78
clarify behavior of ** glob
...
Fixes #2680
2016-03-29 16:44:44 -07:00
Fabian Homborg
d30f8fffc8
Reword: Always call suggestions sugggestions
...
Not completions.
2016-03-29 15:55:42 +02:00
Fabian Homborg
19dd28e400
Document pager search
...
Fixes #2866 .
2016-03-29 15:55:42 +02:00
Fabian Homborg
daf94e14d4
Document more keybindings
...
Fixes #2866 .
2016-03-29 15:55:42 +02:00
Fabian Homborg
7accadc33f
Only read .fish files in the snippets directories
...
This would allow us to add a README and allows users to easily disable
something temporarily.
2016-03-26 19:20:40 +01:00
Kurtis Rader
9d2b53450a
limit size of cd history to 25 directories
...
The existing implementation grows the $dirprev array without bounds. Besides
causing what would appear to be a memory leak it also makes the nextd and
prevd commands more expensive than they need to be. It also makes it harder to
create a useful "menu" cd command.
In addition to implementing a reasonable limit on the size of the $dirprev
array I've reformatted the code using fish_indent.
Update the documentation to include mentions of the $dirprev and $dirnext
variables as well as the limit on how much directory history is kept.
Fixes 2836
2016-03-23 13:36:00 -07:00
Nyanpasu
2e0205a746
Add missing "Universal Variables" to tutorial.hdr
2016-03-22 06:52:11 +08:00
Federico Ferri
168a156e58
implement swap-selection-start-stop function
...
The swap-selection-start-stop function goes to the other end of the highlighted text, the equivalent of `o' for vim visual mode.
Add binding to the swap-selection-start-stop function, `o' when in visual
mode.
Document swap-selection-start-stop, begin-selection, end-selection, kill-selection.
2016-03-20 19:22:04 -07:00
Fabian Homborg
5e09411340
Document more bind functions
...
Fixes #2534 as backward-kill-path-component is now documented.
2016-03-06 15:23:55 +01:00
Fabian Homborg
333415f42a
Fix stylistic nit in glob documentation
...
The test is unnecessary.
2016-03-03 10:30:53 +01:00
Fabian Homborg
0e8a8a7c80
Migrate abbrs from =-separated to space-separated
...
We silently upgrade existing abbreviations and change the separator when
saving.
This does not yet warn when the user is using the old syntax.
Resolves #2051
2016-03-02 10:59:12 -08:00
Kurtis Rader
f2246dfb34
reduce number of Unicode private-use characters
...
This narrows the range of Unicode codepoints fish reserves for its own
use from U+E000 thru U+F8FE (6399 codepoints) to U+F600 thru U+F73F (320
codepoints). This is still not ideal since fish shouldn't be using any
Unicode private-use codepoints but it's a step in the right direction.
This partially addresses issue #2684 .
2016-02-28 18:36:34 -08:00
Fabian Homborg
b41b962336
Clarify example in $PATH tutorial
...
See #2777
2016-02-29 00:12:26 +01:00
Fabian Homborg
60bd3c809a
Try to clarify test documentation for newbies
...
See #2773
2016-02-28 17:52:42 +01:00
Fabian Homborg
c1b384e5d3
Add functions and configuration snippets hierarchy
...
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
2016-02-26 12:14:55 +01:00
Adam Dymitruk
2f52f073da
Update index.hdr.in
...
simple grammar correction
2016-02-22 13:36:35 -08:00
Steve Stagg
c4cc9f9b8d
add files for the fish logo as used for the fish-shell stickers
2016-02-22 12:27:39 -08:00
Fabian Homborg
585c03db72
docs: Remove duplicate color variable listing
2016-02-21 13:58:15 +01:00
Fabian Homborg
8703c5bc00
Add fish_color_autosuggestion to docs
...
Fixes #2741 .
2016-02-19 15:20:34 +01:00
Andreas Nordal
62b76b26b4
Reinstate failglob behaviour for most commands
...
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
cab115c8b9
), but this was undocumented;
the failglob warning was still printed in interactive mode,
and the documentation was bragging about failglob behaviour.
2016-02-15 13:13:28 -08:00
Fabian Homborg
00cd01c89e
Soften abbr-in-config.fish wording
...
This isn't as necessary anymore and having abbrs in config.fish is nice
for e.g. storing it in git.
2016-02-13 17:08:19 +01:00
ridiculousfish
218843b9e4
Simplify escape character documentation in doc_src/bind.txt
2016-02-04 14:18:12 -08:00
ridiculousfish
25ad8866c9
Merge change for lengthened and configurable escape key timeout
2016-02-04 13:56:49 -08:00
Kurtis Rader
2646d51a0b
change default escape timeout
...
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.
2016-02-04 13:39:19 -08:00
Kurtis Rader
e88bfbc440
incorporate suggestion by @oranja
2016-02-04 13:39:19 -08:00
Kurtis Rader
b88e31b3f1
fix several build warnings
...
This fixes all but one of the warnings documented in issue #2685 . The
sole remaining warning is from the
string split '' abc
example in doc_src/string.txt. That example results in the man page
displaying
string split {} abc
I leave it to someone else to fix that problem (I'll open an issue
specifically for it since it took some effort to track down the source
of the warning).
Resolves issue #2685 .
2016-01-28 19:34:51 -08:00
Fabian Homborg
7c4f553acc
Better document that binds in config.fish don't work
...
Fixes #230
2016-01-24 14:32:43 +01:00
Fabian Homborg
4eb6aaf36f
Document that appending to universal variables in config.fish is not a
...
good idea
Fixes #2058 .
2016-01-24 14:32:43 +01:00
Fabian Homborg
8081e9f189
Document that abbrs should be added once
...
While abbrs are still stored in a universal variable, it's much quicker
to just add them once and not just put `abbr --add key value` in config.fish.
2016-01-24 14:32:43 +01:00
Kurtis Rader
0dac245b58
document the escape timeout
2016-01-21 20:22:25 -08:00
Kurtis Rader
f8ed1d182e
improve set_color and theme color documentation
...
This is meant to make it clear that fish cannot control the terminal
window background color. It also augments the set_color documentation to
describe how it decides which color the terminal can display.
Resolves #2421 .
Resolves #2184 .
2016-01-14 22:34:25 -08:00
Fabian Homborg
e1f988b987
Fix typos in index
...
Fixes fish-site#30.
2016-01-10 15:25:05 +01:00
ridiculousfish
4c4020babe
Shorten some of the language in random docs
2016-01-07 20:57:34 -08:00
Kurtis Rader
ef31aa94f8
clarify the documentation of builtin random
...
The random builtin command may or may not produce values with a truly
random distribution. So make the documentation reflect that reality. Also,
make the command consistent with similar shells (e.g., bash, zsh) which
produce a range of [0..32767].
Resolves issue #1272 .
2016-01-07 20:54:50 -08:00
Kevin Ballard
23fabf81d7
Tweak complete
docs again
...
* Add a note to the `--wrap` docs saying that wrapping only works when
specifying completions for commands, not for paths.
* Add more info about how `--arguments` is handled.
2016-01-01 19:54:21 -08:00
Kevin Ballard
19112980ee
Update the docs for complete
...
* Indicate which options can be repeated in the usage lines.
* Reorder the options in usage slightly to group better.
* Reorder the option descriptions to match the order as seen in usage.
* Update some of the option descriptions.
* Fix the documentation for -C to show that it must be `-CSTRING`
instead of `-C STRING`.
* Document the behavior of `-C` with no argument.
* Tweak some of the explanatory text after the option list.
* Delete `--authoritative` and `--unauthoritative` from the
documentation entirely. Those options appear to not actually do
anything in the new parser.
2016-01-01 18:20:50 -08:00
ffdd
076ebf8cee
Remove phone number.
2015-12-26 01:48:09 -05:00
Jannik V
6eea3992b3
Mention correct config file
...
While the tutorial explains how to set the `PATH` variable, it mentions the file `fish.config` but it should be `config.fish`.
2015-12-24 11:19:23 +01:00
Fabian Homborg
8a6f26ff9b
Document prompt_pwd
...
Fixes #253
2015-12-17 15:25:13 +01:00
Fabian Homborg
aefe084124
Merge pull request #2607 from jakwings/doc
...
Improve documentations (see #354 )
2015-12-16 16:35:17 +01:00
David Adam
aa5291c6bd
configure/docs: update sf.net to sourceforge.net
...
Closes fish-shell/fish-site#29
[ci skip]
2015-12-15 21:49:40 +08:00
Jak Wings
666dcd78ba
Doc: Link Cartesian Product in tutorial to main documentaion.
2015-12-14 02:36:00 +08:00
Jak Wings
70ee7650f3
Doc: Introduce Cartesian Products on the main documentaion page.
2015-12-14 02:36:00 +08:00
Jak Wings
aa974b58bc
Doc: Introduce another simple way to separate variable names from text.
...
This can avoid the confusion between brace expansion and the cartesian
product behavior of arrays, even if braces can help to do some hacks.
2015-12-14 02:36:00 +08:00
Kurtis Rader
dfaefb97ff
remove "normal" from the basic color name table
...
The special token "normal" should not be in the basic sixteen color table
because a) it is not a color, and b) it is special cased with the result of
resetting the terminal colors (usually via a ANSI X3.64 CSI [0m sequence).
2015-12-08 20:08:08 -08:00
Kurtis Rader
0a0acc8a2e
add support for ANSI "bright" colors
...
This adds support for the ANSI x3.64 "bright" colors in the basic sixteen
color palette. This is especially useful when trying to use the base colors
as a background color. The "bright" variants tend to be more useful as
background colors compared to the non-bright variants.
This also fixes a bug in so far as palette number 7 is actually grey and
not white whereas palette number 15 is white. At least on the terminal
emulators on which I've tested this change (Ubuntu xterm & uxterm, Mac
OS X Terminal & iTerm2).
Resolves issue #1464 .
2015-12-08 20:08:08 -08:00
Eugene Sharygin
5db811253e
psub: add -s, --suffix
2015-11-14 13:15:30 +01:00
seethemhigh
71d3357b71
Fix a doc typo
2015-11-10 23:54:28 +03:00
Fabian Homborg
c9577394eb
vi-mode: Inherit \cf and \cb bindings as well
...
This makes them {forward,backward}-char instead of -word, which means
they accept suggestions _fully_.
Fixes #2255
2015-11-06 10:25:27 +01:00
Fabian Homborg
bb491742ea
vi: Bind \cx to end-of-line in insert mode
...
This will also accept any autosuggestion completely.
2015-10-28 13:18:27 +01:00
Fabian Homborg
c0e8ad6f1f
Make vi bindings inherit the defaults
...
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
2015-10-13 21:08:55 +02:00
Ashok
f6f982226a
Removed misleading space in stderr redirection example
2015-10-11 18:47:26 +05:30
Fabian Homborg
54d1d98e39
Fix aliases with whitespace
...
And document how that stuff works.
Fixes #2220
Also, the string stuff is cool.
2015-09-23 13:28:32 +02:00
Michael Steed
d83ef07ca7
Merge new string builtin
...
This adds the new builtin 'string' which supports various string
manipulation and matching algorithms, including PCRE based regular
expressions.
Fixes #2296
Squashed commit of the following:
commit 4c3eaeb6e57d76463e9683c327142b0aeafb92b8
Author: ridiculousfish <corydoras@ridiculousfish.com>
Date: Sat Sep 12 12:51:30 2015 -0700
Remove testdata and doc dirs from pcre2 source
commit b2a8b4b50f2398b204fb72cfe4b5ba77ece2e1ab
Merge: 11c8a47
7974aab
Author: ridiculousfish <corydoras@ridiculousfish.com>
Date: Sat Sep 12 12:32:40 2015 -0700
Merge branch 'string' of git://github.com/msteed/fish-shell into string-test
commit 7974aab6d3
Author: Michael Steed <msteed@saltstack.com>
Date: Fri Sep 11 13:00:02 2015 -0600
build pcre2 lib only, no docs
commit eb20b43d2d
Merge: 1a09e70
5f519cb
Author: Michael Steed <msteed68@gmail.com>
Date: Thu Sep 10 20:00:47 2015 -0600
Merge branch 'string' of github.com:msteed/fish-shell into string
commit 1a09e709d0
Author: Michael Steed <msteed68@gmail.com>
Date: Thu Sep 10 19:58:24 2015 -0600
rebase on master & address the fallout
commit a0ec9772cd
Author: Michael Steed <msteed68@gmail.com>
Date: Thu Sep 10 19:26:45 2015 -0600
use fish's wildcard_match() for glob matching
commit 64c25a01e3
Author: Michael Steed <msteed68@gmail.com>
Date: Thu Aug 27 08:19:23 2015 -0600
some fixes from review
- string_get_arg_stdin(): simplify and don't discard the argument when
the trailing newline is absent
- fix calls to pcre2 for e.g. string match -r -a 'a*' 'b'
- correct test for args coming from stdin
commit ece7f35ec5
Author: Michael Steed <msteed68@gmail.com>
Date: Sat Aug 22 19:35:56 2015 -0600
fixes from review
- Makefile.in: restore iwyu target
- regex_replacer_t::replace_matches(): correct size passed to realloc()
commit 9ff7477a92
Author: Michael Steed <msteed68@gmail.com>
Date: Thu Aug 20 13:08:33 2015 -0600
Minor doc improvements
commit baf4e096b2
Author: Michael Steed <msteed68@gmail.com>
Date: Wed Aug 19 18:29:02 2015 -0600
another attempt to fix the ci build
commit 896a2c2b27
Author: Michael Steed <msteed68@gmail.com>
Date: Wed Aug 19 18:03:49 2015 -0600
Updates after review comments
- make match/replace without -a operate on the first match on each
argument
- use different exit codes for "no operation performed" and errors, as
grep does
- refactor regex compile code
- use human-friendly error messages from pcre2
- improve error handling & reporting elsewhere
- add a few tests
- make some doc fixes
- some simplification & cleanup
- fix ci build failure (I hope)
commit efd47dcbda
Author: Michael Steed <msteed68@gmail.com>
Date: Wed Aug 12 00:26:07 2015 -0600
fix dependencies for parallel make
commit ed0850e2db
Author: Michael Steed <msteed68@gmail.com>
Date: Tue Aug 11 23:37:22 2015 -0600
Add missing pcre2 files + .gitignore
commit 9492e7a7e9
Author: Michael Steed <msteed68@gmail.com>
Date: Tue Aug 11 22:44:05 2015 -0600
add pcre2-10.20 and update license.hdr
commit 1a60b93371
Author: Michael Steed <msteed68@gmail.com>
Date: Tue Aug 11 22:41:19 2015 -0600
add string builtin files
- string builtin source, tests, & docs
- changes to configure.ac & Makefile.in
commit 5f519cb2a2
Author: Michael Steed <msteed68@gmail.com>
Date: Thu Sep 10 19:26:45 2015 -0600
use fish's wildcard_match() for glob matching
commit 2ecd24f795
Author: Michael Steed <msteed68@gmail.com>
Date: Thu Aug 27 08:19:23 2015 -0600
some fixes from review
- string_get_arg_stdin(): simplify and don't discard the argument when
the trailing newline is absent
- fix calls to pcre2 for e.g. string match -r -a 'a*' 'b'
- correct test for args coming from stdin
commit 45b777e4dc
Author: Michael Steed <msteed68@gmail.com>
Date: Sat Aug 22 19:35:56 2015 -0600
fixes from review
- Makefile.in: restore iwyu target
- regex_replacer_t::replace_matches(): correct size passed to realloc()
commit 981cbb6ddf
Author: Michael Steed <msteed68@gmail.com>
Date: Thu Aug 20 13:08:33 2015 -0600
Minor doc improvements
commit ddb6a2a8fd
Author: Michael Steed <msteed68@gmail.com>
Date: Wed Aug 19 18:29:02 2015 -0600
another attempt to fix the ci build
commit 1e34e3191b
Author: Michael Steed <msteed68@gmail.com>
Date: Wed Aug 19 18:03:49 2015 -0600
Updates after review comments
- make match/replace without -a operate on the first match on each
argument
- use different exit codes for "no operation performed" and errors, as
grep does
- refactor regex compile code
- use human-friendly error messages from pcre2
- improve error handling & reporting elsewhere
- add a few tests
- make some doc fixes
- some simplification & cleanup
- fix ci build failure (I hope)
commit 34232e152d
Author: Michael Steed <msteed68@gmail.com>
Date: Wed Aug 12 00:26:07 2015 -0600
fix dependencies for parallel make
commit 00d7e78169
Author: Michael Steed <msteed68@gmail.com>
Date: Tue Aug 11 23:37:22 2015 -0600
Add missing pcre2 files + .gitignore
commit 4498aa5f57
Author: Michael Steed <msteed68@gmail.com>
Date: Tue Aug 11 22:44:05 2015 -0600
add pcre2-10.20 and update license.hdr
commit 290c58c72e
Author: Michael Steed <msteed68@gmail.com>
Date: Tue Aug 11 22:41:19 2015 -0600
add string builtin files
- string builtin source, tests, & docs
- changes to configure.ac & Makefile.in
2015-09-21 16:41:25 -07:00
Fabian Homborg
e70ed961ea
Document set_color resetting both for "normal"
...
Fixes #1658
2015-09-20 17:27:17 +02:00
Fabian Homborg
7216e36cb1
Document that only variable expansion occurs in ""
...
Fixes #925
2015-09-20 15:31:41 +02:00
Fabian Homborg
10a60b6ec2
Document cd -
...
Fixes #1946
2015-09-20 15:25:13 +02:00
Fabian Homborg
b13ee9da2a
docs: Rename cross to cartesian product, clarify
2015-09-17 14:17:52 +02:00
Fabian Homborg
a02d4dc27c
Document cross-product
...
At least in tutorial for now.
Fixes #2341
2015-09-15 17:05:35 +02:00
Alexei Sholik
8a1a446f45
Fix a typo in docs/index
2015-09-15 16:49:14 +03:00
Fabian Homborg
4bc8cf1a1a
Fix typo in documentation
2015-09-12 15:46:40 +02:00
Fabian Homborg
11c8a47d22
Document %last process expansion
...
Fixes #2379 (at least the most pressing part of it).
2015-09-11 21:12:36 +02:00
Fabian Homborg
b2323ca203
commandline docs: Add examples for the filters
...
i.e. "-t", "-b", "-j" and "-p"
2015-09-11 21:05:55 +02:00
Fabian Homborg
2c648c80c8
docs: Improve autoloading/event documentation
...
The thing that says "event handlers can't be autoloaded, put it in config.fish". I make good words.
2015-09-11 11:33:04 +02:00
Fabian Homborg
b8d9ba993d
printf docs: Improve wording
2015-09-11 11:33:04 +02:00
Fabian Homborg
3810ef47f7
Add multi-condition example to if documentation
2015-09-11 11:33:04 +02:00
Fabian Homborg
bbbadbcb78
Document printf
2015-09-11 11:33:04 +02:00
Fabian Homborg
c0acc98faa
Also document autoloaded event handlers in funcsave
2015-09-11 11:33:04 +02:00
Fabian Homborg
9828d787fa
Document problems with event handlers and autoloading
...
Fixes #845 .
2015-09-11 11:33:04 +02:00
Fabian Homborg
53456b5fc3
Document pushd "+N" and "-N"
...
Fixes #2173
2015-09-11 11:33:04 +02:00
Fabian Homborg
73a5e2bc6b
Document dirs -c
...
Fixes #2174
2015-09-11 11:33:04 +02:00
ridiculousfish
9a2ac5fcb6
Fix a typo in documentation for 'complete'
2015-09-10 18:09:08 -07:00
Fabian Homborg
b85a8bbbfe
Rename sgrep to __fish_sgrep
...
Makes it harder to cause issues with aliases, see fish-shell#2245
2015-09-09 20:55:04 +02:00
David Adam
8bf1e694fe
doc_src/complete: update for new options in synopsis
...
Update complete documentation, hopefully to avoid another #2368 .
[ci skip]
2015-09-09 17:42:42 +08:00
Fabian Homborg
bd3b4e03e9
Suspend docs: Fix typo
...
While not a huge thing, wrong variable names always carry great
confusion potential.
2015-09-06 15:03:43 +02:00
Fabian Homborg
f3695b95fc
Use $VISUAL before $EDITOR in funced
...
Closes #2268
2015-09-02 13:55:59 +02:00
Mike Meyer
32a3e15309
Add info to suspend help page.
2015-09-02 13:40:43 +02:00
Mike Meyer
0661553484
Add suspend help page.
2015-09-02 13:40:43 +02:00
ridiculousfish
e0e732523e
Remove an errant ampersand from the docs
...
Fixes fish-site issue 26
2015-08-26 21:15:59 -07:00
Igor Gali
34faf7638e
docs/design.hdr: inclusive lanugage
...
Closes fish-shell/fish-site#25 .
Signed-off-by: David Adam <zanchey@ucc.gu.uwa.edu.au>
[skip ci]
2015-08-17 20:27:13 +08:00
Kunal Mehta
07c109fad8
Fix raw & in docs
...
The missing semicolon caused a raw & to be rendered.
2015-08-04 13:09:47 +02:00
David Adam
d1d36cc9af
Merge branch 'death_of_mimedb'
2015-07-25 13:04:28 +08:00
David Adam
4401abb166
tutorial: arrays as a synonym for lists
...
Closes https://github.com/fish-shell/fish-site/issues/13
[skip ci]
2015-07-23 18:43:57 +08:00
Razzi Abuissa
27be004c64
docs: typo fixes
...
[skip ci]
Signed-off-by: David Adam <zanchey@ucc.gu.uwa.edu.au>
2015-07-23 15:12:10 +08:00
David Adam
6c668868e9
death of mimedb: remove mimedb from the tree
2015-07-23 14:35:35 +08:00
David Adam
6add8a7df9
open: drop mimedb dependency
2015-07-23 14:26:38 +08:00
David Adam
7fa69ef8be
__fish_complete_suffix: don't provide file description by default
...
Drops dependency on the mimedb tool and reflects the changes made to the
default chooser for files in #279 .
2015-07-23 14:26:38 +08:00
David Adam
a550695cba
fishd is dead, long live fishd
...
[skip ci]
2015-07-20 08:39:59 +08:00
Nitish Chandra
b057efdb37
Use a better wording for escaping characters
...
Replace the wording '... escapes the tab character ...' with '... represents the tab character ...'. Similarly for other escape sequences.
2015-07-12 11:25:32 -07:00
ridiculousfish
a5fabc6875
Further tweak the language about setting PATH in the tutorial
2015-07-03 12:46:40 -07:00
ridiculousfish
506720003d
Improve discussion of how to set PATH in the tutorial
...
Also fix a few broken anchors
2015-07-03 12:36:15 -07:00
David Adam
18d7465592
Merge branch 'Integration_2.2.0'
2015-06-05 14:02:25 +08:00
ridiculousfish
79a6961793
Add some simple documentation for fish_vi_mode
2015-06-04 13:18:17 -07:00
ridiculousfish
ec7dd1ece8
Add some simple documentation for fish_vi_mode
2015-06-04 13:17:33 -07:00
Michael Steed
cdfb425ac4
document new input functions
2015-06-04 12:09:02 -07:00
David Adam
c0cf25cf0b
abbr: rename --remove to --erase
...
for consistency with other fish commands
Closes #2071 .
2015-05-22 09:48:39 +08:00
David Adam
781b61d074
Merge branch 'Integration_2.2.0'
2015-05-21 15:32:23 +08:00
David Adam
1c99ef5b6e
FAQ: shorter fish_title fix
...
[skip ci]
2015-05-21 12:05:21 +08:00
Jeremy W. Sherman
c26d317da5
documents function options must follow name
...
When declaring a function using the function "function", the options must follow, not precede, the function name.
The examples demonstrate this syntax, but the synopsis previously showed the options preceding the name.
2015-05-17 14:45:54 -04:00
Jakukyo Friel
cec1dc2095
doc: faq: avoid overwriting config.fish.
...
In FAQ:
> I'm seeing weird output before each prompt when using screen. What's wrong?
The command provided is
echo 'function fish_title;end' > ~/.config/fish/config.fish
Using `>` will overwrite current config.fish.
We should use `>>` instead.
2015-05-03 23:38:05 -07:00
David Adam
5532e5aa8a
docs: document pkg-config command for vendor_completions.d
2015-05-01 16:56:21 +08:00
David Adam
9cae8bf8a6
docs: document __fish_complete_path function
...
Introduced with 6ece852
for #834 .
2015-05-01 16:56:21 +08:00
Ingo Blechschmidt
6f438f65de
typo
2015-04-25 18:59:43 +02:00
Konrad Borowski
9c007d1c94
Revert "document evaluation of /etc/profile.d/*.fish, introduced in 20a6b65"
...
This reverts commit e17f6fb2dc
.
2015-04-14 19:10:58 +02:00
David Adam
c10aab77da
docs: move discussion of fishd file to universal variable section
2015-03-26 10:31:25 +08:00
David Adam
e17f6fb2dc
document evaluation of /etc/profile.d/*.fish, introduced in 20a6b65
...
Work on #1956 .
2015-03-26 10:31:06 +08:00
Lucretiel
733108e33b
Updated exit.txt reference to source
...
Changed the text referencing 'source' in exit.txt from '.' to 'source'
2015-03-18 16:22:29 -04:00
Konrad Borowski
b5d9e366ad
Mention that for
variables are local.
...
This is the current behaviour, documentation can be updated if this
behaviour changes, assuming it can, because it's an incompatible
change.
2015-02-06 07:48:47 +01:00
David Adam
66acd17bc0
isatty: revert to previous behaviour
...
This partially reverts commit 60808a4820
.
2015-02-01 18:18:34 +08:00
David Adam
b9ff17f33c
test: note that the square bracket form is available
...
As requested in https://github.com/fish-shell/fish-shell/issues/1850
2014-12-28 19:03:26 +08:00
ridiculousfish
a76afd6dae
Clarify some documentation regarding fish_indent
2014-12-24 13:05:31 -08:00
ridiculousfish
d300bd4b62
Document new flags to fish_indent
2014-12-23 17:21:54 -08:00
David Adam
a7bab7b18b
abbr/web_config: support space-delimited abbreviations
...
Support for space-delimited abbreviations was added to the expansion
parser in fbade198; this commit extends that support to the user-facing
tools, and documents the space-separated behaviour. Equals-delimited
abbreviations are expected to be removed before the next release.
Work on #731 .
2014-11-15 23:48:40 +08:00
David Adam
51e446bc5f
update keybindings docs
2014-11-13 14:15:56 +08:00
Jared Grubb
f68f91b399
Vim bindings doc: describe modes better and explain some non-vim bindings
2014-11-13 14:15:55 +08:00
David Adam
7c2a420e88
add license for tmux code added in d944add
2014-11-10 16:06:02 +08:00
David Adam
f2447c537e
document behaviour of arrays that are split on import
2014-11-10 11:58:11 +08:00
David Adam
a31b44f9b2
contains: add documentation regarding the use of --
...
Closes #1194 .
[skip ci]
2014-10-26 19:02:03 +08:00
Kevin Ballard
72f5ab3186
Fix typo in abbr documentation
...
[skip ci]
2014-10-07 16:48:22 -07:00
David Adam
46241e383f
license.hdr: reduce duplication and clarify some comments
...
[skip ci]
2014-10-06 16:30:00 +08:00
David Adam
ea79f6b03f
license.hdr: remove licensing information for XSel, no longer shipped
...
[skip ci]
2014-10-06 16:30:00 +08:00
David Adam
501c3d5518
abbr.fish: add abbr, a command to manipulate abbreviations
...
Work on #731 .
2014-10-05 12:23:31 +08:00
Kevin Ballard
cfc06203e7
Add new functions
flag -V/--inherit-variable
...
--inherit-variable takes a variable name and snapshots its current
value. When the function is executed, it will have a local variable with
this value already defined. Printing the function source will include
synthesized `set -l` lines for the values.
This is primarily useful for functions that are created on the fly, such
as in `psub`.
2014-10-02 18:41:39 -07:00
Kevin Ballard
bae2b2cc47
Fix examples in bind
documentation
2014-10-01 18:20:09 -07:00
Kevin Ballard
b592da41f6
Fix doc example for echo
2014-10-01 15:30:36 -07:00
Jan-Thorsten Peter
646d9ab431
Added fish_preexec and fish_postexec events
...
Fixes #1549 .
2014-10-01 15:09:35 -07:00
David Adam
5157ac30fa
Create and use $DATADIR/vendor_completions.d/ for upstream completions
...
Closes #1485 .
2014-10-01 21:28:01 +08:00
Kevin Ballard
d67800bbce
Make false/true into builtins
...
Making `true` into a builtin is a significant optimization to `while
true` loops. As long as `true` is a builtin, we may as well make `false`
builtin as well (despite the fact that it's not typically executed in a
loop).
2014-09-29 13:39:35 -07:00
Konrad Borowski
26051ea198
Add Meta+H as keybinding for man page.
...
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.
2014-09-28 11:12:25 +02:00
ridiculousfish
4f4734fc9b
Fix some busted escape sequences in docs, and slightly reformat a few examples
2014-09-27 16:56:13 -07:00
Mark Griffiths
a9b7e4582f
Clean up font declarations
...
re: fish-shell/fish-shell@2726712e01
As this is rendering ok in Firefox, this version should pickup the best
fonts for most browser/os variants based on 'font-stretch' support.
`.fish_left_bar` should be condensed, the main body font shouldn't.
2014-09-23 12:14:20 +01:00
Konrad Borowski
2726712e01
Restore DejaVu Sans Condensed font.
...
With font-strentch: condensed, the rendering is acceptable.
2014-09-23 12:28:08 +02:00
Mark Griffiths
8d3d51a020
lexicon_filter fix for escaped options
...
Fixes #1703 . Also fixes short and long options markup in synopsis when
directly following a '(' or '[' character.
2014-09-23 00:24:05 -07:00
Kevin Ballard
5afd42c097
Suppress italics in keyboard shortcuts
2014-09-23 00:21:18 -07:00
Kevin Ballard
5b33e60752
Support bind SEQ
to print a binding for SEQ
2014-09-22 21:30:44 -07:00
Kevin Ballard
0a3f220572
Rework mode handling of bind
...
Binds with the same sequence in multiple modes was not working right.
Fix up the implementation to propagate modes everywhere as necessary.
This means that `bind` will properly list distinct binds with the same
sequence, and `bind -e` will take mode into account properly as well.
Note that `bind -e seq` now assumes the bind is in the default bind
mode, whereas before it would erase the first binding with that sequence
regardless of mode.
`bind -e -a` still erases all binds in all modes, though `bind -M mode
-e -a` still only erases all binds in the selected mode.
2014-09-22 21:04:06 -07:00
Kevin Ballard
4718636ae2
Update bind
documentation
...
Document all the `bind` flags, including modes.
Fixes #1663 .
2014-09-22 20:08:38 -07:00
Kevin Ballard
7a9e2d733a
Stop overriding <em> in user documentation
...
<em> used to represent something else, but as far as I can tell, all
uses of <em> in the documentation today actually represent text that's
supposed to be visibly different. Notably, the documentation on
supported escapes uses <em> to indicate the letters that are a
placeholder for e.g. a hex digit, as opposed to being a literal
character.
2014-09-22 14:47:01 -07:00
Kevin Ballard
fe9cf673a2
Add --right-prompt flag to read
...
Add a flag to read to allow for setting the right prompt command in
addition to the existing support for setting the prompt command.
Fixes #1698 .
2014-09-21 21:10:07 -07:00
Kevin Ballard
8f8c4cdd17
Implement new read --null
flag
...
The `--null` flag to `read` makes it split incoming lines on NUL instead
of newlines. This is intended for processing the output of a command
that uses NUL separators (such as `find -print0`).
Fixes #1694 .
2014-09-21 19:27:26 -07:00
Konrad Borowski
f889ad0fda
Don't use DejaVu Sans Condensed for documentation rendering.
...
This font, at least under Kubuntu 14.04 and Firefox I use is rather
ugly. Anti-aliasing is wrong, and the spaces between letters are
rather random. It makes reading the documentation headings and table
of contents harder than it needs to be.
Those issues don't happen with DejaVu Sans.
2014-09-21 14:35:32 +02:00
David Adam
708e21f929
fish_indent: minor documention updated
...
[skip ci]
2014-09-17 10:18:27 +08:00
Mark Griffiths
ea435d35ad
After proofreading, fixes a few minor typos.
2014-09-12 16:45:47 +02:00
Mark Griffiths
6b75a4593b
Merge remote-tracking branch 'upstream/master' into documentation-update
...
Conflicts (resolved):
doc_src/design.hdr - \c changed to backticks
2014-09-08 07:05:53 +01:00
Noah Frederick
8643a5e266
Clean up typos and style in design doc
...
This includes:
- Fixing some typos and misspellings
- Being consistent with pronouns (she/he)
- Hyphenating "built-in" and "command-line" where appropriate
2014-09-07 16:08:10 -07:00
Mark Griffiths
47f97bbdd5
Fixed a couple of typos
2014-09-07 17:43:58 +01:00
Mark Griffiths
2e034e767f
Update menus for consistency
...
Widened 'Commands' menu + fish logo
fish logo added to FAQ menu
'Commands' menu content aligned with Docs menu
'FAQ' menu content aligned and made 1st order as all entires are long
and wrap.
2014-09-07 17:35:19 +01:00
Mark Griffiths
f1bd2b823d
Strip working files
2014-09-04 13:13:57 +01:00
Mark Griffiths
ac92f54ca6
Updated Testing Info. Ready for PR.
...
Major documentation cleanup and update.
- Fixes Issue #1557
- Moves entire documentation to Markdown format. Much simpler.
- Fully supports Doxygen 1.8.7+
- All documentation targets updated: user_doc, share/man, doc and
doc/refman.pdf.
- Tested across Ubuntu, CentOS and Mac OS.
See doc_src/FORMATTING.md for in depth rationale and style guide.
2014-09-04 12:50:43 +01:00
Mark Griffiths
1b4c85eb69
Fixed Doxygen required version to 1.8.7
...
Doxygen 1.8.6 and lower do not have the \\htmlonly[block] directive
which fixes a multitude of problems in the rendering of the docs. In
Doxygen 1.8.7 the list of understood HTML entities was greatly
increased. I tested earlier versions and many little issues returned.
2014-09-04 12:07:07 +01:00
Mark Griffiths
fb792c60cd
Fix missed conflict
2014-09-04 12:01:08 +01:00
Mark Griffiths
cb9ef98bed
Fix Doxygen unresolved link error
2014-09-04 10:32:13 +01:00
Mark Griffiths
89f0b9abc3
Added Doxygen notes
2014-09-04 10:23:38 +01:00
Mark Griffiths
0e5ddfd9f5
Merge branch 'master' into documentation-update
...
Conflicts (fixed):
doc_src/design.hdr
2014-09-04 10:00:52 +01:00
Mark Griffiths
0a249c84ce
Added notes to Formatting doc
2014-09-04 09:48:30 +01:00
Mark Griffiths
76aeae5db6
Synopsis tweaks
2014-09-04 08:10:42 +01:00
Mark Griffiths
1facdd30fb
Formatting additions
2014-09-04 07:55:21 +01:00
Joseph Tannhuber
4acea72700
New -n option for read builtin
...
Usage: read -n nchars
Reads maximum of nchars characters. If nchars <= 0, there's no limit.
2014-09-03 22:48:37 -07:00
Mark Griffiths
cf688f6ba2
List fixes
2014-09-03 20:31:57 +01:00
Mark Griffiths
5f3b0d9f1e
Merge branch 'master' into documentation-update
...
Conflicts:
doc_src/design.hdr
2014-09-03 20:31:43 +01:00
Mark Griffiths
05848038db
Index long line fixes
2014-09-03 19:39:22 +01:00
Mark Griffiths
664e2e5686
Rebase conflict resolution
2014-09-03 15:14:11 +01:00
Mark Griffiths
adbcecb456
Rebase documentation changes
2014-09-03 15:10:53 +01:00
Mark Griffiths
3df9e20ca7
Formatting updates
2014-09-03 14:43:27 +01:00
Mark Griffiths
3f005c928a
Supporting files for development
2014-09-03 14:43:27 +01:00
Mark Griffiths
b3e28ac41a
Addition of 'ascii fish' logo
...
+ small fixes
2014-09-03 14:43:27 +01:00
Mark Griffiths
c39fe3433b
Various additions and fixes
2014-09-03 14:43:27 +01:00
Mark Griffiths
668fa66d78
Fish documentation formatting guidelines
2014-09-03 14:43:27 +01:00
Mark Griffiths
98ebb21489
Consistency fixes
2014-09-03 14:43:27 +01:00
Mark Griffiths
137abd0cfa
Make line length, wrapping and spacing consistent
2014-09-03 14:43:26 +01:00
Mark Griffiths
73fb9915fd
Fixed a few more edge cases
2014-09-03 14:43:26 +01:00
Mark Griffiths
509d152e54
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…
2014-09-03 14:43:26 +01:00
Mark Griffiths
def7666609
Fix missed escaped '--' inside /fish block
2014-09-03 14:43:25 +01:00
Mark Griffiths
7b093ee4b3
Lexicon filter: fix 'if' and 'for' special cases
2014-09-03 14:43:25 +01:00
Mark Griffiths
9f75cef5e5
Style fix for sub-line comments
2014-09-03 14:43:25 +01:00
Mark Griffiths
a410c31bf8
Fixes lexicon filter pipes '|"
2014-09-03 14:43:25 +01:00
Mark Griffiths
1cd50ba572
Merged in latest changes to docs and formatting tweaks
...
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.
2014-09-03 14:43:25 +01:00
Mark Griffiths
1052eeee8c
Simplify styling
2014-09-03 14:43:25 +01:00
Mark Griffiths
d282bc4625
Documentation update
...
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.
2014-09-03 14:43:24 +01:00
Chris Wolfe
677cee44ad
failiure/failure
...
Fix misspelling of failure in the fish shell design doc
2014-09-03 14:48:21 +02:00
Mark Griffiths
385b00a468
Formatting updates
2014-09-03 13:06:49 +01:00
Mark Griffiths
6068e85ef2
Merge branch 'master' into documentation-update
2014-08-30 12:38:57 +01:00
Mark Griffiths
ced471d4ce
Supporting files for development
2014-08-30 12:21:46 +01:00
Mark Griffiths
2445ac4a53
Addition of 'ascii fish' logo
...
+ small fixes
2014-08-30 11:03:02 +01:00
Christos Kontas
0f330d7226
Fix small typo in documentation
2014-08-30 08:03:24 +02:00
Mark Griffiths
3d29cc8636
Various additions and fixes
2014-08-27 00:30:08 +01:00
Mark Griffiths
d6c5a1e0c4
Merge branch 'master' into documentation-update
...
Conflicts (FIXED):
doc_src/command.txt
doc_src/index.hdr.in
doc_src/read.txt
doc_src/type.txt
2014-08-26 20:05:46 +01:00
Mark Griffiths
e90b1651e4
Fish documentation formatting guidelines
2014-08-26 19:19:48 +01:00
Mark Griffiths
66ccae4bfe
Consistency fixes
2014-08-26 19:19:24 +01:00
ridiculousfish
033373f078
Merge branch 'make_type_better' of github.com:kballard/fish-shell into kballard-make_type_better
2014-08-21 21:36:39 -07:00
Kevin Ballard
20899f2df9
doc: Document how IFS affects command substitution
...
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.
2014-08-21 20:57:23 -07:00
Kevin Ballard
b9948ca297
doc: Fix docs on $HOME/$USER
...
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.
2014-08-21 20:57:23 -07:00
Kevin Ballard
f33e6a053e
doc: Fix links in "Further help and development"
...
Hyperlink the mailing list to the proper info page.
Tweak the GitHub link to use https.
2014-08-21 19:15:58 -07:00
Mark Griffiths
4651919bd8
Make line length, wrapping and spacing consistent
2014-08-19 13:41:23 +01:00
Mark Griffiths
fed4bb5c07
Merge branch 'master' into documentation-update
...
Conflicts (FIXED):
.gitignore
doc_src/complete.txt
doc_src/function.txt
2014-08-19 11:42:21 +01:00
Mark Griffiths
3ea956a0b4
Fixed a few more edge cases
2014-08-19 10:58:22 +01:00
ridiculousfish
06400b83b1
Support for command wrapping ("aliases")
...
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.
2014-08-15 18:14:36 -07:00
Mark Griffiths
629a39b45b
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…
2014-08-08 03:44:37 +01:00
Mark Griffiths
cff928e2dc
Merge branch 'master' into documentation-update
...
Conflicts:
doc_src/index.hdr.in -- UPDATED
doc_src/license.hdr -- UPDATED
2014-08-05 13:50:21 +01:00
Mark Griffiths
6aa701b3ee
Fix missed escaped '--' inside /fish block
2014-08-05 13:07:46 +01:00
Gio d'Amelio
bcda3f1baa
Set $CMD_DURATION to milliseconds. Fixes #1585
2014-08-04 13:36:39 +08:00
David Adam
8844f0c142
Clarify I/O redirection documentation
...
Fix the examples and try and improve the clarity of the section.
Closes #1409 .
2014-08-03 18:54:10 +08:00
David Adam
6cabd42ed2
Remove getpeerid/getpeerucred and fallbacks
2014-08-03 15:40:44 +08:00
ridiculousfish
0daee33ad6
Document new fish_title behavior per #334
2014-08-03 00:00:26 -07:00
Mark Griffiths
7e3382340e
Lexicon filter: fix 'if' and 'for' special cases
2014-08-03 02:22:23 +01:00
Mark Griffiths
8ca88f14f7
Style fix for sub-line comments
2014-08-02 17:11:00 +01:00
Mark Griffiths
b4a4a7c611
Fixes lexicon filter pipes '|"
2014-08-02 17:10:28 +01:00
Mark Griffiths
f4077bd41f
Merged in latest changes to docs and formatting tweaks
...
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.
2014-08-02 04:51:43 +01:00
Mark Griffiths
cb5c560688
Simplify styling
2014-08-01 13:25:41 +01:00
Mark Griffiths
8ac0fdfea7
Merge branch 'master' into documentation-update
...
Conflicts:
doc_src/history.txt
doc_src/test.txt
2014-08-01 05:16:02 +01:00
Mark Griffiths
c070a2aa3e
Documentation update
...
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.
2014-08-01 03:37:32 +01:00
ridiculousfish
8144725739
Fix bad example in docs for test -n $MANPATH
...
Fixes #1574
2014-07-29 14:44:51 -07:00
ridiculousfish
e9f870e25a
Add support for history --merge to incorporate history changes from
...
other sessions.
Fixes #825
2014-07-25 10:49:12 -07:00
David Xia
fa88c42cf1
Fix minor syntax and capitalization mistakes in vi mode docs
2014-07-15 21:59:08 -04:00
David Xia
e84a762171
Add docs for vi mode
...
fixes #1536
2014-07-15 21:29:02 -04:00
Kevin Ballard
973dd6ffbd
read: Support arrays, character splitting
...
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.
2014-07-14 00:46:38 -07:00
Kevin Ballard
72e8489d50
command: Rename -p/--path flag to -s/--search
2014-07-13 19:11:29 -07:00
Kevin Ballard
6f7a7459c1
test: Add a new --quiet flag to suppress output
...
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.
2014-07-13 19:11:29 -07:00
Kevin Ballard
0933e5cab4
Fix typo in documentation for type
builtin
2014-07-13 19:11:29 -07:00
Kevin Ballard
cc565fc16c
Teach command
builtin a -p/--path flag
...
Give the `command` builtin a single flag, -p/--path, that causes it to
print the full path that would be executed for the given command.
2014-07-13 19:11:29 -07:00
Kevin Ballard
62d86b3d18
Fix documentation on variable scopes for read
...
The `read` docs incorrectly asserted that -g was the default for
variables. In actuality it behaves the same way that `set` does.
2014-07-14 09:12:00 +08:00
Kevin Ballard
dcc043df3b
Add an optional mode to env_get_string()
...
The mode restricts the scope in which the variable is searched for.
Use this new restricted scope functionality in the `set` builtin. This
fixes `set -g` to not show local shadowing variable values, and also
allows for scoped erasing of slices.
2014-07-12 15:35:34 -07:00
Kevin Ballard
8c89e6bce5
Fix typo and tweak set
docs
...
Move the docs for the `-n` flag to `set` out of the list of scopes.
2014-07-12 00:21:04 -07:00
ridiculousfish
3bc2dda00d
Merge branch 'death_of_fishd'
...
Incorporates more removal and cleanup of fishd remnants.
2014-06-18 11:19:28 -07:00
David Adam
f4bc1ef4a2
docs: clarify fish_greeting function and variable in FAQ
...
Tidy fish_greeting section in main documentation.
Closes #1506 .
2014-06-18 17:29:59 +08:00
ridiculousfish
be3e64e5ea
Remove fishd.cpp source, docs, and target from Makefile and Xcode
...
project
2014-06-05 11:49:05 -07:00
Alan Thompson
07944cfd20
Change terminology in docs from 'environment variables' -> 'shell variables'
2014-04-29 07:27:56 +02:00
David Adam
ba1b5e34a7
Check effective credentials of socket peers
...
Fix for CVE-2014-2905.
Code for getpeereid() on non-BSD systems imported from the PostgreSQL
project under a BSD-style license.
Closes #1436
2014-04-28 10:41:27 +08:00
ridiculousfish
aabed8279e
Incorporate a modified UTF8 <-> wchar_t implementation from Alexey
...
Vatchenko (http://www.bsdua.org/libbsdua.html ) in preparation for
eliminating our dependency on iconv
2014-03-22 23:46:58 -07:00
ridiculousfish
acd2038407
Remove old pager remnants, including documentation and references in the
...
build system
2014-03-15 14:24:05 -07:00
David Adam
3678f134d9
document Alt-F as well for accepting part of autosuggestion
...
Closes #1290 .
2014-02-10 17:28:47 +08:00
David Adam
c168e6f870
Documented Alt-Right to accept a single word of an autosuggestion
...
See https://github.com/fish-shell/fish-shell/issues/1262
2014-02-02 21:45:03 +08:00
Geoff Nixon
60808a4820
Enhance/fix isatty
using command test
.
...
Presently, `isatty` only works on a handful of keywords. Here it
is rewritten to be able to take any path, device or fd number as
an argument, and eliminates errors printed to stdout.
Per discussion in #1228 , using `builtin test -c` within a pipe to
test special file descriptors is not viable, so this implementation
specifcially uses `command test`. Additionally, a note has been
added to the documentation of `test` regarding this potential
aberration from the expected output of the test utility under the
'Standards' section.
2014-01-28 11:14:54 -08:00
ridiculousfish
32054b6f32
Implement and document new -P / --paging-mode flags to commandline, to support new
...
pager
2014-01-17 12:53:01 -08:00
Сергей Романов
d20f45b949
fix two minor typos in tutorial
2014-01-08 20:09:32 +03:00
Konrad Borowski
602f040940
Update Free Software Foundation address.
...
Fixes #1184 .
2013-12-13 21:51:52 +01:00
Thomas Cort
0ec97c5d1e
doc_src/eval.txt: fix typo.
...
'folloing' => 'following'
2013-12-10 19:09:32 +01:00
David Adam
63d93a2f9a
document new F1 binding
2013-11-09 20:12:53 +08:00
Antoine Gourlay
4dc40b83e4
Fix broken links in tutorial
2013-10-31 16:37:11 +01:00
David Adam
edc4614e63
add completions for source and document the move away from '.'
...
Closes : #310
2013-10-28 23:33:24 +08:00
Konrad Borowski
553eb6ed40
Document appending /
feature.
2013-10-06 14:17:33 +02:00
ridiculousfish
fab7299d49
Replace nextd/prevd <pre>s with \code
2013-10-05 12:13:16 -07:00
ridiculousfish
ad5ae9ba3b
New documentation UI, including tutorial.
2013-10-05 00:37:44 -07:00
ridiculousfish
6c70ed79ae
Update docs to describe autosuggestions. Fixes #937
2013-09-30 11:45:54 -07:00
Siteshwar Vashisht
0d2af9e742
Updated help text of fish_config command
2013-09-28 17:22:46 +05:30
David Adam (zanchey)
1565f9d9c3
fix typo introduced in b56542a9f
...
Thanks to @siteshwar for spotting.
b56542a9f1 (commitcomment-4083982)
b56542a9f1 (commitcomment-4083982)
2013-09-13 13:43:36 +08:00
David Adam (zanchey)
b56542a9f1
document new bindings introduced in cd1c2f74d3
2013-09-13 11:59:03 +08:00
David Adam (zanchey)
1442a2abe8
test documentation: update wording, generate test manual page ( closes #734 )
2013-09-13 11:59:03 +08:00
Tony Wang
1d67d8ff23
add -O and -G to test command
...
they are available on Linux and OS X, and now ported to fish
2013-08-25 15:54:06 -07:00
Mikko Viitamäki
6ec4591f02
fixing small typo
2013-08-16 11:45:15 +03:00
Konrad Borowski
679ef95257
Document source command.
2013-08-14 18:55:15 +03:00
David Adam (zanchey)
ed8ff85d2a
accidentally reopened #943 , fixed now
2013-08-07 11:26:57 +08:00
David Adam (zanchey)
b482cab7be
docs: add editor documentation, move binding information
...
closes #931
also fixes a crossreference error
2013-08-07 11:23:17 +08:00
Gennadiy Zlobin
6f3d7209c2
Fixes broken link in docs. Fixes #943
2013-08-04 14:53:00 +04:00
David Adam (zanchey)
27d84ef8be
documentation for test and function ( closes : #734 )
...
plus speling in documentation for bind.
Note that this commit does not re-enable the generation of the manpage for
test, which will therefore still fall through to the system manual page with
`man test`.
2013-07-29 16:07:00 +08:00
Konrad Borowski
07b7a65b86
Update documentation for $fish_user_paths
2013-06-22 17:22:05 +02:00
David Adam (zanchey)
8214ae9b15
docs: remove translation instructions
...
(Moved to https://github.com/fish-shell/fish-shell/wiki/Translations )
2013-06-05 16:00:08 +08:00
Dennis Ideler
2eb97edf02
Fix typo
...
Remove extra instance of "builtin commands", shouldn't be there.
2013-05-25 01:00:37 -07:00
David Adam (zanchey)
2ef9126744
FAQ: address local variable/env usage
2013-05-24 23:02:29 -07:00
David Adam (zanchey)
1d2cd99e96
FAQ: add questions from beta site
2013-05-24 23:02:29 -07:00
ridiculousfish
7d9b0a00e4
Add note about uninstalling fish
2013-05-16 09:32:31 -07:00
David Adam (zanchey)
1287b9d823
Help cleanup
...
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-13 01:48:20 -07:00
David Adam (zanchey)
91aab03b90
Document that fish functions cannot be background
...
(Documentation for #238 , #563 )
2013-05-13 01:48:20 -07:00
David Adam (zanchey)
e921dc50e0
FAQ updates - implicit cd and autosuggestions
2013-05-13 01:48:20 -07:00
David Adam (zanchey)
dd6bb04ba7
documentation typos
2013-05-13 01:48:20 -07:00
Siteshwar Vashisht
d4c881791f
Avoid generating man page and help section for printf (to fallback on system man page for printf)
2013-05-05 14:59:34 +05:30
Siteshwar Vashisht
516be01366
Added documentation for printf
...
Fix for https://github.com/fish-shell/fish-shell/issues/488
2013-05-05 12:27:38 +05:30
ridiculousfish
4a4f8ec523
Clarify "input/output methods" in documentation
2013-05-04 11:53:50 -07:00
ridiculousfish
0c004147c0
Merge branch 'zanchey-docs'
...
Conflicts:
doc_src/index.hdr.in
2013-05-04 11:47:07 -07:00
ridiculousfish
451eb13e0e
Add a note about getting help through man pages
2013-05-04 11:43:15 -07:00
Kurtis Nusbaum
4e84cf1d38
Fixed small typo
...
Fixed a small typo that I noticed in the design docs.
Pretty sure it was meant to say "turned off" instead
of "turned of".
2013-05-01 18:37:52 -05:00
Eivind Uggedal
72b7e64ad8
Tiny typo.
2013-05-01 12:27:55 +02:00
David Adam
c3690b0878
index.hdr.in: slightly more controversial changes
...
- Clarify wording in functions section
- Use the term aliases rather than wrappers
- Clarification of concepts and better? examples in variable expansion
- Likewise in environment variables
- Using the phrase builtin commands rather than builtins
- Tidy up keybindings a bit
- Another example in the history section
- Remove TODO section in favour of mailing list, GitHub and IRC link
2013-04-30 18:24:23 +08:00
David Adam
b3f248fd19
index.hdr.in: (hopefully) non-controversial edits
2013-04-30 18:24:23 +08:00
David Adam
d4686e6a59
index.hdr.in: add code markup
2013-04-30 18:09:34 +08:00
David Adam
14af6ba2af
status command: improve help text
2013-04-29 13:46:00 +08:00
David Adam
c3ee3af201
miscellaneous typos
2013-04-29 13:45:48 +08:00
ridiculousfish
74ef1bc8ff
Fix typos in count documentation
2013-04-28 15:59:21 -07:00
Eivind Uggedal
26eeb9f37a
Fix broken sentence in the Job Control section of the user doc.
2013-04-28 14:51:13 -07:00
Steven Fackler
03c1f2ef5b
Some documentation cleanup
2013-04-21 21:36:48 -04:00
Dmitry Chestnykh
c54097af20
Fix typo in docs
2013-04-20 13:30:40 -07:00
nmeum
24afe544a3
Typos
2013-04-14 12:19:56 +05:30
ridiculousfish
3d7ff9f758
Remove "law of minimalism" since echo is now a builtin and we're pretty clearly prioritizing performance over modularity.
...
https://github.com/fish-shell/fish-shell/issues/612
2013-04-13 23:13:18 -07:00
nmeum
7f6f0ca103
Fixed a typo
...
It should be 'directory' not 'direcotry'
2013-04-13 22:38:29 +02:00
Kenneth Vestergaard
6a97b45ad1
Add note to docs.
2013-03-10 14:24:16 -07:00
ridiculousfish
b2012467b3
Document -e and -E flags for echo, and provide some examples
2013-03-05 17:37:44 -08:00
ridiculousfish
85a5319c4b
Add some examples to set_color
2013-03-04 12:05:21 -08:00
Daniel James
6ca11044a4
Remove -v flag from set_color synopsis.
...
The -v documentation was removed when set_color was made a builtin, but wasn't removed from the synopsis.
2013-03-04 11:33:50 -08:00
Jacob Johnson
1b0e4a0067
Update doc_src/contains.txt
...
Escaped the $
2013-02-20 17:17:53 -08:00
ridiculousfish
d3e9183303
Add a note to the documentation about fish_user_paths
2013-02-19 18:05:20 -08:00
ridiculousfish
8d95d0834d
First stab at builtin set_color. Moved set_color.cpp to builtin_set_color.cpp and taught fish about it.
2013-02-14 15:52:24 -08:00
ridiculousfish
ad8d68dd43
Make subcommands modify $status, and make builtin_set not modify status unless it fails
...
https://github.com/fish-shell/fish-shell/issues/547
https://github.com/fish-shell/fish-shell/issues/214
2013-01-31 15:57:08 -08:00
ridiculousfish
91bf41cfce
Document new MAC address behavior
2013-01-08 02:43:14 -08:00
Jan Kanis
a4c646f75c
make 'alias' check for recursive calls and insert 'command'; update docs, fix #486
2013-01-01 22:56:08 +01:00
Jan Kanis
808fac9b14
document set -L/--long option
2012-12-29 11:56:11 -08:00
Jan Kanis
737972be2f
clarify docs on variable scope in functions
2012-12-29 11:56:10 -08:00
ridiculousfish
489366290a
Re-point some URLs at the fish homepage fishshell.com
2012-12-27 02:17:14 -08:00
Jan Kanis
af3059ab2a
Allow 'emit' to accept event arguments
2012-12-20 16:13:00 +01:00
ridiculousfish
2628da4a59
Removed some debugging code used in determining autosuggestion truncation
...
Fixed a busted link in the function doc
2012-12-11 14:44:41 -08:00
ridiculousfish
90495f3ac5
Implement new newline-escaping behavior. Backslashes at the end of lines now essentially delete the newline, within normal text or double quotes. Backslashes are retained within single quotes.
...
Fixes https://github.com/fish-shell/fish-shell/issues/347
Fixes https://github.com/fish-shell/fish-shell/issues/52
2012-11-22 01:09:07 -08:00
David Adam (zanchey)
be5fde9e54
test documentation - format examples properly
2012-11-08 10:08:06 -08:00
David Adam (zanchey)
abfc7e16a1
test documentation - correct argument listing
2012-11-08 10:08:06 -08:00
ridiculousfish
d76f880faf
Support for fish_right_prompt
...
Fixes https://github.com/fish-shell/fish-shell/issues/80
2012-11-07 19:59:20 -08:00
Nate Soares
f310f1e96c
keybindings → key_bindings (for consistency)
2012-10-20 12:15:49 -07:00
ridiculousfish
14bf057c62
Remove bogus path from example of "." (source) command
...
https://github.com/fish-shell/fish-shell/issues/297
2012-10-04 14:57:23 -07:00
ridiculousfish
1a59346b51
Changed "elseif" to "else if"
2012-09-03 13:24:01 -07:00
ridiculousfish
de5223db66
Improve documentation and error reporting for elseif.
2012-09-01 02:14:13 -07:00
Rubycut
1b8f1650dc
explain how to load binds automatically
2012-08-04 11:32:04 -07:00
Anders Bergh
13b1b73c15
Replaced references to http://fishshell.org/ with http://ridiculousfish.com/shell/ .
2012-08-01 18:09:50 +02:00
maxfl
81e0342bf6
index range doc
2012-07-24 03:56:34 +05:30
ridiculousfish
8643870822
Tweaked fish_prompt document in a way I hope clarifies it
2012-07-13 21:32:50 -07:00
Dario Bertini
6819696222
Added small note to the fish_prompt doc
2012-07-12 14:52:15 -07:00
ridiculousfish
193bbd4e00
Tweaked pwd note about symbolic links
2012-07-12 14:48:51 -07:00
Dario Bertini
1bf168348e
Added doc for pwd
2012-07-12 14:45:37 -07:00
maxfl
0c03b6ddc7
Allow 'contains' builtin to return index
...
Add an option -i/--index to the contains builtin to print the index
of first coincidence.
2012-07-10 16:21:00 -07:00
maxfl
76e1cda495
Set single-line default prompt
...
Fish now doesn't join the fish_prompt output. This breaks the default
fish_prompt. Make default fish_prompt single-line. Fixes #203 .
Add -l flag to 'read' documentation. Remove ambiguous '-x' description.
Fixes #157 .
2012-07-07 23:34:16 -07:00
Sean DuBois
c45479a6e5
Created the man page for echo and test
2012-07-06 14:41:44 -07:00
maxfl
fe26284376
Doc is updated
...
btw. funced completion is updated
2012-07-01 14:20:43 -07:00
maxfl
a02aa7a316
Step coloring for fish_pager introduces new variable
...
fish_pager_color_secondary to set background of every second completion
line. It simplifies finding the options corresponding to given
description. Default color is 151515.
2012-06-29 18:53:22 -07:00
ridiculousfish
3ab26a5d40
Updated funced documentation to reflect new behavior
2012-06-29 18:41:37 -07:00
maxfl
85f19f9b8c
Add -e option to funced
...
New option -e or --editor allows to edit function inside external
editor, rather than in reader.
2012-06-29 16:42:34 -07:00
David Adam (zanchey)
08e78e63cf
docs: fix percentage sign escape character
...
(Patch taken from Debian packaging.)
2012-06-18 14:01:22 -07:00
Siteshwar Vashisht
25f9105a97
Made history --help show history man page and history is now saved only once while deleting items
2012-06-12 14:20:07 +05:30
Torsten Grust
aad27a7a68
Fixed closing <pre> tag
...
- Was an opening tag, should have been a closing tag
- Confused Doxygen 1.8.1.1 on my machine (OS X 10.7), resulting in the fish man pages not being installed at all
2012-06-11 13:46:47 +02:00
Siteshwar Vashisht
ec34f2527a
Adding history builtin
2012-06-05 09:54:42 +05:30
ridiculousfish
4edfd6d9d6
Update set_color documentation
2012-05-25 02:14:26 -07:00
ridiculousfish
8351ec0afd
Document some of the new commands
2012-05-25 02:07:21 -07:00
Jakukyo Friel
cde6067cae
minor changes on user doc
2011-02-20 02:58:11 +08:00
James Vega
9f3a4d1640
Fix some spelling mistakes
...
Fix spelling mistakes in various bits of the documentation.
Signed-off-by: James Vega <jamessan@debian.org>
Signed-off-by: Grissiom <chaos.proton@gmail.com>
2010-11-23 23:50:49 +08:00
Grissiom
1b9dd0c75f
Merge remote branch 'origin/otherchirps-dev'
2010-09-19 14:12:30 +08:00
Grissiom
70322077d2
remove trialing spaces #2
2010-09-18 10:18:26 +08:00
Christopher Nilsson
ec8b3593f3
added '-c' option to the functions.txt docs.
2010-09-12 20:29:34 +10:00
axel
e50d0c18b0
Update todo list
...
darcs-hash:20090308142007-ac50b-22e9cc31212ff9647f75426327cdf5aff2d30f79.gz
2009-03-09 00:20:07 +10:00
axel
d5320fb9f9
Update copyright info, minor layout changes to section about licenses in fish
...
darcs-hash:20090222224540-ac50b-69c4f8dd027e4672b8d25f8240c1d5f625135ad1.gz
2009-02-23 08:45:40 +10:00
axel
f71c6f3f0e
Misc documentation updates
...
darcs-hash:20090222191714-ac50b-fdd090aafd60f71989ef5c63aac9f876dcad93eb.gz
2009-02-23 05:17:14 +10:00
axel
f5be301a2f
Handle exit status of processes terminated by signals
...
darcs-hash:20090221164656-ac50b-7bcbf6cb0bb8384560fbf9bf1059480cb4089def.gz
2009-02-22 02:46:56 +10:00
axel
972f3e121e
Document rename of save_function to func_save. Pointed out by Ovchinnikov George
...
darcs-hash:20090218202037-ac50b-0351e8564d3274cd4fb364c07b4a3260f8a45f20.gz
2009-02-19 06:20:37 +10:00
axel
0dd8ae4843
Added faw entry on history editing, written by Beni Cherniavsky
...
darcs-hash:20090216211940-ac50b-4175fb2ae8ec2f5a67ac3c6a33a48bc5ac35eea2.gz
2009-02-17 07:19:40 +10:00
axel
07717a3570
Add possibility to define greeting function, suggested by Chris Miller
...
darcs-hash:20090216210450-ac50b-9b4f7c5bf45afaf21d51e46ff8c2b11d171fcbf2.gz
2009-02-17 07:04:50 +10:00
Isaac Dupree
9b95dda6bf
fix help for open
...
darcs-hash:20080605192305-6c1c4-ccf59a87bf7197b5d07a33d7aaeb31638aa0aa52.gz
2008-06-06 05:23:05 +10:00
Ori Avtalion
e73c2be216
Add missing commas, letters and \c in the documentation
...
darcs-hash:20080210210053-57fc3-f7e03b3fca9dff8bdc02256dfb78478b68945015.gz
2008-02-11 07:00:53 +10:00
liljencrantz
0ad64ad2e4
Improve documentaion for bind builtin, clarify how to specify key sequences.
...
darcs-hash:20080119003820-75c98-b1f9360ddab9206a1cdf77b94ce28e9978badb53.gz
2008-01-19 10:38:20 +10:00
liljencrantz
0de629e009
Fix spelling in docs and add a help page for the funced builtin. These changes where suggested by Emanuele Rusconi.
...
darcs-hash:20080118155413-75c98-eadff877b3af3c3271b098903f80a45082111424.gz
2008-01-19 01:54:13 +10:00
liljencrantz
88a2b622df
Add more documentation on events
...
darcs-hash:20080116222531-75c98-ef30dabc492d7883dbb620c40ef95152469057a3.gz
2008-01-17 08:25:31 +10:00
James Vega
e510d10c77
Fixed various spelling errors.
...
darcs-hash:20080113200151-35ec8-c587f020aec07a5e613068677bd3dd4f5c6189ac.gz
2008-01-14 06:01:51 +10:00
liljencrantz
22472ea980
Update todo list
...
darcs-hash:20080113011617-75c98-8a3bcc0b4a2c58e5f2b13c51f372e7349ffec32d.gz
2008-01-13 11:16:17 +10:00
liljencrantz
2229fad410
Fix bug in return and block builtins - they where unable to handle functions that do not shadow the calling scope
...
darcs-hash:20080109030136-75c98-05f7a48cd991ac24e15d7e8b580caef0396ff59c.gz
2008-01-09 13:01:36 +10:00
liljencrantz
8e9384e2e8
Update todo list again. :-)
...
darcs-hash:20080109020655-75c98-9255c6c2287859211af77869fe2eb77543390c03.gz
2008-01-09 12:06:55 +10:00
liljencrantz
394776c56b
Update todo list and code comments
...
darcs-hash:20080109012338-75c98-745297861fd11ec82e062a79fe1d15c9084342f1.gz
2008-01-09 11:23:38 +10:00
liljencrantz
cb59da7a6f
Fix typo in docs on exporting rules. This issue was pointed out by Isaac Dupree.
...
darcs-hash:20080108213600-75c98-b68f1bc3846ca7050955ee0f133acd20282cb908.gz
2008-01-09 07:36:00 +10:00
liljencrantz
bdec900aca
Minor doc updates
...
darcs-hash:20080108210918-75c98-7510c066f74a2c3f4bf60bda84237adcef2ca276.gz
2008-01-09 07:09:18 +10:00
liljencrantz
063c4d7e67
Add comment on CDPATh being a universal variable after comments from Isac Dupree.
...
darcs-hash:20080107235427-75c98-3f56a4f450bb9beb66c9949c9313a1991754d8fb.gz
2008-01-08 09:54:27 +10:00
liljencrantz
30cfa2a445
Add explanation to csh versus sh variable naming in docs.
...
darcs-hash:20080108194127-75c98-b44c6f18607cf270fae16179cd0df3e84f980b91.gz
2008-01-09 05:41:27 +10:00
liljencrantz
71c2cde390
Cleanup and improve the exit status numbers and the messages generated on error as well as make sure that keyboard shortcuts don't change the status
...
darcs-hash:20080108193145-75c98-56c8aa2dd081af643d206820aa36bf3b6e49e0f2.gz
2008-01-09 05:31:45 +10:00
liljencrantz
a52bd219b9
Remove lots of things from the todo which have been implemented
...
darcs-hash:20071028190344-75c98-9ccc5b5dab1f788c5179d5a527e6823d207f832e.gz
2007-10-29 05:03:44 +10:00
liljencrantz
175dd75a3d
Tiny touchups of docs and code
...
darcs-hash:20071006105527-75c98-339c5d7ec2fbae0c2d4dc93552db85c389971a6a.gz
2007-10-06 20:55:27 +10:00
liljencrantz
713c84d821
Make the . builtin have a more useful (and posix-compatible) exit status
...
darcs-hash:20071005145808-75c98-17100c1e321b8bca06f75e900db1386451232f98.gz
2007-10-06 00:58:08 +10:00
liljencrantz
f4f10a8226
Documentation improvements on new key binding system
...
darcs-hash:20070928213654-75c98-a4845fb417b0b29a75d4a337df18250bc488e271.gz
2007-09-29 07:36:54 +10:00
liljencrantz
cf8e746d0c
First stab at dropping all support for readlines inputrc files and instead using an internal system for performing keybinding.
...
darcs-hash:20070925161447-75c98-1feaef88a4b518badb7879f598f06ab650a8f93b.gz
2007-09-26 02:14:47 +10:00
liljencrantz
61ebc12dd4
Minor polish like adding missing whitespace, switch to using --argument switch in function definitions to make code more readable, add a few minor saftey checks, etc.
...
darcs-hash:20070923210730-75c98-88557ba8b6020cae04a5e437c6bb6370e39c04d9.gz
2007-09-24 07:07:30 +10:00
liljencrantz
c0aac8996d
Improve documentation for breakpoint builtin
...
darcs-hash:20070921151654-75c98-550df5aebaa11855c53585202ab7fafe7c5820ad.gz
2007-09-22 01:16:54 +10:00
liljencrantz
3692074e7e
Make R_NULL not repaint and document the fact that this means some keybindings need to manually tell fish to repaint
...
darcs-hash:20070921144426-75c98-7db4351e14733e2c18e44515e8ed78b1f1faea80.gz
2007-09-22 00:44:26 +10:00
liljencrantz
954c99a5ad
Minor improvement to docs for count builtin
...
darcs-hash:20070921144301-75c98-02d497e712c6932322a74d82fc7a772c92e19552.gz
2007-09-22 00:43:01 +10:00
liljencrantz
151943f89e
Indentation, typo and formating fixes. Very minor patch.
...
darcs-hash:20070908222453-75c98-2236d962f0c9016820063e871fbbeaa42f36ef22.gz
2007-09-09 08:24:53 +10:00
liljencrantz
ad02bb9b48
Add a 'generic' type of event that can be emited from any piece of code or by the user. Use this event layer to perform interactive configuration startup at the correct time.
...
darcs-hash:20070819164230-75c98-f91b8a73de7bbbb500d80770ddf4d2d46ae592cc.gz
2007-08-20 02:42:30 +10:00
James Vega
8ed521c817
Update status builtin to properly handle and document all of its options.
...
darcs-hash:20070801194450-35ec8-e2fe5b798e728d1caef474295a92230c35c79c17.gz
2007-08-02 05:44:50 +10:00
axel
58fd6b895a
Minor error handling improvements and minor code polish
...
darcs-hash:20070801173801-ac50b-11a281d9f622e935c1f138355babd20269068f35.gz
2007-08-02 03:38:01 +10:00
axel
df55e89bbb
Spelling fixes from Chris Rebert
...
darcs-hash:20070801173524-ac50b-760d9ddf0e68aa24cd570b542824a7f2b3248ff5.gz
2007-08-02 03:35:24 +10:00
axel
91de143003
Replace the count function with a builtin for performance reasons. The count function used at least two forks, which was noticable on systems such as OS X with slow forks
...
darcs-hash:20070731212332-ac50b-8f5b2e70008ddb131dc8bae3f361d8d65a294948.gz
2007-08-01 07:23:32 +10:00
axel
784c5d9fa3
Update todo list
...
darcs-hash:20070424205314-ac50b-2b1048b8a50fd21fd264eba5b00647f3bdf23304.gz
2007-04-25 06:53:14 +10:00
axel
419b3166c8
Implement count as ashellscript function instead of a command in order to support very long argument lists. Note that this implementation is painfully slow for more than 1000 arguments.
...
darcs-hash:20070423220026-ac50b-69c4b06c88e6120429b6358f1b61f6076d392ce5.gz
2007-04-24 08:00:26 +10:00
axel
2c02b59703
Replace the eval builtin with a function
...
darcs-hash:20070422221806-ac50b-28cffc6c3063c14cd8ab30f999e3530314c78af2.gz
2007-04-23 08:18:06 +10:00
axel
2b7535bb51
Make the . (source) builtin able to read commands from stdin
...
darcs-hash:20070422211947-ac50b-b8d33d81fcef5e0b7e76a8d2a9f0bcbcf3ac67b7.gz
2007-04-23 07:19:47 +10:00
axel
2872df66d7
Add source code prettyfier program called fish_indent
...
darcs-hash:20070422100312-ac50b-a073999b7dc172259c8200f3e740c921647222a0.gz
2007-04-22 20:03:12 +10:00
axel
e8ba091161
Move documentation on fish_prompt to the external command section
...
darcs-hash:20070324222135-ac50b-0b27258486492ea6178a852061dc894da60140ee.gz
2007-03-25 08:21:35 +10:00
axel
e750f1a3c2
Minor documentation fixes
...
darcs-hash:20070324191646-ac50b-0892de7e96348caf198830af2b2ad46b84f9f13e.gz
2007-03-25 05:16:46 +10:00
axel
83a3706099
Various minor codee updates. Dead code removal, comment tweaking. Spelling fixes, etc.
...
darcs-hash:20070225111738-ac50b-9656f807d2e41ebb06a43e10925834420740e20d.gz
2007-02-25 21:17:38 +10:00
axel
e936629dc3
Minor documentation update to reflect change in how __fish_complete_suffix function works
...
darcs-hash:20070208170339-ac50b-3ce23bc61e8cd7c4874748dd5f1395739c57ad36.gz
2007-02-09 03:03:39 +10:00
axel
dfabf7f206
Update todo list
...
darcs-hash:20070208170232-ac50b-7413e8283f40a38c9790b391a70954897ae0bcae.gz
2007-02-09 03:02:32 +10:00
axel
ba932b6590
Add support for -s switch to read builtin, enables shell syntax highlighting in the read builtin
...
darcs-hash:20070129162624-ac50b-dff9d9ebf16ce3247b83d917efbffd4942cda83f.gz
2007-01-30 02:26:24 +10:00
axel
37a95a3096
Make parsing of --authorative switch for complete builtin more logical. Fix bug with previous approach causing some completions to be ignored.
...
darcs-hash:20070128134059-ac50b-de53eb223939fbdf0d247dfbe343c62fc31cce11.gz
2007-01-28 23:40:59 +10:00
axel
be0bd50bad
Remove unneeded code from isatty, fix spelling in docs
...
darcs-hash:20070127141215-ac50b-d15c657b62862841df80c55095a05e9c38086a11.gz
2007-01-28 00:12:15 +10:00
axel
66c045c439
Minor code edits. Add curly brackets in various places, add or rewrite various comments, fix indentation, etc.
...
darcs-hash:20070121150114-ac50b-4fd6965cb2c557178923f8afa944835166e08423.gz
2007-01-22 01:01:14 +10:00
axel
f4c5eaf05b
Spelling fixes in documentation
...
darcs-hash:20070118173337-ac50b-4bfe34ea056f6fbc007df4c0b97cde695c822923.gz
2007-01-19 03:33:37 +10:00
axel
dd90b4ece4
Fix incorrect use of the term 'alias' where 'function' was meant in documentation
...
darcs-hash:20070118170034-ac50b-f10d79a1aed0e91d350db13187965bf2f5c45b7e.gz
2007-01-19 03:00:34 +10:00
axel
9d9869e515
Documentation touchup. Give a few examples in the section about escapeing characters
...
darcs-hash:20070116164834-ac50b-dd4c23ae1b8e35bbb2d3e186c2a819d8f2647ec2.gz
2007-01-17 02:48:34 +10:00
axel
00c6fcfe98
Document -f option for psub, add tab completions
...
darcs-hash:20070115181924-ac50b-6ac48aec8937e9dd172858dfa7eaaac1aca14775.gz
2007-01-16 04:19:24 +10:00
axel
c90f7c3203
Update todo list
...
darcs-hash:20070115175516-ac50b-8e5e316633ff0951b9165067b9b0e777753f5365.gz
2007-01-16 03:55:16 +10:00
axel
a5b7ec2624
Clarify documentation for the ulimit builtin
...
darcs-hash:20070112151540-ac50b-70ce1dbbad6b4e559723e1c5f8cf6fc3e271cf77.gz
2007-01-13 01:15:40 +10:00
axel
94fbbb7669
Update todo list
...
darcs-hash:20070107142445-ac50b-391ff0eac6a84ae3dd5345d338682d243d40fb0a.gz
2007-01-08 00:24:45 +10:00
axel
3b4bacb5ba
Allow the user to specify name of history file to use with the read builtin
...
darcs-hash:20070106142430-ac50b-32ad52077e11438799b17911dc83e57f89e02f2b.gz
2007-01-07 00:24:30 +10:00
axel
b3fa76c1be
Extend documentation for the math function
...
darcs-hash:20061212171037-ac50b-1b9d0f51b284925fe0fc3020774ec32bb1414ce7.gz
2006-12-13 03:10:37 +10:00
axel
3a29028f60
Fix broken example in the documentation for the begin builtin
...
darcs-hash:20061211134723-ac50b-6ea37b6dca30a85d00651129a762d8a9d95d40a2.gz
2006-12-11 23:47:23 +10:00
axel
b85d9ee737
Minor documentation update
...
darcs-hash:20061209011911-ac50b-2295056319c5b7a95e77df897f0310cd52c6580a.gz
2006-12-09 11:19:11 +10:00
axel
d9ec65da4d
Update user documentation - add section on internal completion functions, update todo list, minor documentation tweaks
...
darcs-hash:20061206000810-ac50b-08f12efdb74224abe46301d3722cd8180d8ba37d.gz
2006-12-06 10:08:10 +10:00
axel
8619d17f43
Minor documentation, indentation tweaks
...
darcs-hash:20061129142102-ac50b-0ae69ec0878a54092f16261b314b34ef4eeeb5ba.gz
2006-11-30 00:21:02 +10:00
axel
6ad0f141be
Add missing rulers in faq
...
darcs-hash:20061124170631-ac50b-ee9823eb30fb84be07a512f7ad6dd46cbc2d0b44.gz
2006-11-25 03:06:31 +10:00
axel
0b6366aacb
Fix missing code snippet in faq. Thank you to Binny V A for reporting this bug.
...
darcs-hash:20061124164641-ac50b-5c6594b320269aa5941b84d1d99eac70b636b332.gz
2006-11-25 02:46:41 +10:00
axel
338d32a7c6
Drop the old, unused fish manual page
...
darcs-hash:20061122185443-ac50b-aa46cf36aa38990ba49b4e08f7ce7a5c68abfdf3.gz
2006-11-23 04:54:43 +10:00
axel
88f15a6804
Simplify documentation building - again.
...
darcs-hash:20061122185333-ac50b-078910540c33e18265c7d5804d1f14f241ad597f.gz
2006-11-23 04:53:33 +10:00
axel
c2e1d76400
Fix missing man-page generation when building from darcs tree. Also simplifys doc generation a small bit.
...
darcs-hash:20061120135336-ac50b-d3b7a4ce2ac6bcc307c57cfcd23db86a8ac411a8.gz
2006-11-20 23:53:36 +10:00
axel
47afca1fdb
Add missing help text for the save_function function
...
darcs-hash:20061119233640-ac50b-5fb02f7ce3ec3317aa57be2d936cc430b27276b4.gz
2006-11-20 09:36:40 +10:00
axel
dd061b1dda
Minor comment edits and removal of a warning
...
darcs-hash:20061118212459-ac50b-d6f4dddb560b4815ca850f9e9c3e8d7a5cf5ea70.gz
2006-11-19 07:24:59 +10:00
axel
1b71f91a01
Update documentation display code to run roff on the client system instead of pregenerating documentation and compiling it into program binaries
...
darcs-hash:20061117162438-ac50b-5c4c7f0bd8bf53a16e16ecfead9569e642b7160f.gz
2006-11-18 02:24:38 +10:00
axel
f91de04269
Update todo list
...
darcs-hash:20061117150013-ac50b-ded7a41336a64df095ede01657a9af341f571d52.gz
2006-11-18 01:00:13 +10:00
axel
04b7da336d
Documentation updates
...
darcs-hash:20061111105208-ac50b-27e335ba701b021d3119206e91d68c8504d45c2b.gz
2006-11-11 20:52:08 +10:00
axel
c2021b6225
Fix typo in documentation for the commandline builtin. Thanks to Reuben Thomas for reporting this.
...
darcs-hash:20061103143140-ac50b-b37fbfe68321f904936c002010045e467bc3a778.gz
2006-11-04 00:31:40 +10:00
axel
13a85ee3f1
Make sure fish has the currect exit status
...
darcs-hash:20061102134859-ac50b-692f9e9aff838ea375e5cf29eeae1e29b1b75338.gz
2006-11-02 23:48:59 +10:00
axel
fab18bae80
Updates to the documentation - add a few crossreferences, remove redundant listing of builtins and update the todo list
...
darcs-hash:20061102134725-ac50b-802d5cf8754ff94c4cc9533b2ff16a759e9aa2c9.gz
2006-11-02 23:47:25 +10:00
axel
44f85d04f9
Fix formating issue for the documentation for the prevd function
...
darcs-hash:20061101221835-ac50b-03a9b5abc7e4a25cc75effecc734c20eb8fee342.gz
2006-11-02 08:18:35 +10:00
axel
728a60bd67
Fix beginning/end-of-line input function, add beginning/end-of-buffer functions
...
darcs-hash:20061031220149-ac50b-6e6b8f523642bead730059dd96ee2d1290283b5e.gz
2006-11-01 08:01:49 +10:00
axel
0099c3c420
Add table of contents to begining of documentation. This involves some restructuring of the documentation files.
...
darcs-hash:20061031153614-ac50b-7a6e97e30ae759591028227466e76c574b931fd5.gz
2006-11-01 01:36:14 +10:00
axel
885d16fcd6
Fix casing and other minor issues in documentation
...
darcs-hash:20061031152316-ac50b-e68db9853d6e9461a0c054f1ea290704ccfc0a31.gz
2006-11-01 01:23:16 +10:00
axel
f16bb285be
Documentation updates and clarifications
...
darcs-hash:20061028163229-ac50b-2b6d3712a97903788520c155326b0e7a193b5eec.gz
2006-10-29 02:32:29 +10:00
axel
e98a604a21
Minor edits, remove unneeded code, add a few commants, correct spelling, tweak the todo list, etc.
...
darcs-hash:20061026102253-ac50b-eb42fdab9a9211d68386a563134856a96b870d90.gz
2006-10-26 20:22:53 +10:00
axel
3341fc888c
Make the fish manpage in Doxygen and add it to the main fish documentation
...
darcs-hash:20061026102059-ac50b-2a7956bb4651b5ffe867e7c6eb26a29e2f15ad24.gz
2006-10-26 20:20:59 +10:00
axel
b2d4e85f17
Make any character except '/' legal in function names
...
darcs-hash:20061019154747-ac50b-f3ab0df1085b91ec0eadcceddb23f03d5b0247aa.gz
2006-10-20 01:47:47 +10:00
axel
ea998b03f2
First stab at directory transition. Test with care...
...
darcs-hash:20061019115023-ac50b-30c3fd51d8af8a616d63dfcac39370d7fe6d144e.gz
2006-10-19 21:50:23 +10:00
axel
ff96668151
Minor edits to documentation
...
darcs-hash:20061019114024-ac50b-e283638e3a34e1d38be58971f31900129230c598.gz
2006-10-19 21:40:24 +10:00
axel
f86f80fcd6
Properly handle character sets in universal variables
...
darcs-hash:20061017211129-ac50b-6aecd04b74a9122ff0e1b320a2cf48db36dd2194.gz
2006-10-18 07:11:29 +10:00
axel
a620a1e5ed
Update todo-list
...
darcs-hash:20061012140247-ac50b-ae6b9a26c5979dc7080ff3fea8dad618211227e1.gz
2006-10-13 00:02:47 +10:00
axel
e11677ef66
Make the greeting message configurable using the fish_greeting variable
...
darcs-hash:20061009214905-ac50b-cc07bf2b76c5306f96d1bca7fd478d972de25de8.gz
2006-10-10 07:49:05 +10:00
axel
effea85984
Apdate address of fish homepage
...
darcs-hash:20061009152007-ac50b-403f605d46849a3b83192d872c4f6322bf97bb7e.gz
2006-10-10 01:20:07 +10:00
axel
286e110fb1
Various minor cleanups
...
darcs-hash:20061009103408-ac50b-a54797b9f89f51a8fc8f13674e8fd2329e989d4c.gz
2006-10-09 20:34:08 +10:00
axel
a074cd62bc
Be more rigorous with the exit codes set by the parser and builtins
...
darcs-hash:20061009012102-ac50b-4f28c43dd1ccdcc04d1620a6da05218a99fd7337.gz
2006-10-09 11:21:02 +10:00
axel
bcf3024cf0
Update todo list
...
darcs-hash:20061005201141-ac50b-5441cefd081ede3d7b02c5955c828ac7c3f132c3.gz
2006-10-06 06:11:41 +10:00
axel
0ea668b260
Minor code cleanup
...
darcs-hash:20061004214204-ac50b-e1529fcedb1665f9871a95eba293a4a3c1150464.gz
2006-10-05 07:42:04 +10:00
axel
91c745e4b5
Add the possibility to set the cursor position using the commandline builtin
...
darcs-hash:20061004213948-ac50b-3f673edeb01390bb3f280812d90bc8469f2f8ba8.gz
2006-10-05 07:39:48 +10:00
axel
2839f5e567
Minor comment and documentation edits
...
darcs-hash:20061001155918-ac50b-8b5b4f5dbd8334bac1c0dc77fa18c8f3cfb4a878.gz
2006-10-02 01:59:18 +10:00
axel
be886bc6df
Unly use classifications in ls if stdout is a tty
...
darcs-hash:20060919165317-ac50b-c7923c7f5900ecc9814756743e6b0345efa382c5.gz
2006-09-20 02:53:17 +10:00
axel
7a5823fd60
Documentation updates from Beni Cherniavsky
...
darcs-hash:20060919145203-ac50b-bc87b8f5e6a18395e4bc3e364da4a40ad97850e7.gz
2006-09-20 00:52:03 +10:00
axel
06b5fdc6e8
Update todo-list. Thanks to MArtin Bähr for the additions.
...
darcs-hash:20060913212744-ac50b-cb446bcebc04a89c7b065e2d3879b474740a005e.gz
2006-09-14 07:27:44 +10:00
axel
3bb0163598
Update todo-list again
...
darcs-hash:20060912221050-ac50b-1c16582591642beba13f83224dc7ef47cb9c5a0a.gz
2006-09-13 08:10:50 +10:00
axel
4d19aa7698
Update todo-list
...
darcs-hash:20060912215025-ac50b-448068ea065db5d2db4bb68b7e41ef4e986ecc83.gz
2006-09-13 07:50:25 +10:00
axel
b6e8171f01
Fix minor null pointer bug in the set builtin, fix bug causing the -n switch to be ignored, add missing completions for the -n switch to functions and set builtins, and touch up the documentation for said builtin a bit
...
darcs-hash:20060831154400-ac50b-dddbee79481e0e0a8da9fc025e8a15c466460a2f.gz
2006-09-01 01:44:00 +10:00
axel
8a97bffd02
Spelling correction in documentation
...
darcs-hash:20060824103055-ac50b-8a81c73571b76dd2800787ca6e5bd29787eb9501.gz
2006-08-24 20:30:55 +10:00
axel
69814e5066
Add documentation about new backslash escapes, and correct a broken link in the docs
...
darcs-hash:20060824005117-ac50b-39a1f56891c92e6a9b64b20fdd4bfd7d60090949.gz
2006-08-24 10:51:17 +10:00
axel
90302d9232
Documentation correction
...
darcs-hash:20060814120540-ac50b-25daddbd1130d1b57837affa6c58542fd91ff59e.gz
2006-08-14 22:05:40 +10:00
axel
7ff76476ed
Remove non-unicode character in documentation file. Thanks to Netocrat.
...
darcs-hash:20060811092603-ac50b-59a68550fa3279662113ec080b18e7930bb02fe2.gz
2006-08-11 19:26:03 +10:00
axel
d3a75a354a
A new faq question and some minor documentation edits
...
darcs-hash:20060809114048-ac50b-0fe667bfe9cdcade6480137f2cf5982cc743288c.gz
2006-08-09 21:40:48 +10:00
axel
db369a9ad7
Minor documentation edits
...
darcs-hash:20060729173123-ac50b-9b895afc355cf5dc342fca3c276cfbf10c286bc2.gz
2006-07-30 03:31:23 +10:00
axel
4ba9ac28bb
Minor documentation tweaks and additions
...
darcs-hash:20060720133319-ac50b-ea71dc172f0c60de0d6f1effa2092ebb8d8ca2d9.gz
2006-07-20 23:33:19 +10:00
axel
4a87c9895d
Add -q/--query switch to the functions builtin. Works just like the same switch to set does. Useful for checking for the existance of functions in a script
...
darcs-hash:20060712174655-ac50b-14a98a15751bb5ddddf4ffb41521b616bef5e40c.gz
2006-07-13 03:46:55 +10:00
axel
036cc4e0fa
The begin builtin should not alter the exit status
...
darcs-hash:20060712173141-ac50b-8d21f9f22ef55581521ccf923411e3458bd8109c.gz
2006-07-13 03:31:41 +10:00
axel
38175cdd30
Fix spelling error (Thanks to Netocrat)
...
darcs-hash:20060703103537-ac50b-dac14e53588671bdf9c288fdab5e71feb1b03347.gz
2006-07-03 20:35:37 +10:00
axel
e007a5c203
The syntax for 'function --on-job-exit caller' was flat out wrong in the docs. Fixed.
...
darcs-hash:20060617141426-ac50b-835a389b29243023739315f21135f19c5f010c5a.gz
2006-06-18 00:14:26 +10:00
axel
07ff8a6c03
Documentation updates. Fixes a few formating bugs, adds various minor missing api documentation, fixes a few typos. Also fixes a few tiny code issues, mostly missing consts, etc
...
darcs-hash:20060617130708-ac50b-cc2ec5aa3e4bfb8e28d7b86441bfb4661f1dd7e7.gz
2006-06-17 23:07:08 +10:00
axel
94d1322fc1
Update the set_color command: Add underline support, make the command a bit more rubust to missing ferminal features, and update documentation and completions
...
darcs-hash:20060615134915-ac50b-de1092e56490bbf1c58cc3422c239a2997645b6b.gz
2006-06-15 23:49:15 +10:00
axel
eed8b61a9e
Add entry about changing shell to the FAQ
...
darcs-hash:20060615110539-ac50b-c610d35384039575a74711114262333e0b7eb99c.gz
2006-06-15 21:05:39 +10:00
axel
6aa682755d
Minor documentation edits for mimedb and fishd
...
darcs-hash:20060613154409-ac50b-5d1c80d67ee92a073078404ed662510573f7f9b5.gz
2006-06-14 01:44:09 +10:00
axel
2e5821c17d
Do not change status when the 'exit' builtin is called with no argument
...
darcs-hash:20060612165137-ac50b-0281941e35c5f8b619460f67d24a89caec475815.gz
2006-06-13 02:51:37 +10:00
axel
f46145a6b3
Do not change status when the 'return' builtin is called with no argument
...
darcs-hash:20060612164854-ac50b-5f428c819e8dafb44b591150d1965c5158854781.gz
2006-06-13 02:48:54 +10:00
axel
d79e8c7f62
Documentation updates, mostly corrections and cla<rifications to the docs for a few builtins
...
darcs-hash:20060608235811-ac50b-76b4fd54cb0911dd00f19f4a7c761f188d6ca068.gz
2006-06-09 09:58:11 +10:00
axel
39e9974e71
Fix some typos and bad wording in hte faq
...
darcs-hash:20060605100434-ac50b-539b8cebf367ad1c1e05b78fb412389c9f78fc4b.gz
2006-06-05 20:04:34 +10:00
axel
04b142208d
Make it possible to specify scope of a variable to be erased or tested. Also make sure set exits with a non-zero exit status when erasing fails.
...
darcs-hash:20060604201451-ac50b-4ea0212c513b33be40559dfe8d65c1446c53f682.gz
2006-06-05 06:14:51 +10:00
axel
cf35a8e3a5
Add documentation about support for negative indices
...
darcs-hash:20060604094203-ac50b-6cf671235549eb79d3464a15398b6511057dedde.gz
2006-06-04 19:42:03 +10:00
axel
6fd69bdda8
Many minor edits and clarifications to the documentation, including comments about the exit status of a few commands
...
darcs-hash:20060603231517-ac50b-03d252516eef21d4dd3a2ba0f5bb68e82525213b.gz
2006-06-04 09:15:17 +10:00
axel
6cae5c8b0a
Minor rewordings and additions to the manual
...
darcs-hash:20060529134607-ac50b-097cf23e8009b13afa456cf3946cc0799b0fd471.gz
2006-05-29 23:46:07 +10:00
axel
9f14d50974
Extend manual section on highlighting colors
...
darcs-hash:20060528105437-ac50b-c1c703206e855e5a4b5d7cf48bc19c48e12d2833.gz
2006-05-28 20:54:37 +10:00
axel
6dfd629fc5
Update todo list
...
darcs-hash:20060527134859-ac50b-3890023bb4003bbf773bf68dbcb9588c6ec55600.gz
2006-05-27 23:48:59 +10:00
axel
95ca3d1c69
Minor clarifications for documentation for the set builtin
...
darcs-hash:20060527134723-ac50b-8ad44bf44a8537f12b45281950fcaf85abbdd8f4.gz
2006-05-27 23:47:23 +10:00
axel
6bdb0cde8b
Add support for highligting qutes in a special color - defaults to blue
...
darcs-hash:20060527123516-ac50b-d6e0cf08bd9dfe8514e64004d93dc4035e73fad8.gz
2006-05-27 22:35:16 +10:00
axel
148cb68700
Add Parenthesis and braces to list of highlighted operators, and do minor code cleanup
...
darcs-hash:20060527005618-ac50b-272d096796b732b7d6c000c30be1a9ca1e1995a6.gz
2006-05-27 10:56:18 +10:00
axel
18c185c256
Add support for highlighting operators and escaped sequences
...
darcs-hash:20060526164638-ac50b-2259579e0460df0641683ce6127bb8516fca8c7e.gz
2006-05-27 02:46:38 +10:00
axel
e6b1035ddc
Spelling fixes - Thanks Netocrat!
...
darcs-hash:20060519140425-ac50b-e687924b06a7711b4e92930e239aea4b01076434.gz
2006-05-20 00:04:25 +10:00
axel
763a6b8351
Minor cleanup
...
darcs-hash:20060518130039-ac50b-c17e794113c38909d90be840fce36c7727c628b4.gz
2006-05-18 23:00:39 +10:00
axel
df59b8498f
Minor edits of function descriptions, includes, etc.
...
darcs-hash:20060502162950-ac50b-c2fcfc957d55f292744bcb4b33b4d66fc42087ed.gz
2006-05-03 02:29:50 +10:00
axel
a7f977836a
Expand the switch/case documentation
...
darcs-hash:20060421083529-ac50b-f287424c0cc9377085b49492453d35a5512cbc90.gz
2006-04-21 18:35:29 +10:00
axel
536523ffd7
Minor comment and documentation edits
...
darcs-hash:20060420150206-ac50b-c5c91053ee37a6c3f763287c42b430cdc99bb45b.gz
2006-04-21 01:02:06 +10:00
axel
ca82fc2f03
Add missing documentation for the read builtin
...
darcs-hash:20060420150124-ac50b-71a94cea3fedb0265af71718022e54e42567d69e.gz
2006-04-21 01:01:24 +10:00
axel
0f25ef365d
Tiny documentation edits
...
darcs-hash:20060408143134-ac50b-eae8cf585d3801b51bba415955ef2aacf98baeb2.gz
2006-04-09 00:31:34 +10:00
axel
55ea4b6fc0
Documentation additions
...
darcs-hash:20060405132928-ac50b-d551c31d04426c75c756d513e02e34b91bfc4ad6.gz
2006-04-05 23:29:28 +10:00
axel
5ef8cccf21
Mention in the license section that fish includes the glibc wcstok implementation as a fallback for libc implementations lacking wcstok
...
darcs-hash:20060405125956-ac50b-9e5b51d94676868365878387cd8c7e14a1684348.gz
2006-04-05 22:59:56 +10:00
axel
dd8150d98d
Minor comment and documentation changes
...
darcs-hash:20060314000914-ac50b-63c49a59804f51c4dd19de574db41298b1ef67c5.gz
2006-03-14 10:09:14 +10:00
axel
83d05f9170
Move to end of current token on completion
...
darcs-hash:20060311115612-ac50b-70f15c50b6cb8ad89d84ae6c8a3ffc4b7551223b.gz
2006-03-11 21:56:12 +10:00
axel
619defd748
Update todo list
...
darcs-hash:20060309115916-ac50b-da0ad8d0b29088c9d9daff4ec0c856289d8dd93d.gz
2006-03-09 21:59:16 +10:00
axel
91ab644173
Add support for \\ in quoted strings
...
darcs-hash:20060306015012-ac50b-a510764b624d1e4416d134f5b92532e046a6125b.gz
2006-03-06 11:50:12 +10:00
axel
d347da963b
Add documentation about indirect variable expansion
...
darcs-hash:20060302115108-ac50b-6803fad305e1caff02b33ab31bec869ac05a018e.gz
2006-03-02 21:51:08 +10:00
axel
fd6bf06f15
Various minor edits
...
darcs-hash:20060225022139-ac50b-9ef43f88e2266978e9b39038a6a5087ff1305509.gz
2006-02-25 12:21:39 +10:00
axel
1075ca69b0
Switch to standard syntax for octal escapes
...
darcs-hash:20060224121829-ac50b-8e19f27857378e6456ae08269721138bd60f3464.gz
2006-02-24 22:18:29 +10:00
axel
e29f5c5474
Add an FAQ section to the documentation, and remove a few seactions of the manual containing introductory material on fish which was no longer accurate
...
darcs-hash:20060224011446-ac50b-e9246e23dbf725a3e2488f7831b1c7420cdd42db.gz
2006-02-24 11:14:46 +10:00
axel
3afead1827
Documentation clarification for the cd builtin
...
darcs-hash:20060222142137-ac50b-cc9200ed23fa5796a56dc4ee3dde1ff7e8768fc3.gz
2006-02-23 00:21:37 +10:00
axel
2ae9735858
Add the LGPL license to the license section of the documentation - xdgmime is released under this license. Also add a few rulers, and make some other minor edits to the license section.
...
darcs-hash:20060217222051-ac50b-8fc2e6d4e32d0f7f67cde8ff475ec0e16f72ffa1.gz
2006-02-18 08:20:51 +10:00
axel
9cd2dbc9e7
Remove note about problem with ancient fish version
...
darcs-hash:20060217125341-ac50b-8f4dc873c8b7146cfdae00b62a139c0643e4156e.gz
2006-02-17 22:53:41 +10:00
axel
7ead45d899
More missing files
...
darcs-hash:20060217103214-ac50b-f0f65a28d574e6a7258148fd1162677be287e99c.gz
2006-02-17 20:32:14 +10:00
axel
343cafef34
Redo installation file structure, move lots of things to $PREFIX/share/fish
...
darcs-hash:20060217101339-ac50b-d93d2c620a4b7f75f05ff461a6edbee001da7613.gz
2006-02-17 20:13:39 +10:00
axel
7eb3a5a17d
Allow backslash of quotes within quotes
...
darcs-hash:20060212161331-ac50b-c25affaa4b18e1654dab3d08debafa95017009ea.gz
2006-02-13 02:13:31 +10:00
axel
5718ea41df
Add comment in manual about array base index
...
darcs-hash:20060211001546-ac50b-cebbcd5ca6709c8370433abf366c0aa318ec48ec.gz
2006-02-11 10:15:46 +10:00
axel
c743ebf211
Add long style option support for prevd/pushd, also add a few missing translation strings
...
darcs-hash:20060206112453-ac50b-271b830b35176d1ff93d9d9fb6c30343b4f1b4df.gz
2006-02-06 21:24:53 +10:00
axel
9f9f7bf95a
Minor edits to fish documentation
...
darcs-hash:20060201134029-ac50b-c80a9dadb4960dfbba255ca046682f2798621cf2.gz
2006-02-01 23:40:29 +10:00
axel
44e8dcd331
Add not on commandline behaviour when using complete -C to documentation
...
darcs-hash:20060131214646-ac50b-dc7b1510ceefc7645061d91bbe5022c09c209a34.gz
2006-02-01 07:46:46 +10:00
axel
3580811f8e
Minor documentation correction regarding how to use io redirection to close a fd
...
darcs-hash:20060131214551-ac50b-0b687b3279d3a9c94338092bff1b0a8001e9566d.gz
2006-02-01 07:45:51 +10:00
axel
35cf20640f
Add mention of the new -C switch for complete in the documentation
...
darcs-hash:20060131214426-ac50b-16a1b18cf8f5c05e59e1b338dde1c13089321bac.gz
2006-02-01 07:44:26 +10:00
axel
ecc2fbca98
Minor documentation tweaks
...
darcs-hash:20060128022118-ac50b-555ebb17d4f43692a5f363a085dcbcf57aa69111.gz
2006-01-28 12:21:18 +10:00
axel
1505cc3d81
Add comment in documentation for set builtin about not allowing switches after non-switches
...
darcs-hash:20060128021933-ac50b-db340075e9a57b41a91d6b64d56d9b5579185254.gz
2006-01-28 12:19:33 +10:00
axel
e01ccb14af
shellscript functions should use the help command to display help
...
darcs-hash:20060126173437-ac50b-69c03761554180467f741a9597205fab6c823378.gz
2006-01-27 03:34:37 +10:00
axel
bc42309dd8
Minor build fix
...
darcs-hash:20060126163002-ac50b-7766f42b8b3807a17577ed78819ab947ceb66e44.gz
2006-01-27 02:30:02 +10:00
James Vega
265d016721
doc_src/fishd.txt, fishd.c: Move the API description of fishd to the source file. Update the fishd help to indicate the new help and version options as well as a warning about fiddling with ~/.fishd.HOSTNAME.
...
darcs-hash:20060124172031-35ec8-6dbd2bdd1cca3528011f7a088630533a4fea25ab.gz
2006-01-25 03:20:31 +10:00
James Vega
495460066c
Fixed various spelling mistakes.
...
darcs-hash:20060123231706-35ec8-2a30db603eee503d944b06d101cc88ce59340309.gz
2006-01-24 09:17:06 +10:00
axel
ecdc5bdbc7
Add notice to set_text documentation about the use of --bold to brighten colors on some terminals
...
darcs-hash:20060123173811-ac50b-0ff42512a62fcebf1224b0aac9a47f04ed92c1c9.gz
2006-01-24 03:38:11 +10:00
axel
0dadd83fdd
Move the complete builtin to it's own file, and make it accept multiple -c, -p, -s, -o and -l switches
...
darcs-hash:20060122211055-ac50b-6ef8cff7fb02e974d6a8096bf83bcbed429d7322.gz
2006-01-23 07:10:55 +10:00
axel
e55bd063eb
Minor edits to the todo part of the fish documentation
...
darcs-hash:20060120171603-ac50b-d63052e2e6ddd82946946c8b88c3f8eebe1c5013.gz
2006-01-21 03:16:03 +10:00
axel
509b3598f7
Make manual and completions reflect the facty that any combination od set_color params are valid values for $fish_color_* variables
...
darcs-hash:20060117193450-ac50b-636c59494399d88151174ee28096d93c0bcdd16d.gz
2006-01-18 05:34:50 +10:00
axel
28c29f569b
Set version to 1.20.0
...
darcs-hash:20060116165451-ac50b-63e3cc280cb7deedadcfd69b542d9e54a7bc99c7.gz
2006-01-17 02:54:51 +10:00
axel
9942e2f19f
Make the completions for the ls, sed and df commands have the correct switches on BSD systems
...
darcs-hash:20060114131607-ac50b-479f7ff34019f5487125321443027cc0a77eec93.gz
2006-01-14 23:16:07 +10:00
axel
aca0511762
Documentation corrections
...
darcs-hash:20060111132944-ac50b-43146f4df54b8a533fb92693f1292d6cb74cdef8.gz
2006-01-11 23:29:44 +10:00
Jan Fader jan.fader@web.de
68df730980
some little corrections
...
darcs-hash:20060110174907-f93c5-d9ef6df3a8f8401ea161085a1e512d6a1d445260.gz
2006-01-11 03:49:07 +10:00
axel
d9663a4ec4
Remove the external tokenize command. One can use tr instead
...
darcs-hash:20060110163603-ac50b-204bef8d8d8e3f2ebc593c3de7d5a2eb4b1f0312.gz
2006-01-11 02:36:03 +10:00
axel
54c502c3cf
Documentation tweaks
...
darcs-hash:20060109144813-ac50b-cc5d04de564c177f8a0f529e6d536b6f7064f1b1.gz
2006-01-10 00:48:13 +10:00
axel
ae511451fe
Fix two issues on OS X, a non-compatible use of the expr command and a bad init of a socket for the universal variable daemon
...
darcs-hash:20060109144418-ac50b-c6232eae5b964f66d0638289291340aa66cd5983.gz
2006-01-10 00:44:18 +10:00
axel
906495d713
Improve locale implementation (should now behave identically to bash) and document locale variables behaviour
...
darcs-hash:20060108230049-ac50b-403f1d00c8483fc4fecc275b62e40b1c3d51bfc1.gz
2006-01-09 09:00:49 +10:00
axel
f6b2b9f9a5
Change syntax of 'and' and 'or' to infix order
...
darcs-hash:20060105153753-ac50b-4413a5d2652232bb38c97f5c673251193fc848ec.gz
2006-01-06 01:37:53 +10:00
axel
ec43c635cc
Add i18n through gettext, as well as a Swedish translation
...
darcs-hash:20060104125102-ac50b-5bf026578a69bd94f7a7a3c8dee0ebccd95e5c24.gz
2006-01-04 22:51:02 +10:00
axel
02a3288db7
1.19.0
...
darcs-hash:20051225220442-ac50b-79b8685cf6939c74a171f6cba227b703a1c02d60.gz
2005-12-26 08:04:42 +10:00
axel
c216e36a72
Add notice about bug when suspending builtins
...
darcs-hash:20051221135157-ac50b-a85102e103d27b5eccf51806871b3a49befa6a10.gz
2005-12-21 23:51:57 +10:00
axel
b8ea709c1e
Add autoconf checks for wide character string functions
...
darcs-hash:20051217213205-ac50b-df9ea4cbc1a7e4235578bd4fc542ddb7788d41cc.gz
2005-12-18 07:32:05 +10:00
axel
7bdcfacee4
Add trap shellscript function
...
darcs-hash:20051217213052-ac50b-fdab838ea9595fac7572068ea3a1f12b8bb0ea68.gz
2005-12-18 07:30:52 +10:00
axel
0817962300
Add missing documentation file
...
darcs-hash:20051214180744-ac50b-9394e5a12ca3eb98a9333a666748d16277cc2d7b.gz
2005-12-15 04:07:44 +10:00
axel
8b69c5416d
Minor documentation edits
...
darcs-hash:20051214164116-ac50b-c95a5dcb71d39c29b69010e879c96fc66ff1271e.gz
2005-12-15 02:41:16 +10:00
axel
659b99ed1a
Lots of fixed typos. Thanks, Harshad!
...
darcs-hash:20051213183257-ac50b-65c01704388f0fa94a7fbc62ba4d22ec1e6397d2.gz
2005-12-14 04:32:57 +10:00
axel
86d7e8bb8e
Minor tweaks
...
darcs-hash:20051213182803-ac50b-859b5bd4274e24dfd462cdf4585f0a05b751f737.gz
2005-12-14 04:28:03 +10:00
axel
8bf0a14bd5
Autodetect common escape codes in fish_prompt output
...
darcs-hash:20051213101859-ac50b-0ff01bb168d894d401d3d93cc11740789bac0d62.gz
2005-12-13 20:18:59 +10:00
axel
0a8284c981
Further tweaks to jobs builtin
...
darcs-hash:20051212155001-ac50b-bb6d180d8e0ca5150173a3dc3aa6cd7e021fa770.gz
2005-12-13 01:50:01 +10:00
axel
5262f3ce99
Revamp the jobs builtin
...
darcs-hash:20051211233001-ac50b-24547ca41d4db05f87d59dd3e396c3190a66ef89.gz
2005-12-12 09:30:01 +10:00
axel
1d69e70b7a
Initial blocking implementation
...
darcs-hash:20051211222101-ac50b-6e11220bd608187fbb32a0313b5b73dbdc8354fc.gz
2005-12-12 08:21:01 +10:00
axel
9b98df8310
Add history search information to documentation
...
darcs-hash:20051209040443-ac50b-ac75d7308947d00867950f6df74cc68907045a3b.gz
2005-12-09 14:04:43 +10:00
axel
0a713a7939
Correct set help page. The handling of setting a variable to no value has changed.
...
darcs-hash:20051207162924-ac50b-3e3c579b8b932b9a5a11546fb4a042d5e2aa85c5.gz
2005-12-08 02:29:24 +10:00
axel
0c877183b9
Spelling
...
darcs-hash:20051207155717-ac50b-6146b02bd8aff0fd27816acd5e31b38093d8575d.gz
2005-12-08 01:57:17 +10:00
axel
ab13c4caad
Give intelligent warning messages on zero-length variable names.
...
darcs-hash:20051207130330-ac50b-cc9d78ba63f592925b6076049e2c59aaaa930eec.gz
2005-12-07 23:03:30 +10:00
axel
12aa33fad4
Even more documentation updates. Variable expantion and design document sections.
...
darcs-hash:20051204132259-ac50b-d63356923e41c85a8d4aae1a4db3c815867fe5e2.gz
2005-12-04 23:22:59 +10:00
axel
9d7723b330
More documentation corrections and updates
...
darcs-hash:20051204124043-ac50b-11a283ee48103cb24efdaf18f6de62f503d6e028.gz
2005-12-04 22:40:43 +10:00
axel
2bc2e0b9ec
More documentation tweaks
...
darcs-hash:20051204023353-ac50b-196f21f186237d5e7074667fc86f2172a7ac40e2.gz
2005-12-04 12:33:53 +10:00
axel
02083a1bd7
Updated some obsolete documentation sections, and added some general polish
...
darcs-hash:20051204022740-ac50b-d3258d6b6f6caaf1b728c3c5074e1318135d6752.gz
2005-12-04 12:27:40 +10:00
axel
2faba57e5a
Update todo list to reflect recent changes
...
darcs-hash:20051203195003-ac50b-3c0bcaebf8a6d81fa0e0940ab6b215781cb26d52.gz
2005-12-04 05:50:03 +10:00
axel
32e833f331
Remove old event hooks, add more event handler documentation
...
darcs-hash:20051203194618-ac50b-e90683cb69b19da789152164a89a34bf187fd4e4.gz
2005-12-04 05:46:18 +10:00
axel
9b4c34aa4c
Use csh-style error rules with wildcards, i.e. if no matches are found, the command is not executed
...
darcs-hash:20051203164356-ac50b-1b1818db2698eab9ae765a5af1e259bce3ab37e7.gz
2005-12-04 02:43:56 +10:00
axel
721f616964
Add documentation for the vared shellscript function
...
darcs-hash:20051025143355-ac50b-d7aaecf4b2de062fb2c56928bd6a6919ad6d223c.gz
2005-10-26 00:33:55 +10:00
axel
48afe8062e
Make sure fish color settings are valid colors
...
darcs-hash:20051024175108-ac50b-3abfbd8b5974c7a3a53bc70d425d41dd1295da02.gz
2005-10-25 03:51:08 +10:00
axel
f8de9de13d
Code cleanups and API documentation updates
...
darcs-hash:20051023121429-ac50b-6ff72171b5a90b6e398bd84e748388c1dba831d9.gz
2005-10-23 22:14:29 +10:00
axel
ba6ad5025e
Make sure USER variable is correct. Needed when using the su command.
...
darcs-hash:20051023102232-ac50b-4ed7c9de75ece8a1d9ba7ec5c086bde146436db9.gz
2005-10-23 20:22:32 +10:00
axel
fc5e0ab367
Fix broken umask, add completions, documentation cleanups, etc
...
darcs-hash:20051022100605-ac50b-9b6ece502b203bf7690583d57b5b0713de30890c.gz
2005-10-22 20:06:05 +10:00
axel
6139df926b
Documentation and completion updates
...
darcs-hash:20051021123945-ac50b-3d3b5004fdf8424190cae84c7b27b2088c87c080.gz
2005-10-21 22:39:45 +10:00
axel
4fb2dc3f55
Add documentation for umask
...
darcs-hash:20051017143050-ac50b-0943033514159966b93adcb4073fa52cc8925597.gz
2005-10-18 00:30:50 +10:00
axel
f87178420a
Do not use RLIMIT_AS on systems that don't have it, like NetBSD
...
darcs-hash:20051017133657-ac50b-b27739229dfa6b3f08c2e9e7f4577cdceaf09beb.gz
2005-10-17 23:36:57 +10:00
axel
17c4835f08
Initial imlementation of uname shellscript function
...
darcs-hash:20051017132412-ac50b-0c82581051eb6819ae8316a27f4b83401446e3df.gz
2005-10-17 23:24:12 +10:00
axel
c5b8393903
Add missing documentation file for ulimit
...
darcs-hash:20051015111139-ac50b-49fd5b2351360f7fe35f7b376605c753b5e4ad2d.gz
2005-10-15 21:11:39 +10:00
axel
4530ce8194
Documentation updates
...
darcs-hash:20051015101245-ac50b-e49bdc40a0130ef1db42165919ab3e0a382121fe.gz
2005-10-15 20:12:45 +10:00
axel
838ba08eaa
Event handling and job reaping updates
...
darcs-hash:20051011192343-ac50b-aa3f5ae5e2b34d122f10e3b59ceb6fdd447f4ae3.gz
2005-10-12 05:23:43 +10:00
axel
b6e7133ba6
Spelling fix
...
darcs-hash:20051009124431-ac50b-eec67b9f07ae4ea6b248c7282b7c9a4a6ba3e4ae.gz
2005-10-09 22:44:31 +10:00
axel
93eed7bc35
Spelling fixes
...
darcs-hash:20051008093310-ac50b-077bd66d4b2c3f98de421e04b125f0d89e9d503a.gz
2005-10-08 19:33:10 +10:00
axel
1917ce96f4
Add support for piping using other file descriptor than fd 1
...
darcs-hash:20051007140857-ac50b-314a47d98ccd09e837be7bd81ebe58d5144c3499.gz
2005-10-08 00:08:57 +10:00
axel
c39fed1f37
Minor documentation updates
...
darcs-hash:20051002140830-ac50b-f2fd170d83becfe0f8e22e4abf3ac768561c9a0b.gz
2005-10-03 00:08:30 +10:00
axel
4f197e2267
Support symbolic keybindings
...
darcs-hash:20051002134046-ac50b-1e3dc058105d30ad0541c99a250e2d33c31dc7e3.gz
2005-10-02 23:40:46 +10:00
axel
6e1af6d9c3
Change configuration file names if installing in $HOME
...
darcs-hash:20050926123306-ac50b-c2a277903de798d553fe61e1045eb6c3dae0036d.gz
2005-09-26 22:33:06 +10:00
axel
b445294ff9
Update documentation on keybindings
...
darcs-hash:20050926020157-ac50b-4fb82b054f6d38be4fc107701aac21e9e6f73edd.gz
2005-09-26 12:01:57 +10:00
axel
f392e3044c
Support for numeric backslash escapes
...
darcs-hash:20050925223948-ac50b-fae1e578572f64386e831a0aa401edd7fab0afb9.gz
2005-09-26 08:39:48 +10:00
axel
fe29e1b5d4
Escape from token search and help updates
...
darcs-hash:20050924163122-ac50b-25d56f7e806bedeeaafabae415cd25a676c7e4cf.gz
2005-09-25 02:31:22 +10:00
axel
79b8ff535e
Minor documentation update
...
darcs-hash:20050924013157-ac50b-4ad9f6bb8da67a24999796a9a3de90e334645540.gz
2005-09-24 11:31:57 +10:00
axel
5a7a14003f
Update for type function
...
darcs-hash:20050924013016-ac50b-d153454213661a003b54306f9ee32caf6c390505.gz
2005-09-24 11:30:16 +10:00
axel
3e0e50fbf3
Add support for bold mode to set_color command
...
darcs-hash:20050924012834-ac50b-c531500a7fa2b720909ea72d48bc39a74f5026b5.gz
2005-09-24 11:28:34 +10:00
axel
a6b10d28eb
Documentation updates
...
darcs-hash:20050923144445-ac50b-851b042248bd0d4f857c0cb744393ed16c13a95d.gz
2005-09-24 00:44:45 +10:00
axel
5f546e1c4c
Minor documentation updates
...
darcs-hash:20050923143316-ac50b-a3816568b7aefca179ef2891d1fd2fb23a1739cb.gz
2005-09-24 00:33:16 +10:00
axel
f971e02256
Exportable universal variables
...
darcs-hash:20050922201652-ac50b-f70e7607b4ace24da4020f2d432718dc335e5bdd.gz
2005-09-23 06:16:52 +10:00
axel
4c9903cd66
Minor tweaks
...
darcs-hash:20050920235718-ac50b-a6e0fc1960a8172415fb8a5ebcce81f921d87b10.gz
2005-09-21 09:57:18 +10:00
axel
e3ce01d685
Key binding functions
...
darcs-hash:20050920234200-ac50b-3895a97cb024368258cd1562bdcc9fda2c84f521.gz
2005-09-21 09:42:00 +10:00
axel
8173c736cc
Minor documentation updates
...
darcs-hash:20050920214220-ac50b-318f457febceb9445ee9dcf9ebd9e3b9f20fc25e.gz
2005-09-21 07:42:20 +10:00
axel
ea96e413f3
Minor documentation updates
...
darcs-hash:20050920141105-ac50b-339e24a7cc79cbf80e1c1d8eb14f77c57ab6066c.gz
2005-09-21 00:11:05 +10:00
axel
7ddecde543
Add subdirectories
...
darcs-hash:20050920133155-ac50b-9a14c6c664dd03afbe8e15e7c7998fcfb5c3c750.gz
2005-09-20 23:31:55 +10:00