about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Test typeset preserves types of existing variables when already local typeset-arrayPeter Stephenson2015-06-241-1/+45
|
* Some more typeset tests and fix for nested asignmentPeter Stephenson2015-06-232-0/+90
|
* Further doucmentation improvements after comments from Bart and OliverPeter Stephenson2015-06-232-23/+32
|
* Further updated to typeset documentationPeter Stephenson2015-06-221-11/+4
|
* Documentation for new typeset parsing.Peter Stephenson2015-06-227-16/+104
| | | | | | | Don't need KSH_TYPESET even in emulation. integer and float should be parsed the same way in case of arguments that will be evaluated as expressions.
* Add errors for incorrect types of assignmentPeter Stephenson2015-06-221-0/+13
|
* Very basic tests for typeset reserved word inteface.Peter Stephenson2015-06-211-0/+17
|
* Consistent use of reserved word interface for typeset.Peter Stephenson2015-06-213-17/+31
| | | | Don't try to use array type if we have an existing hash we can use.
* Fix remaining existing tests.Peter Stephenson2015-06-204-2/+34
| | | | | | | | | | | | XTRACE output for builtins with assignment arguments added. Note difference as the output is assignment-like too: 'foo=<squggle><squiggle>bar' now appears as foo='<squiggle><squiggle>bar' Remove stupid "int htok" that stopped name part of scalar being expanded. Rewrite KSH_TYPESET test to use old builtin interface where this applies.
* Fix bug with conflicting types for typeset array assignment.Peter Stephenson2015-06-191-1/+1
| | | | | | This allows typeset -A hash=(key1 val1 key2 val2)
* Expand non-assignment arguments in assign list consistently.Peter Stephenson2015-06-192-4/+46
|
* Expand name part of typeset assignment where neededPeter Stephenson2015-06-191-2/+7
|
* A couple of issues with tied arrays.Peter Stephenson2015-06-191-5/+19
|
* Update version number for wordcode incompatibility.Peter Stephenson2015-06-193-3/+4
| | | | | | | | | Fix null dereference in tie code. Add export to typeset reserved words. Note "export FOO foo=(stuff here)" still doesn't do the export: there's an ordering problem that needs fixing.
* Debug so basic typeset cases work.Peter Stephenson2015-06-193-30/+41
| | | | | | | | | | | | | zshlex() needed after ENVSTRING and ENVARRAY in typeset. WC_TYPESET needs to come before WC_CURSH as not handled by execfuncs. More care needed counting and retrieving arguments in typeset. Array assignment for new typeset variable should be more like scalar assignment.
* First compiling attempt at typeset array handling.Peter Stephenson2015-06-197-131/+449
| | | | Completely untested and undebugged.
* 35474, 35492: support the bracketed paste mode of newer terminal emulatorsOliver Kiddle2015-06-199-36/+181
|
* 35487, 35496: don't reinstate previous incremental search stringOliver Kiddle2015-06-194-3/+11
| | | | when search direction changes
* 35510: use consistent formatting for git subcommandsOliver Kiddle2015-06-182-83/+36
|
* 35504: complete % placeholders for git log --formatOliver Kiddle2015-06-182-10/+93
|
* 35521: sort matches numerically and use pfiles on SolarisOliver Kiddle2015-06-182-13/+27
|
* 35490: silence errors and avoid blank match due to missing localEric Cook2015-06-182-9/+27
|
* 35476: Allow setting $0 when POSIX_ARGZERO is not setMikael Magnusson2015-06-172-1/+19
|
* 35493: erase $_ when the command line is an assignmentBarton E. Schaefer2015-06-162-0/+3
|
* 35482: be consistent about how argzero is allocatedBarton E. Schaefer2015-06-162-2/+7
|
* _gdb: Allow 'core' to occur anywhere in a coredump filenameMikael Magnusson2015-06-172-1/+6
|
* 35469: test UNDO_CHANGE_NO to determine whether to start over or use the ↵Barton E. Schaefer2015-06-142-3/+12
| | | | next history event
* 35467: complete files for non-GNU duBarton E. Schaefer2015-06-142-1/+5
|
* Add non-metafied character length handling.Peter Stephenson2015-06-1212-31/+154
| | | | | | | Use this in regex module and add test using $'\ua0'. Rename mb_metacharinit() to mb_charinit() as it does not involve metafied characters.
* 35442: document MULTIBYTE is always on by default when availablePeter Stephenson2015-06-112-5/+8
|
* 35418: fix usage synopsis for _describe to be clear that a singleOliver Kiddle2015-06-092-1/+6
| | | | description is used
* 35416: Turn on MULTIBYTE in all emulations.Peter Stephenson2015-06-082-1/+6
| | | | This now includes sh.
* 35216: _git-checkout: do not call __git_commits twiceDaniel Hahler2015-06-082-3/+6
| | | | | | | | | | This makes `branch_arg` empty by default, to be used only for __git_remote_branch_names. `branches::__git_revisions` was used here, but that's the same as tree_ish_arg='tree-ishs::__git_tree_ishs' - both call __git_commits. Only tree_ish_arg will call __git-commits now.
* 35412: fix for - flag when formating strings with printfOliver Kiddle2015-06-073-3/+12
|
* 35163: move "show-ambiguity" style to _setup so that more precise context ↵Barton E. Schaefer2015-06-063-7/+17
| | | | can be applied
* 35350: extend "fc -I" to cover listing of "internal" history events onlyBarton E. Schaefer2015-06-064-55/+66
|
* 35386: expand tabs where useful in builtins outputing function.Peter Stephenson2015-06-0510-51/+243
| | | | | | Also add to zed -f. Option is -x <numm>.
* 35360 (replacing 35357): fix for configuring zpty on FreeBSD withoutOliver Kiddle2015-06-033-2/+7
| | | | pty.ko loaded
* 35374: tab expansion with double width charactersPeter Stephenson2015-06-032-0/+14
|
* 35369: better GLOB_ASSIGN testingPeter Stephenson2015-06-023-12/+28
|
* GLOB_ASSIGN should only affect scalar assignmentsMikael Magnusson2015-06-022-2/+7
|
* users/20243: turn off GLOB_ASSIGN in completion system.Peter Stephenson2015-06-022-0/+6
|
* 35270: _describe: Document a known issue described in 35229Daniel Shahaf2015-06-022-0/+11
| | | | (which is the same thread as 35127 and 34768)
* 35271: New completion: beep.Daniel Shahaf2015-06-022-0/+53
| | | | | | The new completion is mostly boilerplate except for the handling of $words/$CURRENT to support specifying the arguments multiple times separated by -n.
* unposted: Typo fixDaniel Shahaf2015-06-022-1/+5
|
* 35359: Improved math parsing and errors.Peter Stephenson2015-06-023-11/+37
| | | | | | Check for bogus trailing ")" at end of top-level parse. Extend some math error messages to indicate they are math errors.
* 35357: FreeBSD needs HAVE_POSIX_OPENPT for zptyBaptiste Daroussin2015-06-022-1/+4
|
* 35353: print -x and print -X expand tabsPeter Stephenson2015-06-025-7/+177
|
* 35356: factor out completion of tty devicesOliver Kiddle2015-06-026-14/+32
|
* Adrien Vergé: 35352: completion for new Redhat package managerOliver Kiddle2015-06-022-0/+283
|