summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-04-2230431 with typo in _typeset fix:Peter Stephenson6-4/+93
add ${...:|...} and ${...:*...} operators, as documented
2012-04-2130433: double backslash is not line continuation.Bart Schaefer2-2/+7
2012-04-2030427: fix syntax error from previous commitMikael Magnusson2-2/+4
2012-04-1930412: document set-local-historyMikael Magnusson2-1/+14
2012-04-16Michael Proko: 30414: more flexible configuration file finding for _mdadmPeter Stephenson2-2/+13
2012-04-1630413: (q-) parameter flag should quote null stringPeter Stephenson4-11/+27
(q-q) etc. should be treated as errors
2012-04-15unposted: more NEWS tweaksPeter Stephenson1-1/+7
2012-04-15unposted: more NEWS tweaksPeter Stephenson1-0/+9
2012-04-15unposted: incporate Bart's NEWS suggestions from 30408Peter Stephenson1-1/+1
2012-04-15unposted: incporate Bart's NEWS suggestions from 30408Peter Stephenson2-9/+14
2012-04-1530410 plus one other case: avoid divide-by-zero errorsPeter Stephenson2-4/+16
in TIMEFMT interpretation
2012-04-1430402: turn intro.ms into intro.pdf for doc distributionPeter Stephenson3-2/+11
2012-04-1430406: NEWS: typo fixesMikael Magnusson2-6/+10
2012-04-13update Etc/.distfiles for moved NEWS-4.3Peter Stephenson2-1/+4
2012-04-13Christian Neukirchen: 30398, 30399: TIMEFMT documentationPeter Stephenson2-6/+9
2012-04-1330400 plus extra tweaks: update NEWS for 5.0Peter Stephenson3-342/+627
2012-04-1330391: tweak to ignore DISABLED flag in new hash-based arrayuniq()Peter Stephenson2-2/+8
2012-04-12fix UTF-8Peter Stephenson1-2/+2
2012-04-1230388, 30389 (Stephane): zargs: handle zero-length arguments.Peter Stephenson2-9/+14
2012-04-1030383, users/16991 (Vaclav), users/17000: Improve speed of arrayuniq() byBart Schaefer3-4/+118
implementing a hash seive algorithm; add test to exercise it.
2012-04-01users/16944: more locals needed in url-quote-magicPeter Stephenson2-2/+8
2012-03-30doc the Functions/Zle/split-shell-arguments commitPeter Stephenson1-1/+4
2012-03-30add some braces to avoid compiler warningsPeter Stephenson3-8/+17
2012-03-29unposted: add missing parenthesisPeter Stephenson2-2/+4
2012-03-29users/16932: implement $UNDO_CHANGE_NO and argument to undo widgetPeter Stephenson6-4/+59
2012-03-2530378: new gradle completionMikael Magnusson3-1/+121
2012-03-2430368: _tmux: complete arguments to unambiguous partial subcommandsMikael Magnusson2-1/+17
2012-03-2430372: _tmux: redirect errors to /dev/nullMikael Magnusson2-7/+10
2012-03-2430371: _ssh: you can specify -i multiple timesMikael Magnusson2-2/+7
2012-03-2330367: Doc/Zsh/contrib.yo: vcs_info, mention settings used for ↵Simon Ruderich2-3/+5
patch-format/nopatch-format.
2012-03-2330366: Misc/vcs_info-examples: Fix outdated quilt examples.Simon Ruderich2-7/+11
2012-03-1330354: Luka Perkov: quilt completion updatePeter Stephenson2-8/+18
2012-03-1330351 + 30352: metafy strings on import into zsh variablesPeter Stephenson3-17/+47
2012-03-07users/16865: note that -eq is less convient than (( ... == ... ))Peter Stephenson2-1/+12
2012-03-0730320: "emulate" accepts invocation-time flags; other small doc tweaks.Bart Schaefer7-87/+142
2012-03-06Alexey: 30322: Completion/Unix/Command/_xmlsoft: accept morePeter Stephenson2-2/+7
file types.
2012-03-06unposted: fix a typo in _git from previous commit (reolved)Mikael Magnusson1-1/+1
2012-03-0630317: complete git merge --ff-onlyClint Adams2-1/+4
2012-03-0630316: complete .pdf for evince and epdfview.Clint Adams2-2/+5
2012-03-0530314: add completion for ssh-copy-id.Clint Adams2-3/+13
2012-03-0530307 plus tweak suggsted by Wayne: use %lld for zlong when long longPeter Stephenson7-5/+87
2012-03-04Use stricter options with autoloadFrank Terbeck1-1/+1
-U suppresses alias expansion while the function is loaded. And -z forces zsh-style autoloading semantics (instead of the optional ksh-style, which someone could have set in a files that is sourced earlier than the zshrc file). Signed-off-by: Frank Terbeck <ft@bewatermyfriend.org>
2012-03-04Only unalias `run-help' if the alias actually existsFrank Terbeck1-1/+1
Signed-off-by: Frank Terbeck <ft@bewatermyfriend.org>
2012-03-04Un-tabified and rearranged zstyle callFrank Terbeck1-2/+7
Signed-off-by: Frank Terbeck <ft@bewatermyfriend.org>
2012-03-04Add debian/NEWS to document the keyboard changesFrank Terbeck1-0/+24
2012-03-04Rewrite keyboard handling in zshrcFrank Terbeck1-27/+67
This change makes proper use of `$terminfo[]', because it makes sure that zle (zsh's line editor) puts the terminal into application mode while it is running. Then - and ONLY then - are the values from the `$terminfo[]' array valid. While doing that this also does this: a) Refactor the actual binding code b) Do not bind non-default vi-* widgets to Up and Down. The change in "b)" may be controversial because it reverts long standing debian-zshrc behaviour. However, the #zsh channel on freenode gets a *lot* of people complaining about this from debian and ubuntu systems. There even was a bug report about this: #383737. Clint commented like this: > Unfortunately this boils down to a binary division in a fundamental > belief, and either way people are unhappy. I agree. But I disagree, that the solution is to keep the non-default behaviour in that case. The package should keep the default zsh behaviour with things that boil down to "fundamental belief" and leave it to the user to decide. The bindings that were the most controversial were `Up' and `Down' bound to vi-up/down-line-or-history in viins and vicmd. This patch binds both keys to the less surprising up/down-line-or-history bindings. Signed-off-by: Frank Terbeck <ft@bewatermyfriend.org>
2012-03-03No more offers a ksh alternative due to incomplete ksh emulation (Closes: ↵Axel Beckert2-4/+2
659969)
2012-03-0130303: emulate inside function marked for execution tracing enables xtracePeter Stephenson3-1/+27
2012-03-01Several previously uncommitted patches or patches based on list discussion;Bart Schaefer1-2/+22
see 30272, 30184, 30090, users/16715, users/16697.
2012-03-01unposted (users/16697): use a better output file name when the DISPLAYBart Schaefer1-7/+8
variable refers to a socket file (MacOS); fix problem with writing the output file when the user overrides the default value of TERM.