about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
* remove that -T option to compdef again and instead use comma-separated ↵Sven Wischnowsky2002-03-131-0/+1
| | | | sub-contexts both for function and style lookup (16819)
* Fix parsing of binary infix operators of test builtin.Bart Schaefer2002-03-071-2/+2
|
* don't try to build the redirection string for the loops (for, foreach, ↵Sven Wischnowsky2002-03-071-1/+1
| | | | select) (16776)
* 16767: Src/Zle/zle_hist.c, Doc/Zsh/zle.yo, Doc/Zsh/contrib.yo,Peter Stephenson2002-03-051-23/+115
| | | | | | | | | Functions/Zle/copy-earlier-word: Enhance insert-last-word to pick different lines from the history (including the current line) and different words from that line. Add copy-earlier-word as suggested by Dominik Vogt to copy words from either the current line, or (following an insert-last-word) a previous history line.
* 16759: Src/builtin.c: from Eric Norum <eric.norum@usask.ca>:Peter Stephenson2002-03-041-5/+7
| | | | | | cd prints output whenever the target directory is not obvious to the user. This confuses scripts, so restrict it to interactive mode.
* add $redirections array to completion system parameters, containing ↵Sven Wischnowsky2002-03-015-25/+74
| | | | information about all redirections on the line; make this and compstate[redirect] contain the file descriptor number (16751)
* allow nterruption of empty while-loops with ^C (16711)Sven Wischnowsky2002-02-251-31/+47
|
* make _guard use `_mesage -e'; make `_message -e' use $curtag as a default; ↵Sven Wischnowsky2002-02-251-4/+0
| | | | change uses of _guard (16708)
* Improved the output of the "history" command with a 1-line history buffer,Wayne Davison2002-02-221-10/+15
| | | | | and also improved the error handling of explicitly-specified first/last values.
* In putoldhistentryontop(), ensure that we can't return with "next" set toWayne Davison2002-02-221-2/+3
| | | | the value we just put on top.
* 16620, 16697: add a and n parameter expansion flagsOliver Kiddle2002-02-222-51/+100
|
* Yet another fix for prepnexthistent().Wayne Davison2002-02-201-1/+2
|
* 16619, 16676: add -c, -l and -p options to the dirs builtinOliver Kiddle2002-02-201-21/+28
|
* 16673: add langinfo module as an interface to locale information.Clint Adams2002-02-193-0/+566
|
* 16635: make sure we display lists in singlelinezle modeGeoff Wing2002-02-191-2/+2
|
* Fixed a just-introduced bug in prepnexthistent() when curline is inWayne Davison2002-02-181-4/+5
| | | | the list.
* allow an argument containing only a single colon as a separator between ↵Sven Wischnowsky2002-02-181-0/+2
| | | | options to _arguments and specs (16669)
* fix group handling nothing should now possibly be added to the wrong group ↵Sven Wischnowsky2002-02-181-27/+19
| | | | again (16668)
* When savehistfile() rewrites the history file, there was a potential forWayne Davison2002-02-161-1/+2
| | | | | losing the entire history file if we couldn't lock the file for reading (it timed out) but we could lock the file for write (and wrote nothing).
* Optimized putoldhistentryontop() so that when resizehistents() calls itWayne Davison2002-02-161-14/+24
| | | | | repeatedly while HIST_EXPIRE_DUPS_FIRST is set, it doesn't re-scan the already-checked hist items (avoiding potentially slow operation).
* Improved resizehistents() so that it honors HISTEXPIREDUPSFIRST.Wayne Davison2002-02-131-25/+33
|
* Silenced a compiler warning.Wayne Davison2002-02-121-1/+1
|
* The minimum size of histsiz (aka HISTSIZE) should be 1, not 2.Wayne Davison2002-02-121-2/+2
|
* fix for displaying matches in groups via _describe; go back to displaying ↵Sven Wischnowsky2002-02-071-1/+10
| | | | one match per line when lines get too long (16582)
* 16577: don't return a single dot as the path head of a slash.Clint Adams2002-02-061-1/+5
|
* 16556: No error on `print >&-'.Bart Schaefer2002-02-041-10/+17
|
* 16494: extract outermost words with negative arguments to %_ and add %^Oliver Kiddle2002-01-311-7/+46
|
* 16493: correct typosOliver Kiddle2002-01-311-7/+7
|
* 16492: add RPROMPT2 variable for right prompts in multi-line commandsOliver Kiddle2002-01-312-3/+9
|
* * 16527: Src/Zle/zle_refresh.c: Don't lose the rprompt whenAndrew Main2002-01-311-1/+1
| | | | clearing an otherwise-blank line.
* 16503: warn on fclose or fflush errors in bin_print.Clint Adams2002-01-271-76/+84
|
* 16435: Fix core dump in `hash'.Bart Schaefer2002-01-261-1/+1
|
* 16487: Src/glob.c: bug in 16486 when a qualifier in a setPeter Stephenson2002-01-221-1/+1
| | | | consisted only of flags which were handled globally.
* 16486: Doc/Zsh/expn.yo, Src/glob.c, Src/pattern.c: supportPeter Stephenson2002-01-222-493/+660
| | | | | (#q...) EXTENDED_GLOB syntax for qualifiers. May be chained, ignored by pattern matching code.
* add new generic fake style and changes to the C-code for that (different ↵Sven Wischnowsky2002-01-225-50/+43
| | | | implementation of compadd -x) (16483)
* unposted: remove ansi2knr from distfilesClint Adams2002-01-161-1/+1
|
* 16448: math assignment bug introduced by 15291, 15292Peter Stephenson2002-01-141-1/+5
|
* 16423: append a `.' to converted floating point outputPeter Stephenson2002-01-101-0/+2
| | | | to stop it looking like an integer
* fix completion after var+= to use value context (16418)Sven Wischnowsky2002-01-082-1/+4
|
* don't report _arguments-specs more than once (not even shared options with ↵Sven Wischnowsky2002-01-081-1/+8
| | | | multiple sets) (16417)
* make sure auto menu isn't started accidentially when bashautolist is set (16408)Sven Wischnowsky2002-01-071-1/+2
|
* 16400, 16401: preserve empty words that result from brace expansion.Bart Schaefer2002-01-061-5/+12
|
* 15746: remove (with #if) an incorrect optimization in the maildir versionBart Schaefer2002-01-061-1/+6
| | | | of mailstat().
* 16372: allow signal names to be prefixed by `SIG' with kill builtin and fixOliver Kiddle2001-12-211-5/+19
| | | | problem with no argument to kill -n and -s options
* 16332: remove ansi2knr.c from our repository due to licenceGeoff Wing2001-12-203-430/+3
| | | | | | | differences. Adjust the build process accordingly. configure will now abort if the user requests ansi2knr but no ansi2knr is available. ansi2knr is available from the main distribution site and most mirrors
* 16364: further to 16351, except specials from having their value clearedOliver Kiddle2001-12-181-1/+4
|
* small fix to += code from 16353Oliver Kiddle2001-12-181-4/+4
|
* unposted: back out idiotic patchClint Adams2001-12-181-1/+1
|
* unposted: initialize save to NULL to avoid compiler warning.Clint Adams2001-12-181-1/+1
|
* 16361: include <stdio.h> to avoid implicit declarations.Clint Adams2001-12-181-0/+4
|