summaryrefslogtreecommitdiff
path: root/Src/Zle
AgeCommit message (Collapse)AuthorFilesLines
2006-09-2122753: minor character bugs spotted on CygwinPeter Stephenson1-2/+2
2006-09-1722729: trunction in computil.c did't handle multibyte charactersPeter Stephenson1-2/+16
2006-09-1722727: "use 'exit' to exit" was suboptimalPeter Stephenson1-0/+1
2006-09-1522713: word end in math completion context was screwyPeter Stephenson1-1/+1
2006-09-1122660: unmetafy directory for opendir() etc. in compctlPeter Stephenson1-6/+16
2006-09-1022684: improve getkeystring() interface and make printf do octal escapesPeter Stephenson3-7/+8
2006-09-1022676, 22678: extend sched and make it able to run events when waiting forPeter Stephenson2-155/+307
input
2006-08-2022651: failed to unmetafy bytes for outputPeter Stephenson2-7/+29
2006-08-2022643: completing in math contextPeter Stephenson1-0/+2
2006-08-1722612: comment the static variablesPeter Stephenson1-3/+83
2006-08-1522611: bug scrolling wide completion listPeter Stephenson1-5/+1
2006-08-1422605: bug in complist wide character fixes introduced infinite loopPeter Stephenson1-0/+2
2006-08-1122599: use wide character widths in completionPeter Stephenson3-47/+90
2006-08-1022597: back off two column-subtraction hunksPeter Stephenson2-3/+12
2006-08-1022595: paranoid bounds-checking on someBart Schaefer1-9/+9
loop indices.
2006-08-0922594: Attempt to fix some off-by-one errors for completion listsPeter Stephenson3-8/+35
that exactly fit the display width
2006-08-07unposted: badly positioned declaration in complist.cPeter Stephenson1-1/+3
2006-08-0722589: bug with long lines in menu selectionPeter Stephenson1-0/+4
2006-08-03rationalise mb<->wc conversions to use restartable formPeter Stephenson4-11/+18
2006-08-0122575: multibyte fixes for bslashquote(), getzlequery()Peter Stephenson4-31/+23
2006-07-3022565: Fix bug after failed menucompletion with accept-and-menu-complete?Peter Stephenson1-2/+2
2006-07-2422556: Multibyte separators and delimitersPeter Stephenson2-14/+22
2006-07-1022544: Improve use of ztype tests for multibyte characters. AddPeter Stephenson2-39/+81
POSIX_IDENTIFIERS option to control allowability of multibyte alphanumeric characters in parameter and module names.
2006-05-3022474: use variable argument lists to improve error message handlingPeter Stephenson9-220/+195
2006-05-30Made implied "int" on new static variable explicit (which silencesWayne Davison1-1/+1
gcc).
2006-05-2622464: bad recursion if error in prompt substitutionPeter Stephenson1-4/+9
2006-05-1922448: typo retrieving $RBUFFER in completionPeter Stephenson1-1/+2
2006-04-25this one got missedPeter Stephenson1-1/+1
2006-04-2522431: set WIDGET etc. more consistently when executing zle functionsPeter Stephenson3-10/+17
2006-04-2522427: zle <widget> -w sets the environment for <widget>Peter Stephenson1-2/+8
2006-04-23users/10172: new zle command read-commandPeter Stephenson2-0/+14
2006-04-0922408: support for multibyte characters in patternsPeter Stephenson1-18/+0
2006-03-25Fixed call to undefined function zwarnname() instead of zwarnnam().Wayne Davison1-1/+1
2006-03-2122638: MACHINES: IRIXPeter Stephenson1-1/+15
users/10047: zle widget -K keymap
2006-03-20thinko fixClint Adams1-1/+1
2006-03-2022371: use only alphanumerics and underscores as word characters with vi ↵Clint Adams2-13/+15
bindings.
2006-03-1722366: better handling for multibyte-character-containing words in vi widgets.Clint Adams1-12/+14
2006-03-09Fix some compiler warnings and ensure that zmod gets restoredWayne Davison1-7/+3
properly in bin_zle_call().
2006-03-07Changed some structures to avoid gcc's type-punned warnings.Wayne Davison10-54/+52
2006-03-0722328, modified: add -o option to compaddPeter Stephenson3-2/+6
add _list_files helper to handle new file-list style for _path_files
2006-02-20Optimized away a recently-added call to strlen().Wayne Davison1-1/+1
2006-02-19Made the realocation of the line buffer in add_match_data() use aWayne Davison1-8/+9
little more optimal size. Also tweaked the code just a little.
2006-02-18The code in add_match_data() that looks for invalid charactersWayne Davison1-25/+26
now properly parses the string as metafied.
2006-02-13Replaced a flawed look-behind algorithm for backslash detectionWayne Davison1-8/+8
with one that looks forward (avoiding an accidental quoting of a char after a "\\" sequence).
2006-02-13Made add_match_data() look for invalid multibyte chars in theWayne Davison1-4/+61
names and substitute $'\123' sequences for them.
2006-02-13Call makecommaspecial() when we notice we're completing insideWayne Davison1-0/+5
an open brace list.
2006-02-09Call ZS_memchr() instead of plain memchr() so that suffix-removalWayne Davison1-2/+2
works again.
2006-02-09Define ZS_memchr() as either wmemchr() or memchr().Wayne Davison1-0/+2
2006-01-2822169: hook function zle-keymap-select called when $KEYMAP changesPeter Stephenson1-1/+17
2006-01-13Got rid of unused-variable compiler warning when compiling aWayne Davison1-1/+1
non-multibyte zsh.