about summary refs log tree commit diff
path: root/Src/Zle/zle_refresh.c
Commit message (Collapse)AuthorAgeFilesLines
...
* 24893: duplicate statusline to avoid crashes when constantPeter Stephenson2008-04-291-1/+3
|
* 24822: highlighting of isearch matchesPeter Stephenson2008-04-261-12/+43
| | | | unposted: not in NEWS that COMBINING_CHARS is not on by default
* 24861 (with tweaks): logic to use alternative wcwidth() if needed;Peter Stephenson2008-04-221-5/+5
| | | | slightly improve test for overwriting with combining characters.
* 24856: add IS_COMBINING() and IS_BASECHAR() and widen testsPeter Stephenson2008-04-211-12/+8
|
* 24853: use metafied strings for inner loops over historyPeter Stephenson2008-04-201-2/+7
|
* Fixed some compiler warnings about signed/unsigned issues.Wayne Davison2008-04-181-4/+4
|
* 24808: initial support for combining characters in zlePeter Stephenson2008-04-131-63/+312
|
* 24792: try to be safer about turning off attributes when refreshingPeter Stephenson2008-04-041-3/+19
|
* 24787: reset region_highlight when finished editing command linePeter Stephenson2008-04-031-0/+5
|
* 24782: initial go at highlighting of characters in zle command linesPeter Stephenson2008-04-031-237/+839
|
* 24434: handle unprintable and zero-width wide charactersPeter Stephenson2008-01-221-5/+45
| | | | by displaying as hex
* 24371: bug refreshing large scrolling history entryPeter Stephenson2008-01-081-1/+10
|
* 24362: problem redrawing line with multibyte character firstPeter Stephenson2008-01-051-0/+12
|
* 24098: Fix my botch with 23924, rework out new prompts andGeoff Wing2007-11-231-8/+6
| | | | their lengths before use in resetvideo().
* 23924: Improve synchronising of character attributes with otherGeoff Wing2007-10-191-30/+27
| | | | output routines
* 23791: use VARARR for MB_CUR_MAXPeter Stephenson2007-08-221-1/+1
| | | | | users/11791: remove mysterious comment around emulate -L zsh in incremental-complete-word
* fix output of prompt in single line ZLEPeter Stephenson2007-03-191-68/+78
|
* Got rid of unused-variable compiler warning when compiling aWayne Davison2006-01-131-1/+1
| | | | non-multibyte zsh.
* 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-9/+18
| | | | | | | | 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).
* The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison2006-01-091-3/+3
| | | | | assign it to an int and then check if it's > 0, as that won't work on a system where an int is larger than a size_t.
* 22009: another double-width character fixPeter Stephenson2005-11-211-0/+6
|
* 21971: multibyte version of pfxlen()Peter Stephenson2005-11-011-2/+0
|
* I just noticed that zsh's default icntrl() macro returns true forWayne Davison2005-11-011-3/+3
| | | | | chars 128 - 159, so the "... ? ZWC('?') : (CHAR_VALUE | ZWC('@'))" code needed to be updated to reflect this.
* - Improved all the "... ? ZWC('?') : (CHAR_VALUE | ZWC('@'))" codeWayne Davison2005-11-011-13/+5
| | | | | | lines to work in both normal and multibyte mode without needing conditional code. - A couple brace-position twiddles.
* 21957: more wide-character refresh stuffPeter Stephenson2005-10-301-103/+119
|
* Got rid of a use of WEOF when MULTIBYTE_SUPPORT is not definedWayne Davison2005-10-281-2/+4
| | | | (which fixed a signed vs unsigned comparison compiler warning).
* 21943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT;Peter Stephenson2005-10-281-16/+16
| | | | use multibyte versions of nicechar wherever possible.
* 21942: another extra-wide character fixPeter Stephenson2005-10-281-5/+29
|
* 21936: bug deleting extra-wide characterPeter Stephenson2005-10-251-0/+6
|
* 21930: handle extra-wide characters at end of linePeter Stephenson2005-10-241-32/+38
|
* remove a couple of TODOsPeter Stephenson2005-10-211-5/+1
|
* Got rid of a pointer-type warning by adding a definition for aWayne Davison2005-10-191-1/+3
| | | | | REFRESH_CHAR type and using it to define nullchr (it was using ZLE_INT_T).
* 21887: Display characters wider than one screen cell correctly.Peter Stephenson2005-10-191-83/+230
|
* 21885: Convert some refresh macros into functions.Peter Stephenson2005-10-191-153/+184
|
* 21731: handle multibyte characters in prompts correctlyPeter Stephenson2005-09-171-12/+37
|
* 21622: fix recursive completion call in zrefresh()Andrey Borzenkov2005-08-151-1/+6
|
* Changed several instances of ZWC() used on a string to ZWS().Wayne Davison2005-08-111-3/+3
|
* 21593: character arrays wrongly declared with ZLE_UNICODE_SUPPORTPeter Stephenson2005-08-101-1/+1
|
* c.f. 21590: metafy_line()/unmetafy_line() now support wide charactersPeter Stephenson2005-08-101-10/+61
|
* correct 20928Peter Stephenson2005-03-041-1/+1
|
* 20928: null terminate screen lines in zle_refresh.cPeter Stephenson2005-03-041-2/+8
|
* 20869: more small Unicode tweaksPeter Stephenson2005-02-251-1/+2
|
* 20861: Fix statusline in Unicode, apart from isearchPeter Stephenson2005-02-241-7/+10
|
* 20857: rewrite zle_refresh to use wide characters.Andrey Borzenkov2005-02-231-169/+210
|
* 20854: more Unicode stuff.Peter Stephenson2005-02-231-2/+2
|
* 20752: fix access to ZLE parametersPeter Stephenson2005-01-261-1/+1
|
* * 20751: Src/Zle/zle_refresh.c: use '?' for character conversion errorClint Adams2005-01-261-2/+2
|
* * 20747: some wide char support in the zle refresh code.Clint Adams2005-01-261-16/+36
|
* c.f. 20675: improve zle as a basis for Unicode.Peter Stephenson2005-01-141-9/+9
| | | | unposted: update version to 4.2.3-dev-1