summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* 36959: _git: Offer @~$n as completion of recent commits.Daniel Shahaf2015-10-252-1/+5
| | | | Suggested-by: Oliver Kiddle (users/20705)
* 36958: _git: Fix recent commit completion descriptions.Daniel Shahaf2015-10-252-12/+32
| | | | | | 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.
* unposted: _git: Fix 'commit object name' completion messages.Daniel Shahaf2015-10-252-2/+7
| | | | | | | | 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.
* 36911: '-optarg' should not match optspec '-opt='Jun-ichi Takimoto2015-10-252-2/+10
| | | | | Remove the requirement that -xy= should come before -x= in the list of optspecs passed to _arguments.
* Merge branch 'master' of git://git.code.sf.net/p/zsh/codeBarton E. Schaefer2015-10-243-1/+43
|\ | | | | | | | | | | | | | | Conflicts: ChangeLog Conflicts: ChangeLog
| * unposted: _beep completion: Actually hook it for the 'beep' command.Daniel Shahaf2015-10-242-1/+4
| |
| * 36913 + 36945: vcs_info quilt: Pass patch subject lines to gen-applied-stringDaniel Shahaf2015-10-242-0/+33
| | | | | | | | The format used is '${patchname} ${subject}', which is analogous to the git backend.
| * 36912: vcs_info quilt: Tolerate being in child of .pc's parentDaniel Shahaf2015-10-242-0/+6
| | | | | | | | | | 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.
* | 36943: restore scan for reclaimable blocks in freeheap()Barton E. Schaefer2015-10-242-2/+13
|/ | | | | | 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.
* unposted: small typo againPeter Stephenson2015-10-241-1/+1
|
* unposted: small typoPeter Stephenson2015-10-242-1/+3
|
* 36944: extend fd management to zsocketPeter Stephenson2015-10-245-14/+41
|
* 36941: Mark file descripors in ztcp as used.Peter Stephenson2015-10-244-5/+49
| | | | | Allow such file descriptors to be either internal and closed on exec or external and so managed explicitly by module.
* unposted: vcs_info docs: Typo fix.Daniel Shahaf2015-10-222-1/+5
|
* unposted: strdup should be ztrdupBarton E. Schaefer2015-10-212-1/+3
|
* 36909: in getargs(), sanity-check the offsets for start and end of the ↵Barton E. Schaefer2015-10-212-2/+19
| | | | requested words, in case of overflow
* 36871: move initial call to "zle .bracketed-paste-magic" to occur earlier in ↵Barton E. Schaefer2015-10-212-4/+12
| | | | | | the function Just in case any later initialization might have side-effects.
* 36900: _git: stash names completion: Display log messagesDaniel Shahaf2015-10-202-2/+16
| | | | | | | The "$@" argument to compadd is removed because (I think) it contains a -J, which conflicts with the -V. Joint with Daniel Hahler.
* 36642: complete jail/unjail zfs subcommands on freebsdEric Cook2015-10-192-0/+11
|
* 36646: handle solaris/openzfs differences; only use -t share on solarisEric Cook2015-10-194-4/+14
|
* 36889: completion of system specific sockstat optionsEric Cook2015-10-192-19/+34
|
* 36869: use permissions to limit files completed for ssh identity filesMatthew Martin2015-10-192-1/+6
|
* 36888: vcs_info: Prevent warn_create_global warning with '-preinit-' stateFrank Terbeck2015-10-182-0/+7
| | | | | | | | | | | 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.
* 36864: new objdump completion and tweak to nm completionPeter Stephenson2015-10-153-1/+15
|
* 36853: replace pushheap/popheap by NEWHEAPS/OLDHEAPS in doshfunc() to ↵Barton E. Schaefer2015-10-142-201/+206
| | | | | | optimize memory management Includes re-indentation that was not done in the posted patch.
* 36856: cdr -p/-P to prune directory listPeter Stephenson2015-10-143-6/+48
|
* One crucial assignment accidentally lost from 36834 when merging 36836.Barton E. Schaefer2015-10-111-2/+3
|
* 36841: factor out and update the patterns that filter "uninteresting" ↵Barton E. Schaefer2015-10-112-3/+11
| | | | functions out of the $funcstack display
* 36836: zhalloc() avoids re-scanning all heaps when the last known heap with ↵Barton E. Schaefer2015-10-112-5/+12
| | | | | | | free space does not have enough space This is the second of two performance optimizations for situations where all heap arenas in the list are mostly full.
* 36834: freeheap preserves last allocated heapBarton E. Schaefer2015-10-112-13/+56
| | | | | This is the first of two optimizations to improve heap performance when there are a large number of mostly-filled heap arenas.
* 36832: vcs_info: Remove dependency on "seq"Frank Terbeck2015-10-112-2/+6
| | | | | | The "seq" utility is usually available on GNU systems only. This exchanges calls to seq with pure zsh features. Also: Less forks are good.
* 36830: vcs_info: Silence an error message with new git versionsFrank Terbeck2015-10-112-12/+27
| | | | | | | | | | | | Mikael informs me on IRC, that in new versions of git (he used 2.6.1) where the "am" subcommand is now a builtin, a file that is used by the git backend of vcs_info (namely .git/rebase-apply/msg-clean) is not available anymore, leading to an annoying error message: VCS_INFO_get_data_git:232: no such file or directory: .git/rebase-apply/msg-clean This patch checks for the availabiliy of the file before using it, and adjusts the value of the dependant values accordingly.
* 36780: Fix crash in ksh mode with -n and $HOME.Peter Stephenson2015-10-062-6/+12
| | | | If home variable is NULL ensure HOME is unset.
* 36773: limit CORRECT / CORRECT_ALL to directory names in cases where it is ↵Barton E. Schaefer2015-10-042-19/+35
| | | | obvious that a directory is expected
* unposted: back out 36707, add test case for 36766Barton E. Schaefer2015-10-034-7/+21
|
* 36766: fix incorrect reset of noerrexit during "if" conditionsBarton E. Schaefer2015-10-032-1/+7
|
* 36760: more care with already unmetafied pattern trial stringsPeter Stephenson2015-10-032-15/+45
|
* 36754: Functions/TCP: Tweak some usage output in the tcp_* functionsMikael Magnusson2015-10-035-5/+11
|
* unposted: define zle_usable before using it (reported in 36741)Mikael Magnusson2015-10-021-17/+17
|
* 36732: _zsh now complets script args; also support -s, -bJun-ichi Takimoto2015-10-022-1/+21
|
* unposted: zle_thingy: return a value in bin_zle_flagsMikael Magnusson2015-10-011-1/+5
|
* unposted: bracketed-paste-url-magic: actually do what the comment saysMikael Magnusson2015-10-011-4/+6
|
* 36737: Ensure we don't dreference unterminated zero-length stringPeter Stephenson2015-10-012-3/+10
|
* 36735: add ~/.zcalcrc handling to zcalcPeter Stephenson2015-10-013-0/+14
|
* 36729: fix some typos in distro docsAndrew Janke2015-10-014-7/+9
|
* 36722: allow git range to complete after ^.Peter Stephenson2015-10-012-1/+13
| | | | Take account of backslash quoting.
* Merge branch 'master' of https://git.code.sf.net/p/zsh/codePeter Stephenson2015-10-0112-41/+204
|\
| * users/20672: missing "do" in gettext2() for "select"Barton E. Schaefer2015-09-302-1/+5
| |
| * 36707: distinguish ERR_RETURN value of retflag so that execif() can ignore ↵Barton E. Schaefer2015-09-303-3/+10
| | | | | | | | it in the test sublist
| * remove sentence fragmentBarton E. Schaefer2015-09-302-2/+5
| |