Jun-ichi Takimoto
d902b55bd4
34643: clarify documentation for print and bindkey
2015-03-06 20:32:56 +09:00
Peter Stephenson
2f3547689c
34653: move aborted vared lines to ZLE_VARED_ABORTED
2015-03-06 09:51:16 +00:00
Peter Stephenson
00b3085b96
34657: document the effect of substring subscripting better
2015-03-06 09:50:01 +00:00
Daniel Shahaf
42e5f591f5
34640: clarify documentation for _guard function
2015-03-04 09:18:07 +00:00
Barton E. Schaefer
4edcacbcf3
users/19934: document %D{...} for WATCHFMT
2015-02-28 13:45:51 -08:00
Barton E. Schaefer
009b6c9ff5
34597: Revise strftime description to correctly explain timezone handling and note signed int rollover
2015-02-21 20:01:32 -08:00
Peter Stephenson
041a85243e
34558: preexec doc fix.
...
It was wrongly claming the first parameter was empty if the line was
removed from the history.
2015-02-16 16:12:07 +00:00
Mikael Magnusson
dd988542f4
Fix typo from 28487
2015-02-14 02:00:25 +01:00
Peter Stephenson
638bccb1c5
users/19850: add pattern support to watch variable
2015-02-11 12:52:22 +00:00
Peter Stephenson
1a91cb7fb1
users/19825: Clear statement about POSIX compatibility
...
Right of start of manual where we already refer to ksh.
2015-02-06 10:46:58 +00:00
Barton E. Schaefer
a7925f9a1c
unposted: fix formatting of "--".
2015-02-03 19:26:51 -08:00
Peter Stephenson
79378d4acd
users/19800: more help for $HISTORY_IGNORE
2015-02-03 17:13:26 +00:00
Barton E. Schaefer
3ae6fb965f
34446: add "ztie -r" and "zuntie -u", update documentation
2015-02-01 14:01:53 -08:00
Barton E. Schaefer
22ad56296d
unposted: fix other typeset doc errors
2015-01-28 09:07:25 -08:00
Barton E. Schaefer
6558ab611b
34421: clean up typeset documentation
...
Also remove duplicated ChangeLog entry for 34365.
2015-01-28 08:04:52 -08:00
Frank Terbeck
88c7badb8b
34419: vcs_info documentation: Fix wording
...
As suggested by Daniel Shahaf.
2015-01-27 21:14:47 +01:00
Barton E. Schaefer
2fa11b7c54
34350, 34353: document zsh/db/gdbm module, clean up a few things in the code
...
Still core dumps at this revision if the tied parameter is forced to be a local and is not untied before end of scope.
2015-01-25 11:34:26 -08:00
Oliver Kiddle
f972b023a2
34373, 34374: update completion of builtin commands, modifiers,
...
parameter and globbing flags
2015-01-25 18:23:03 +01:00
Daniel Shahaf
5a1fdc0f1c
34381: vcs_info: Documentation update
...
This adds documentation for more hooks and styles available in
vcs_info:
- patch-format
- nopatch-format
- get-unapplied
- pre-addon-quilt
- set-patch-format
2015-01-25 15:44:05 +01:00
Daniel Shahaf
9d25fd7255
vcs_info hg: Support inactive bookmarks
...
(Similar to git detached heads)
2015-01-25 01:42:05 +01:00
Peter Stephenson
0e3548994e
34329: add -S option to which and where
2015-01-20 17:31:28 +00:00
Peter Stephenson
3a99ef322d
34280: more widespread use of FORCE_FLOAT.
...
Add the case of variables read for use in arithmetic expressions.
2015-01-15 13:52:40 +00:00
Barton E. Schaefer
9fcc9d6e8d
34273: use "enough" colons in each completion style pattern example
2015-01-13 19:24:58 -08:00
Peter Stephenson
626650f20e
34253: warn in zcalc doc about integer arithmetic.
...
C.f. warning in arithmetic doc in 34194.
2015-01-12 11:10:07 +00:00
Peter Stephenson
53e3d9e063
34914: explanation of effect of integer promotion
2015-01-10 19:49:16 +00:00
Barton E. Schaefer
bd13ffefab
users/19721: clarify context vs. style in compsys configuration
2015-01-10 10:32:31 -08:00
Peter Stephenson
6291d38848
34182: doc: to add zf_\* builtins use zmodload -m -F
2015-01-09 17:24:16 +00:00
Mikael Magnusson
62b0e611ce
30568: Add tetriscurses contrib function, port of tetris to zcurses
2015-01-09 12:49:56 +01:00
Peter Stephenson
aa622e0801
users/19682: document recommended use of whence
2015-01-04 00:28:03 +00:00
Peter Stephenson
33d1439fdb
users/19667: whence -S shows intermediate steps in symlink expansion
2015-01-02 21:32:51 +00:00
Peter Stephenson
4042640eee
zsh-users/19551: history documentation.
...
Note in a couple of places that history file reading and writing
is only done in interactive shells.
2014-12-17 10:53:13 +00:00
Oliver Kiddle
1e0064e58b
33956: document key binding changes and remove ^X binding
2014-12-13 19:34:24 +01:00
Oliver Kiddle
edb9c94025
33950: ignore KEYTIMEOUT for vi operators
2014-12-12 14:14:00 +01:00
Peter Stephenson
d067ebcacd
33876: etc.: Separate errors and keyboards interrupts
...
Combination of 12 commits from interrupt_abort branch.
Basic strategy is to introduce bits to errflag and to set and
reset them separately.
Remove interrupt status on return to main keymap.
Turn off ERRFLAG_INT for always block.
Restore bit thereafter: we probably need a new variable in order
to allow user interrupts to be reset in the always block.
Add TRY_BLOCK_INTERRUPT
This works the same as TRY_BLOCK_ERROR, but for a SIGINT, too.
Ensure propagation of SIGINT from exited job.
If received by foreground job, shell uses ERRFLAG_INT, not
ERRFLAG_ERROR, to set the new state.
Reset errflag before precmd()
Add always block in _main_completion to fix ZLS_COLORS
Ensures we get the right state of $ZLS_COLORS at the end of _main_complete
even if there's an interrupt. However, the "right state" is a bit messy
as it depends on styles.
2014-12-11 09:41:17 +00:00
Oliver Kiddle
88f4e24d4c
33924: allow vi line/characterwise mode to be forced
2014-12-08 17:24:48 +01:00
Daniel Shahaf
908abba891
33883: documentation for (*) glob qualifier
2014-12-07 16:13:39 +00:00
Barton E. Schaefer
231cbbc5b1
33841: explain array append a bit better
2014-12-04 02:18:36 -08:00
Barton E. Schaefer
84a772396e
Unposted: minor change: "scalar or integer" to "scalar" to include floats.
2014-12-04 02:18:35 -08:00
Peter Stephenson
af6256f8af
33830: META-FAQ updates.
...
Don't mention CVS.
Use correct sourceforge URL.
2014-12-01 14:28:37 +00:00
Simon Ruderich
a6bf64648b
33139: add doc example to glob broken symbolic links.
2014-11-28 11:55:17 -08:00
Barton E. Schaefer
8080ca3a87
33805: rewrite zshparams intro, tweak formatting
...
I noticed that there was no explanation of the terms "variable" or
"environment" anywhere.
2014-11-27 13:43:15 -08:00
Peter Stephenson
a8927bf27b
33793: add 0b binary interpretation to integer constants
2014-11-26 17:26:58 +00:00
Daniel Hahler
1fec267156
33746: read -q doc refers to -t
2014-11-24 10:05:44 +00:00
Stephane Chazelas
ff292af95f
33740: FAQ: another way of avoiding MULTIOs effects on pipes
2014-11-23 18:29:09 +00:00
Barton E. Schaefer
02bca2ea0f
33763 (cf. Baptiste Daroussin 33747): fix nested item list in generated zshmodules.1
2014-11-22 14:52:31 -08:00
Barton E. Schaefer
626398f37d
add menu reference to Text Objects
2014-11-21 21:54:37 -08:00
Oliver Kiddle
58da0f495c
33730: vim style text objects for selecting words
2014-11-21 11:40:00 +01:00
Peter Stephenson
dded99b085
33679: Note on patter s in case statements
...
They work exactly like groups in other patterns, despite contrary
indications.
2014-11-19 15:48:58 +00:00
Oliver Kiddle
d29e02c1a3
33704: keybindings, documentation, tests and minor
...
fixes for vim style visual selection changes
2014-11-17 23:01:00 +01:00
Oliver Kiddle
0ea8f28e7b
33700: new widget for put in vim style visual selection mode
2014-11-17 16:32:04 +01:00