about summary refs log tree commit diff
path: root/Src/hist.c
Commit message (Collapse)AuthorAgeFilesLines
* 32882 (cf. Augie Fackler 32879): correct reload of backslash-continuation ↵Barton E. Schaefer2014-07-171-2/+12
| | | | lines from history, fix bad history write of events ending with backslashes
* 32682 with tweaks: Add INC_APPEND_HISTORY_TIME.Peter Stephenson2014-06-061-5/+9
| | | | Revert INC_APPEND_HISTORY behaviour.
* 32580: avoid indefinite wait in lockhistfile() by checking for lock file ↵Barton E. Schaefer2014-04-251-15/+32
| | | | | | | time stamp in the future Also change behavior of HIST_FCNTL_LOCK to use only fcntl() locking, rather than applying both kinds of lock.
* 32531: fix memory leaks detected by valgrindBarton E. Schaefer2014-04-061-1/+2
|
* 31823: add HISTORY_IGNORE parameterBarton E. Schaefer2013-10-171-0/+17
| | | | | HISTORY_IGNORE defines a pattern to exclude matching lines in the internal history from the HISTFILE at write time.
* 31830: New feature for zshaddhistory hooks.Peter Stephenson2013-10-171-4/+21
| | | | | If the first non-zero return status is 2, save the line on the internal history list, but don't write it out.
* 31815: another fix for INCAPPENDHISTORY change.Peter Stephenson2013-10-111-2/+15
| | | | | We need to save immediately if something is pushed on the history stack to ensure we use the right file before popping.
* 31797: to match documentation, avoid expanding history when there is neither aBarton E. Schaefer2013-10-081-0/+6
| | | | | | | | | word nor an event designator There are still a few cases where expansion is attempted even though the documentation indicates it will not be, but in most of those cases the expansion will fail. The now-fixed case would fall back to default expansion of the previous command.
* 31794: further refinement to INCAPPENDHISTORY change.Peter Stephenson2013-10-071-1/+9
| | | | | | With SHAREHISTORY we should make sure the code behaves as it always did, because it takes care about locking a file once for reading and writing.
* 31793: Fix problem with non-interactive history.Peter Stephenson2013-10-071-1/+1
| | | | | Modify 31789 so it doesn't try to save history from hbegin() in that case.
* 31789: Save history for INCAPPENDHISTORY later.Han Pingtian2013-10-051-1/+7
| | | | This improves the timing recorded in the history.
* 31770: memmove() instead of memcpy() for overlapping regions.Barton E. Schaefer2013-09-261-1/+1
|
* users/17908: Keep history line in sync between ZLE and shell.Peter Stephenson2013-08-081-0/+10
| | | | Update ZLE version if history is read, pushed or popped with ZLE active
* 31750: fix for HISTREDUCEBLANKS option.Peter Stephenson2013-07-241-2/+27
| | | | | Don't truncate line after marked words if there's more non-white-space text, which is probably comments.
* 30789: Add CONTINUE_ON_ERROR for old behaviour.Peter Stephenson2012-11-151-1/+1
| | | | | New behaviour is for scripts to exit on error instead of returning to top level and executing the next command.
* 30433: double backslash is not line continuation.Bart Schaefer2012-04-211-1/+2
|
* Timothy Redaelli: file name manipulationsPeter Stephenson2012-02-081-0/+5
| | | | in history can return NULL if HAVE_CANONICALIZE_FILE_NAME
* 29694: avoid overwriting current history word when not expanding an aliasBart Schaefer2011-08-181-1/+2
| | | | or history event in-place.
* unposted: fix a typo in a comment.Mikael Magnusson2011-08-141-1/+1
|
* users/16131: skip reading empty history filePeter Stephenson2011-07-181-3/+5
|
* 29542: fix crash in hbegin(), remove bad testPeter Stephenson2011-07-121-37/+113
| | | | 29543: fix backslash-newline within words with histlexwords
* 29413: "print -S" for saving to history with lexical word splitPeter Stephenson2011-06-031-101/+138
|
* histlexwords splitting of ";;" in casePeter Stephenson2011-05-271-0/+7
|
* 29307, 29308 + replies: Fix some doubled words in docs and comments.Mikael Magnusson2011-05-191-1/+1
|
* lexsave/lexrestore lexflagsPeter Stephenson2010-12-141-7/+4
| | | | add new LEXFLAGS_ZLE
* 28528: Rearrange zleparse to lexflagsPeter Stephenson2010-12-141-13/+12
| | | | Add (z+n+)
* 28510: add (z+c+) and (z+C+) parameter flagsPeter Stephenson2010-12-121-4/+26
|
* 28339: backslash-newline history without HIST_LEX_WORDSPeter Stephenson2010-10-101-3/+9
| | | | 28340: assignment to range of scalar variable with multibyte characters
* 28332: backslash-newline with HIST_LEX_WORDSPeter Stephenson2010-10-101-2/+12
|
* 28327: fix pseudolexical word splitting with RC_QUOTESPeter Stephenson2010-10-071-10/+8
|
* not yet posted: fix some more HIST_LEX_WORDS anomaliesPeter Stephenson2010-10-061-17/+35
|
* 28319: (z) splitting odditiesPeter Stephenson2010-10-061-18/+88
|
* 28308/28310: HIST_LEX_WORDS, check for quick history readPeter Stephenson2010-10-021-44/+64
|
* 28295 plus tweak: use lexer to split words from history filePeter Stephenson2010-09-251-21/+59
|
* 28047: attempt to make locking with fc command more usefulPeter Stephenson2010-06-221-24/+58
|
* 27823: fix memory access in 27822Peter Stephenson2010-03-221-2/+2
|
* Fix ZLE access to pushed history linePeter Stephenson2010-03-221-0/+16
|
* Add symlink-based hist-file locking.Wayne Davison2009-12-181-2/+30
|
* 27216: set chwords to NULL when freedPeter Stephenson2009-08-161-0/+2
|
* 26748: c modifier to add command pathPeter Stephenson2009-03-231-0/+7
|
* Bart: 26761: typo in realpath() checkPeter Stephenson2009-03-201-1/+1
|
* 26754: tweak zgetdir() and test for realpath()Peter Stephenson2009-03-191-3/+29
|
* 26752: fix ../ removal and metafication in :a and :A modifersPeter Stephenson2009-03-181-3/+7
|
* Michael Hwang: 26731 with cosmetic changes: add "a" and "A" modifiersPeter Stephenson2009-03-151-0/+141
| | | | 26736: document the above
* 26735: Check some function return values for failures. Gets rid ofWayne Davison2009-03-151-2/+2
| | | | some compiler warnings, and improves error handling/notification.
* print message if we give up trying to crate a lock file with hard linksPeter Stephenson2009-03-101-3/+6
|
* 26602: history substitution buffer could overflow with no testPeter Stephenson2009-02-251-3/+15
|
* 26091: crash at end of history line if history not in usePeter Stephenson2008-11-251-6/+8
|
* Rocky Bernstein: 25696: fix crash on empty history.Peter Stephenson2008-09-221-1/+1
|
* 25682: terminate history line before passing to zshaddhistory hookPeter Stephenson2008-09-181-2/+7
|