about summary refs log tree commit diff
path: root/Src/Zle/zle_refresh.c
Commit message (Collapse)AuthorAgeFilesLines
* 46068 (tweaked) (was: github #57): region_highlight: Add memo= support.Daniel Shahaf2020-06-251-6/+56
| | | | | | | | | | | | | | | | This is useful when multiple plugins add region_highlight entries and subsequently want to remove only their own entries. Without this functionality, recognizing one's region_highlight entries is not trivial because the 'start' and 'end' offsets are modified by editing of $BUFFER and the highlight specification may not be unique or distinctive. The tweaks are as follows: - Change zfree() to zsfree() per workers/46070. - Remove the mem.c hunk, as it changed the signature of only one out of two alternative definitions of zsfree(). (The definition that hunk touched is the one that's not used by default.)
* 45269: Fix misspellings in completions and elsewhere.Jens Schleusener2020-01-091-1/+1
|
* unposted: fix indentation (whitespace-only change)romkatv2019-10-281-30/+30
| | | | | | | Indentatin in moveto was broken by 3eea35d0 (my bad), making it difficult to read. This commit reverts it to what it used ot be. While at it, fix indentation in a few other places in the same file.
* fix cursor position with ZLE_RPROMPT_INDENT=0romkatv2019-05-281-20/+20
|
* 43759: add support for true colour terminalsOliver Kiddle2018-11-051-14/+17
|
* 41090: Replace iswprint() if unicode9 is enabled.Jun-ichi Takimoto2017-05-121-4/+4
| | | | If wcwidth() or iswprint() is broken, force enable unicode9.
* 40305: fix some problems redisplaying command line after interrupt.Peter Stephenson2017-01-101-2/+2
| | | | | | | | | | | | Back off previous fix as this only covered some subset of problems. Remaining problems happend after reset-prompt in TRAPINT. One was in complist and is fixed by not attempting to list after an error or interrupt. The other was owing to not resetting clearflag when ZLE was re-entered.
* 40035: Cosmetic fixes for comments and documentation.Eitan Adler2016-11-291-1/+1
| | | | Mostly fixes to doubled words.
* 38809: fix tracking of colour attributes and restore them when turning bold offOliver Kiddle2016-07-081-2/+1
|
* 38048: fix "zle redisplay" when called while a listing is below the promptBarton E. Schaefer2016-03-031-2/+2
|
* 38001: clear-screen re-expands promptsBarton E. Schaefer2016-02-171-0/+1
|
* 37456: Have zle_highlight=(none) disable paste highlightingDaniel Shahaf2015-12-311-3/+3
| | | | | Before this change, zle_highlight=(paste:none) worked, but zle_highlight=(none) didn't.
* 36443: Set zle_highlight=(paste:standout) by default.Daniel Shahaf2015-09-111-1/+2
|
* 36416: ^C in getzlequery() just aborts query.Peter Stephenson2015-09-031-1/+2
| | | | | Also logical but possibly invisible fix for error propagated back from listing interface.
* 35824: allow highlighting of just pasted text and put text from bracketed ↵Oliver Kiddle2015-07-231-1/+14
| | | | paste in cut buffers
* 34070: fix starting position for memset() from 34005.Daniel Shahaf2014-12-281-1/+1
|
* 34005: region_highlights memory fixPeter Stephenson2014-12-191-2/+8
| | | | Zero uninitialised part of memory when reallocing
* 33981: more care with region_highlights managementPeter Stephenson2014-12-181-2/+5
|
* 33704: keybindings, documentation, tests and minorOliver Kiddle2014-11-171-3/+2
| | | | fixes for vim style visual selection changes
* 33636: add support for a linewise visual selection modeOliver Kiddle2014-11-171-0/+8
|
* 33635: adapt region to function as vim style visual selection modeOliver Kiddle2014-11-171-0/+2
|
* Fix some compiler warnings in ZlePeter Stephenson2014-09-301-2/+1
|
* 32531: fix memory leaks detected by valgrindBarton E. Schaefer2014-04-061-0/+3
|
* m0viefreak: users/18655,18657,18660: assorted auto-removable suffix fixesm0viefreak2014-03-231-2/+2
| | | | | | | | Src/Zle/compresult.c, Src/Zle/zle_misc.c, Src/Zle/zle_refresh.c: fix auto-removable suffix highlighting Completion/Unix/Command/_git: fix compadd for auto-removable suffix in _git_commit_ranges and _git_stash
* 32365: another stab at the heuristic for initializing rprompt_indentBarton E. Schaefer2014-02-081-1/+1
|
* 32157: fix extra line feed after prompt, and erased character in completion ↵Barton E. Schaefer2013-12-181-23/+24
| | | | listing, when ZLE_RPROMPT_INDENT=0
* 32114: ZLE_PROMPT_INDENT allows you to move rprompt flush rightPatrick Oscity2013-12-161-6/+20
|
* 30084: `zle -T tc func' for zle testing of termcap outputPeter Stephenson2012-01-051-2/+79
|
* 29681: use [] to dereference region_highlightsMikael Magnusson2011-08-171-7/+7
|
* 29491: remove some variables set but not usedPeter Stephenson2011-06-191-2/+0
|
* 29165: use term.h globally if needed at all.Peter Stephenson2011-05-091-6/+6
|
* 28772: Update regions in region highlight dynamicallyPeter Stephenson2011-02-181-33/+4
|
* uncommitted: fix properlyPeter Stephenson2010-12-171-1/+1
|
* Mikael: users/15653: zle_highlight=(none) turns off suffix highlightingPeter Stephenson2010-12-171-1/+1
| | | | unposted: note suffix highlighting in NEWS
* 28363: fix insert bug refreshing zle with wide characteterPeter Stephenson2010-10-251-10/+32
|
* Mikael: 28356: don't increment old display line too far when refreshingPeter Stephenson2010-10-171-1/+3
|
* 28160, 28164: fix redisplay problem after display resetPeter Stephenson2010-08-131-1/+6
|
* Daiki Ueno: 28112: fix character width assignmentPeter Stephenson2010-08-021-1/+1
|
* 27812: display invalid bytes in multibyte characters speciallyPeter Stephenson2010-03-221-1/+11
|
* Mikael: 27453: highlighting for removable completion suffixesPeter Stephenson2009-12-051-1/+15
| | | | 27466: document it
* 26956: tidy up some zle variables for module unloadingPeter Stephenson2009-05-111-0/+4
| | | | note issue found on HP-UX
* 26984: ensure zle window sizes are reset with video dataPeter Stephenson2009-05-081-0/+2
|
* 26393: turn off text attributes in refresh when deleting textPeter Stephenson2009-01-131-9/+10
|
* François Revol: some BeOS fixesPeter Stephenson2008-11-181-1/+3
|
* users/13375: trivial rewrite to ternary expressionPeter Stephenson2008-10-231-1/+4
|
* 25236: don't recalculate prompt if not redisplayingPeter Stephenson2008-07-221-1/+1
|
* 25002: only ZLE should update attributes resulting from prompt expansionPeter Stephenson2008-05-121-1/+2
|
* 24986: prompt escapes for coloursPeter Stephenson2008-05-091-331/+10
|
* 24957: better sanity checking of colour rangesPeter Stephenson2008-05-061-4/+31
| | | | always use termcap for numeric ranges where available
* 24953: "default" zle_highlight; fix allocation bug in colour sequencesPeter Stephenson2008-05-061-91/+138
|