about summary refs log tree commit diff
path: root/Src/Zle
Commit message (Collapse)AuthorAgeFilesLines
...
* 22676, 22678: extend sched and make it able to run events when waiting forPeter Stephenson2006-09-102-155/+307
| | | | input
* 22651: failed to unmetafy bytes for outputPeter Stephenson2006-08-202-7/+29
|
* 22643: completing in math contextPeter Stephenson2006-08-201-0/+2
|
* 22612: comment the static variablesPeter Stephenson2006-08-171-3/+83
|
* 22611: bug scrolling wide completion listPeter Stephenson2006-08-151-5/+1
|
* 22605: bug in complist wide character fixes introduced infinite loopPeter Stephenson2006-08-141-0/+2
|
* 22599: use wide character widths in completionPeter Stephenson2006-08-113-47/+90
|
* 22597: back off two column-subtraction hunksPeter Stephenson2006-08-102-3/+12
|
* 22595: paranoid bounds-checking on someBart Schaefer2006-08-101-9/+9
| | | | loop indices.
* 22594: Attempt to fix some off-by-one errors for completion listsPeter Stephenson2006-08-093-8/+35
| | | | that exactly fit the display width
* unposted: badly positioned declaration in complist.cPeter Stephenson2006-08-071-1/+3
|
* 22589: bug with long lines in menu selectionPeter Stephenson2006-08-071-0/+4
|
* rationalise mb<->wc conversions to use restartable formPeter Stephenson2006-08-034-11/+18
|
* 22575: multibyte fixes for bslashquote(), getzlequery()Peter Stephenson2006-08-014-31/+23
|
* 22565: Fix bug after failed menucompletion with accept-and-menu-complete?Peter Stephenson2006-07-301-2/+2
|
* 22556: Multibyte separators and delimitersPeter Stephenson2006-07-242-14/+22
|
* 22544: Improve use of ztype tests for multibyte characters. AddPeter Stephenson2006-07-102-39/+81
| | | | | POSIX_IDENTIFIERS option to control allowability of multibyte alphanumeric characters in parameter and module names.
* 22474: use variable argument lists to improve error message handlingPeter Stephenson2006-05-309-220/+195
|
* Made implied "int" on new static variable explicit (which silencesWayne Davison2006-05-301-1/+1
| | | | gcc).
* 22464: bad recursion if error in prompt substitutionPeter Stephenson2006-05-261-4/+9
|
* 22448: typo retrieving $RBUFFER in completionPeter Stephenson2006-05-191-1/+2
|
* this one got missedPeter Stephenson2006-04-251-1/+1
|
* 22431: set WIDGET etc. more consistently when executing zle functionsPeter Stephenson2006-04-253-10/+17
|
* 22427: zle <widget> -w sets the environment for <widget>Peter Stephenson2006-04-251-2/+8
|
* users/10172: new zle command read-commandPeter Stephenson2006-04-232-0/+14
|
* 22408: support for multibyte characters in patternsPeter Stephenson2006-04-091-18/+0
|
* Fixed call to undefined function zwarnname() instead of zwarnnam().Wayne Davison2006-03-251-1/+1
|
* 22638: MACHINES: IRIXPeter Stephenson2006-03-211-1/+15
| | | | users/10047: zle widget -K keymap
* thinko fixClint Adams2006-03-201-1/+1
|
* 22371: use only alphanumerics and underscores as word characters with vi ↵Clint Adams2006-03-202-13/+15
| | | | bindings.
* 22366: better handling for multibyte-character-containing words in vi widgets.Clint Adams2006-03-171-12/+14
|
* Fix some compiler warnings and ensure that zmod gets restoredWayne Davison2006-03-091-7/+3
| | | | properly in bin_zle_call().
* Changed some structures to avoid gcc's type-punned warnings.Wayne Davison2006-03-0710-54/+52
|
* 22328, modified: add -o option to compaddPeter Stephenson2006-03-073-2/+6
| | | | add _list_files helper to handle new file-list style for _path_files
* Optimized away a recently-added call to strlen().Wayne Davison2006-02-201-1/+1
|
* Made the realocation of the line buffer in add_match_data() use aWayne Davison2006-02-191-8/+9
| | | | little more optimal size. Also tweaked the code just a little.
* The code in add_match_data() that looks for invalid charactersWayne Davison2006-02-181-25/+26
| | | | now properly parses the string as metafied.
* Replaced a flawed look-behind algorithm for backslash detectionWayne Davison2006-02-131-8/+8
| | | | | with one that looks forward (avoiding an accidental quoting of a char after a "\\" sequence).
* Made add_match_data() look for invalid multibyte chars in theWayne Davison2006-02-131-4/+61
| | | | names and substitute $'\123' sequences for them.
* Call makecommaspecial() when we notice we're completing insideWayne Davison2006-02-131-0/+5
| | | | an open brace list.
* Call ZS_memchr() instead of plain memchr() so that suffix-removalWayne Davison2006-02-091-2/+2
| | | | works again.
* Define ZS_memchr() as either wmemchr() or memchr().Wayne Davison2006-02-091-0/+2
|
* 22169: hook function zle-keymap-select called when $KEYMAP changesPeter Stephenson2006-01-281-1/+17
|
* Got rid of unused-variable compiler warning when compiling aWayne Davison2006-01-131-1/+1
| | | | non-multibyte zsh.
* Got rid of some superfluous STOUC() calls (such as the ones I addedWayne Davison2006-01-132-2/+2
| | | | for the arg of calls to nicechar(), which doesn't need this).
* The new "eol" var was being set in singlerefresh(), but not accessed.Wayne Davison2006-01-121-1/+1
|
* - When mbrtowc() returns -2 when given all the remaining chars in aWayne Davison2006-01-121-21/+30
| | | | | | | | string, set an end-of-line flag and avoid calling mbrtowc() again for any of the incomplete characters that remain in the string. - Use "mbs" for the multi-byte state variable name (for consistency). - Use the new MB_INVALID and MB_INCOMPLETE defines for the size_t -1 and -2 values (respectively).
* - Use "mbs" for the multi-byte state variable name (for consistency).Wayne Davison2006-01-121-5/+5
| | | | | - Use the new MB_INVALID and MB_INCOMPLETE defines for the size_t -1 and -2 values (respectively).
* - When mbrtowc() returns -2 when given all the remaining chars in aWayne Davison2006-01-124-31/+42
| | | | | | | | string, set an end-of-line flag and avoid calling mbrtowc() again for any of the incomplete characters that remain in the string. - Use "mbs" for the multi-byte state variable name (for consistency). - Use the new MB_INVALID and MB_INCOMPLETE defines for the size_t -1 and -2 values (respectively).
* Tweaked the code to handle mbrtowc() converting '\0' the same way asWayne Davison2006-01-111-11/+20
| | | | the other callers do. Also, changed the variable name to 'cnt'.