summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2015-11-0137038: add -l option to emulate to list options in emulationsPeter Stephenson1-0/+5
2015-10-3137029: update options and new tr completionOliver Kiddle1-0/+4
2015-10-3137028: new scl completionOliver Kiddle1-0/+2
2015-10-3136993: zed: fix argument parsingEric Cook1-0/+4
2015-10-31unposted (cf. 36998,36999): undo 36956 / restore 34451 with expanded comment ↵Barton E. Schaefer1-0/+5
about the flip-flopping
2015-10-3137032: Temporarily revert 36959.Daniel Shahaf1-0/+4
2015-10-3037027: allow subword context to discriminate between wordsPeter Stephenson1-0/+3
2015-10-30unposted: Typo in ChangeLogDaniel Shahaf1-1/+1
2015-10-30unposted (after 37018): Fix typo in error message.Daniel Shahaf1-0/+5
2015-10-3037022: add GLOB_STAR_SHORT option to abbreviate ** and ***Peter Stephenson1-0/+6
2015-10-2937018: Make WARNCREATEGLOBAL more consistent.Peter Stephenson1-0/+3
Wd don't need separate math handling any more, and can make it output the function name in all cases.
2015-10-29missed ChangeLog entryPeter Stephenson1-0/+2
2015-10-2937014: Improved internal parameter setting.Peter Stephenson1-0/+11
Enhance WARNCREATEGLOBAL to work in many more cases. Don't create REPLY as an integer if it didn't previously exist as one, even if the value to be set is integral, as this is likely to mess up later uses of REPLY.
2015-10-2936983 + 36990: new completions for head and tailJun-ichi Takimoto1-0/+5
2015-10-2736994: declare local REPLY for use with "zle .read-command"; use ↵Barton E. Schaefer1-0/+6
.self-insert instead of .self-insert-unmeta
2015-10-27unposted: fix typo quite -> queueBarton E. Schaefer1-1/+1
2015-10-2736982: Fix bug with (#cN) patterns and remove redundant description.Peter Stephenson1-0/+4
We need to restore the current count of matches when returning to match at the point where we previously matched.
2015-10-2736977: note about difficulties of pattern repetitionsPeter Stephenson1-0/+3
2015-10-2736974: fix some functions with empty argument listsPeter Stephenson1-0/+6
2015-10-2636906: quite_signals() in ZSH_MEM realloc()Kamil Dudka1-0/+3
2015-10-2636968: use addmodulefd() to tell the shell about the descriptor of the dbm fileBarton E. Schaefer1-0/+3
2015-10-2636956: revert 34451, mmap() is too slow on MacOSBarton E. Schaefer1-0/+4
2015-10-26users/20825: fix crash when complex completion hooks.Peter Stephenson1-0/+6
get_undo_current_change() needs protecting against execution in completion environment.
2015-10-2536962: _git: Fix completion of RHS of refspecs.Daniel Shahaf1-0/+3
Before this patch, 'git push $remote :<TAB>' completed branch names (as though by `git branch -a`), instead of completing remote branch names sans the ${remote}/ prefix.
2015-10-2536964: _git: Complete remotes branch names with slashes correctly.Daniel Shahaf1-0/+3
For example, 'git push remote HEAD:foo/bar' creates such branches.
2015-10-2536960: _git: Enable slash matcher for more branch and tag completions, ↵Daniel Shahaf1-0/+4
include 'git branch <TAB>' and 'git tag <TAB>'.
2015-10-2536959: _git: Offer @~$n as completion of recent commits.Daniel Shahaf1-0/+3
Suggested-by: Oliver Kiddle (users/20705)
2015-10-2536958: _git: Fix recent commit completion descriptions.Daniel Shahaf1-0/+3
The uniquifiers 'HEAD~$n' were incorrect when a recent commit was the second parent of a merge commit. Detect that case and print something correct instead.
2015-10-25unposted: _git: Fix 'commit object name' completion messages.Daniel Shahaf1-0/+5
Offer the "this alternative is still valid, but I don't know to offer completions for it" for hash completion but not for recent object completion; the former is protected by a _guard and the latter incorrectly appeared also in cases such as 'git log a/b<TAB>' which were not the start of a gitrevisions(7) expression.
2015-10-2536911: '-optarg' should not match optspec '-opt='Jun-ichi Takimoto1-0/+5
Remove the requirement that -xy= should come before -x= in the list of optspecs passed to _arguments.
2015-10-24Merge branch 'master' of git://git.code.sf.net/p/zsh/codeBarton E. Schaefer1-0/+11
Conflicts: ChangeLog Conflicts: ChangeLog
2015-10-2436943: restore scan for reclaimable blocks in freeheap()Barton E. Schaefer1-0/+5
That scan had been removed by 36834, but testing showed memory usage climbing too high in cases where a new arena was always added at the end of the heap list.
2015-10-24unposted: _beep completion: Actually hook it for the 'beep' command.Daniel Shahaf1-0/+3
2015-10-2436913 + 36945: vcs_info quilt: Pass patch subject lines to gen-applied-stringDaniel Shahaf1-0/+3
The format used is '${patchname} ${subject}', which is analogous to the git backend.
2015-10-2436912: vcs_info quilt: Tolerate being in child of .pc's parentDaniel Shahaf1-0/+5
Without this, gen-applied-string would only be set when .pc is a child of cwd, not when it is a child of an ancestor of cwd.
2015-10-24unposted: small typoPeter Stephenson1-0/+2
2015-10-2436944: extend fd management to zsocketPeter Stephenson1-0/+4
2015-10-2436941: Mark file descripors in ztcp as used.Peter Stephenson1-0/+6
Allow such file descriptors to be either internal and closed on exec or external and so managed explicitly by module.
2015-10-22unposted: vcs_info docs: Typo fix.Daniel Shahaf1-0/+4
2015-10-21unposted: strdup should be ztrdupBarton E. Schaefer1-0/+2
2015-10-2136909: in getargs(), sanity-check the offsets for start and end of the ↵Barton E. Schaefer1-0/+3
requested words, in case of overflow
2015-10-2136871: move initial call to "zle .bracketed-paste-magic" to occur earlier in ↵Barton E. Schaefer1-0/+5
the function Just in case any later initialization might have side-effects.
2015-10-2036900: _git: stash names completion: Display log messagesDaniel Shahaf1-0/+5
The "$@" argument to compadd is removed because (I think) it contains a -J, which conflicts with the -V. Joint with Daniel Hahler.
2015-10-1936642: complete jail/unjail zfs subcommands on freebsdEric Cook1-0/+3
2015-10-1936646: handle solaris/openzfs differences; only use -t share on solarisEric Cook1-0/+4
2015-10-1936889: completion of system specific sockstat optionsEric Cook1-0/+3
2015-10-1936869: use permissions to limit files completed for ssh identity filesMatthew Martin1-0/+5
2015-10-1836888: vcs_info: Prevent warn_create_global warning with '-preinit-' stateFrank Terbeck1-0/+5
This is related to 33405. Turns out that not all other calls to VCS_INFO_set are okay: With recent zsh versions the early call to that function with the '-preinit-' argument causes a warning like this: VCS_INFO_set:9: math parameter maxexports created globally in function VCS_INFO_set This fixes it.
2015-10-1536864: new objdump completion and tweak to nm completionPeter Stephenson1-0/+6
2015-10-1436853: replace pushheap/popheap by NEWHEAPS/OLDHEAPS in doshfunc() to ↵Barton E. Schaefer1-0/+5
optimize memory management Includes re-indentation that was not done in the posted patch.