summaryrefslogtreecommitdiff
path: root/Functions/Zle
AgeCommit message (Collapse)AuthorFilesLines
2016-12-24Oliver: 40118: alternate fix replacing 40115Barton E. Schaefer1-25/+19
This commit reverts 40115 (commit 3594f55f) thus restoring 38579, then applies 40118: Relocate BUFFER/CURSOR reset to work around "fc -p" issue
2016-12-0640115: revert 38579 due to bug restoring BUFFER after history searchZhiming Wang1-19/+25
This reverts commit 20948d088994dc7b26a26b94926432985fa6863e.
2016-11-25unposted: set new vichange flag for surround widgetOliver Kiddle1-0/+1
2016-11-2039986, 39989: improve handling of vi-repeat-changeOliver Kiddle1-0/+3
Save previous vi change and throw away a new change that fails. Add zle -f vichange to allow shell widget to be a single change. Fix repeat of command where numeric arguments were multiplied.
2016-11-0939884: fix history-beginning-search-menu for history lines containing a pipe ↵Oliver Kiddle1-1/+1
character
2016-10-29unposted: add "--" to zle widget call for conventional sanityBarton E. Schaefer1-1/+1
2016-10-28unposted: handle empty pastes and "zle bracketed-paste variablename" form.Barton E. Schaefer1-2/+2
2016-09-19bracketed-paste-url-magic: Handle magnet links too, and allow for schemes ↵Mikael Magnusson1-2/+2
without //
2016-08-2239046 + 39061: New :P history modifier.Daniel Shahaf1-1/+1
2016-07-2838957: make use of updates to match-words-by-style and better support ↵Oliver Kiddle1-28/+27
completion of word-style styles for zstyle
2016-07-28unposted: fix vi-pipe for visual mode: don't need to force line modeOliver Kiddle1-1/+1
2016-07-2838953: Fix some issues with match-words-by-style.Peter Stephenson2-15/+45
Add keyword retrieval of words. Improve test for start of word in subwords for use in delete-whole-word. If line after cursor is empty, white space is treated as ws-after-cursor.
2016-07-2438936: fix vi-pipe function for option compatibilityOliver Kiddle1-3/+8
2016-07-2438929: new vim style text object using match-words-by-style mechanismOliver Kiddle1-0/+121
2016-07-17Relocate add-zle-hook-widget, everything else in Functions/Zle is a widget.Barton E. Schaefer1-186/+0
2016-07-1738866: update add-zle-hook-widget doc for 38850, bug fixesBarton E. Schaefer1-21/+36
Edge case handling, wrap in anonymous function for kshautoload management.
2016-07-1338850: Simplify indexing scheme to store hooks in the order they are addedBarton E. Schaefer1-31/+39
Also, better handling of edge cases and of autoloading/sourcing file
2016-07-0838796: Fix subword matching on last character of subword.Peter Stephenson1-1/+7
2016-06-2938770: vi upper/lowercase widgets and shell widget example that reads a vi ↵Oliver Kiddle1-0/+31
movement
2016-06-2238749: fixes for case at start of a line and for ksharraysOliver Kiddle2-1/+7
2016-06-1938715: add-zle-hook-widget: assorted ksharrays fixes; assign an index to any ↵Barton E. Schaefer1-23/+46
hook that is added without one, to preserve append ordering
2016-06-1638693: Add RPN mode to zcalcPeter Stephenson1-1/+2
2016-06-1238670: New function for managing ZLE special widgets, modeled after ↵Barton E. Schaefer1-0/+140
Functions/Misc/add-zsh-hook.
2016-06-0938579: simplify saving and restoring of stateOliver Kiddle1-25/+19
2016-05-09unposted: update documentary comments to remove references to ↵Barton E. Schaefer1-2/+2
self-insert-unmeta.
2016-02-1437971: fix potential issues when interacting with user-defined widgetsBarton E. Schaefer1-2/+2
Cf. users/21284: Eric Freese
2016-01-1337570: give truth to the doc assertion transpose-words-match is a drop-in ↵Barton E. Schaefer1-1/+10
replacement for transpose-words
2016-01-1337567: use (Z:n:) to split the buffer into words so line breaks are treated ↵Barton E. Schaefer1-3/+3
as whitespace
2015-12-19unposted (after users/20873): Theoretical fix: don't parse print/echo escape ↵Daniel Shahaf1-2/+2
sequences in $zle_bracketed_paste.
2015-12-1137386: localise mbegin, mend, match in URL magicPeter Stephenson1-1/+1
2015-12-11users/20873: disable bracketed paste while running external editor from zleOliver Kiddle1-3/+7
2015-12-0337295: kill-word-match: Join killsDaniel Shahaf2-0/+4
2015-11-2037170: suppress global create warning in functionPeter Stephenson1-5/+5
2015-10-3037027: allow subword context to discriminate between wordsPeter Stephenson1-2/+7
2015-10-2736994: declare local REPLY for use with "zle .read-command"; use ↵Barton E. Schaefer1-3/+3
.self-insert instead of .self-insert-unmeta
2015-10-2136871: move initial call to "zle .bracketed-paste-magic" to occur earlier in ↵Barton E. Schaefer1-4/+7
the function Just in case any later initialization might have side-effects.
2015-10-01unposted: bracketed-paste-url-magic: actually do what the comment saysMikael Magnusson1-4/+6
2015-10-0136692: bracketed-paste-url-magic: simpler alternative for handling pasted urlsMikael Magnusson1-0/+42
2015-09-2236587: use +LINE:COLUMN to place the cursor when invoking emacs variants, ↵Barton E. Schaefer1-3/+6
for emacsclient
2015-09-12unposted: revert 36483 as multibyte is now handled by "zle .read-command"; ↵Barton E. Schaefer1-13/+5
adapt to new default behavior of zle_highlight for paste
2015-09-1136483: handle incomplete multibyte characters in bracketed-paste-magiPeter Stephenson1-4/+12
2015-08-3036338: Replace "5.0.9" with "5.1" in source commentsAxel Beckert2-2/+2
2015-08-2136266: preserve emulation and setopt context for init and finish functions, ↵Barton E. Schaefer1-9/+42
handle vi modes
2015-08-1736212: save and restore HISTNO along with other editor state, for sanity of ↵Barton E. Schaefer1-3/+5
"zle undo"
2015-08-16unposted: mention bracketed-paste-magic in url-quote-magic commentsBarton E. Schaefer1-0/+6
2015-08-1636195, 36196: wrapper of bracketed-paste for compatibilty with ↵Barton E. Schaefer1-0/+192
url-quote-magic and other self-insert wrapper widgets
2015-08-1336131: make use of undo limits; call mkundoent() when $UNDO_CHANGE_NO is ↵Oliver Kiddle1-13/+23
referenced for a clear change number marking the current state
2015-08-05unposted (c.f. Bart: 35902): use - after zle -U in case $key is -Oliver Kiddle1-1/+1
2015-07-2435807: edit-command-line: Fix for non-7bit-data (after 35769)Daniel Shahaf1-1/+4
Bug reported and fix suggested by Mikael.
2015-07-2235823: fix handling of MARK and CURSOR, clean up documentary commentBarton E. Schaefer1-26/+37