Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 35668: Improved fix for command/proc subst starting in alias. | Peter Stephenson | 2015-07-02 | 1 | -1/+1 |
| | | | | | | Use input flag to suppress the unwanted backtracking. Add test for the extra case covered. | ||||
* | 35667: fix command substitution that starts but doesn't finish in alias | Peter Stephenson | 2015-07-01 | 1 | -0/+1 |
| | |||||
* | 35655: APPEND_CREATE option for POSIX copmatible NO_CLOBBER | Peter Stephenson | 2015-06-29 | 1 | -0/+1 |
| | |||||
* | 35623: All is_array assignments should be treated as having a value. | Peter Stephenson | 2015-06-27 | 1 | -5/+3 |
| | |||||
* | various posts: Implement assignment parsing for typeset. | Peter Stephenson | 2015-06-24 | 1 | -24/+63 |
| | | | | | | | | | | | | Typeset assignments now work like raw assignments except for no "+=" and no GLOB_ASSIGN. Documented in typeset builtin doc and mentioned in release notes. Tests to ensure basic sanity. Enabled by default, can be turned off by "disable -r" with typeset family of commands. | ||||
* | Add non-metafied character length handling. | Peter Stephenson | 2015-06-12 | 1 | -1/+11 |
| | | | | | | | Use this in regex module and add test using $'\ua0'. Rename mb_metacharinit() to mb_charinit() as it does not involve metafied characters. | ||||
* | 35386: expand tabs where useful in builtins outputing function. | Peter Stephenson | 2015-06-05 | 1 | -3/+6 |
| | | | | | | Also add to zed -f. Option is -x <numm>. | ||||
* | 35078: Add backslash quoting to parameter (b) flag from 35067. | Peter Stephenson | 2015-05-11 | 1 | -1/+1 |
| | |||||
* | 35067: Add (b) parameter flag for pattern char backslashing. | Peter Stephenson | 2015-05-10 | 1 | -0/+10 |
| | | | | | | Doc tweak from Daniel in 35071. Includes test. | ||||
* | Don't treat NUL as a combining character | Mikael Magnusson | 2015-05-10 | 1 | -2/+2 |
| | |||||
* | 34784: fix old bug with history word selection | Peter Stephenson | 2015-03-26 | 1 | -2/+3 |
| | |||||
* | 34776: improve suppression of alias expansions from history. | Peter Stephenson | 2015-03-25 | 1 | -1/+0 |
| | | | | | Now uses the mechanism in use for other forms of suppression of sections of input. | ||||
* | 34570: Another nasty command / math substituion thing. | Peter Stephenson | 2015-02-19 | 1 | -21/+23 |
| | | | | | | Mark arithmetic substitutions with tokens to make sure the substitution go knows what to do. Before it was guessing by counting the parentheses at the end. | ||||
* | 34560: Fix $(( that's actually a multiline cmd subst. | Peter Stephenson | 2015-02-16 | 1 | -0/+1 |
| | |||||
* | 34234: use structures for normal and raw lexical buffer state | Peter Stephenson | 2015-01-11 | 1 | -6/+23 |
| | |||||
* | Rearrange context saving. | Peter Stephenson | 2015-01-09 | 1 | -0/+65 |
| | | | | | | | Variables are now associated with the module that declares them, being initialised and saved/restored there. However, as many variables are used for communication between modules, many of them are set in multiple places, so the assignment is ambiguous. | ||||
* | Fix command substitutions to parse contents as they are read in. | Peter Stephenson | 2015-01-08 | 1 | -0/+9 |
| | | | | | | | Do this by refactoring misnamed lexsave()/lexrestore() to allow continuity of history and input. Add test. | ||||
* | 33876: etc.: Separate errors and keyboards interrupts | Peter Stephenson | 2014-12-11 | 1 | -0/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | 33655: remove overlap of node flags | Peter Stephenson | 2014-11-08 | 1 | -3/+3 |
| | |||||
* | 33285: apply function definition redirections at execution | Peter Stephenson | 2014-09-29 | 1 | -0/+1 |
| | |||||
* | 33276: safer import of numerical variables from environment | Peter Stephenson | 2014-09-29 | 1 | -1/+2 |
| | |||||
* | 32768 with further modifications: LOCAL_LOOPS option. | Peter Stephenson | 2014-06-13 | 1 | -0/+1 |
| | |||||
* | 32682 with tweaks: Add INC_APPEND_HISTORY_TIME. | Peter Stephenson | 2014-06-06 | 1 | -0/+1 |
| | | | | Revert INC_APPEND_HISTORY behaviour. | ||||
* | 32634: add POSIX_ARGZERO option | Barton E. Schaefer | 2014-06-01 | 1 | -0/+1 |
| | |||||
* | 32412 / 32415: New giga- and terabyte units for glob qualifiers | Manuel Presnitz | 2014-03-01 | 1 | -3/+26 |
| | |||||
* | 32136: fix problem with kshglob. | Peter Stephenson | 2013-12-16 | 1 | -1/+5 |
| | | | | | Non-pattern characters that could be followed by "(" to introduce a ksh glob but weren't caused failures. | ||||
* | 31830: New feature for zshaddhistory hooks. | Peter Stephenson | 2013-10-17 | 1 | -0/+1 |
| | | | | | If the first non-zero return status is 2, save the line on the internal history list, but don't write it out. | ||||
* | users:18023: Add PIPEFAIL option | Peter Stephenson | 2013-10-06 | 1 | -0/+1 |
| | |||||
* | users/17908: Keep history line in sync between ZLE and shell. | Peter Stephenson | 2013-08-08 | 1 | -1/+2 |
| | | | | Update ZLE version if history is read, pushed or popped with ZLE active | ||||
* | 31549: Fix third problem with file descriptor management. | Peter Stephenson | 2013-07-21 | 1 | -1/+0 |
| | | | | | Replace ad-hoc subsh_close file descriptor for pipe management with the new job-based addfilelist() mechanism. | ||||
* | 31528: use job table to record file descriptors associated with process subst | Peter Stephenson | 2013-07-17 | 1 | -3/+16 |
| | |||||
* | 31444: Basic code for enable/disable -p | Peter Stephenson | 2013-06-13 | 1 | -0/+16 |
| | |||||
* | 31441: use array to decide which forms of pattern are enabled | Peter Stephenson | 2013-06-01 | 1 | -1/+39 |
| | |||||
* | users/17665: add FORCE_FLOAT option | Peter Stephenson | 2013-03-05 | 1 | -0/+1 |
| | |||||
* | 30789: Add CONTINUE_ON_ERROR for old behaviour. | Peter Stephenson | 2012-11-15 | 1 | -0/+1 |
| | | | | | New behaviour is for scripts to exit on error instead of returning to top level and executing the next command. | ||||
* | 30726: make shell options passed to emulate stick along with the emulation | Peter Stephenson | 2012-10-11 | 1 | -1/+29 |
| | |||||
* | 30715: use enum lextok for variables containing lexical tokens | Peter Stephenson | 2012-10-05 | 1 | -1/+1 |
| | |||||
* | Jun T.: 30640: MacOS doesn't define __STDC_ISO_10646__ but we need | Peter Stephenson | 2012-08-23 | 1 | -1/+8 |
| | | | | the replacement wcwidth function anyway | ||||
* | 30633: "functions -T" only traces marked function, not called functions | Peter Stephenson | 2012-08-21 | 1 | -0/+1 |
| | |||||
* | Hiramatsu Yoshifumi: 30621 patch-ab (from NetBSD pkgsrc):compilation on | Peter Stephenson | 2012-08-16 | 1 | -0/+2 |
| | | | | __INTERIX | ||||
* | YAMAMOTO Takashi: 30599: don't use replacement wcwidth if not ISO-10646 | Peter Stephenson | 2012-08-07 | 1 | -1/+1 |
| | |||||
* | 30181, plus rename of PF_* flags to PREFORK_*: | Peter Stephenson | 2012-02-12 | 1 | -3/+12 |
| | | | | | | Pass sh-wordsplitting instructions to paramsubst() using flags, avoiding side effects of explicitly setting and unsetting the SHWORDSPLIT option. | ||||
* | 30101: add HASH_EXECUTABLES_ONLY option | Peter Stephenson | 2012-01-08 | 1 | -0/+1 |
| | |||||
* | 29955++: IGNORE_CLOSE_BRACES option | Peter Stephenson | 2011-12-08 | 1 | -0/+1 |
| | |||||
* | 29677: Do not allow external processes in a pipeline to become suspended | Bart Schaefer | 2011-08-14 | 1 | -0/+2 |
| | | | | | when the end of the pipe is controlled by a builtin in the current shell which cannot itself become suspended. | ||||
* | 29276: always typedef Heapid for use by auto-generated header files. | Bart Schaefer | 2011-05-14 | 1 | -1/+2 |
| | |||||
* | 29267: add -enable-zsh-debug and use for debugging completion matcher groups | Peter Stephenson | 2011-05-14 | 1 | -0/+60 |
| | |||||
* | 28638: add $usergroups parameter | Peter Stephenson | 2011-01-19 | 1 | -0/+17 |
| | |||||
* | 28578: fix handling of numeric escapes that expand to "%" in printf | Bart Schaefer | 2011-01-06 | 1 | -3/+8 |
| | | | | format strings, so they are not treated as format introducers. | ||||
* | lexsave/lexrestore lexflags | Peter Stephenson | 2010-12-14 | 1 | -3/+9 |
| | | | | add new LEXFLAGS_ZLE |