summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-05-2845923 (with memory leak fixed, cf. 45924): zprof: Don't tally all anonymous ↵Daniel Shahaf3-5/+52
functions as though they were a single function named "(anon)". Before: % zmodload zsh/zprof % () : % () : % zprof num calls time self name ----------------------------------------------------------------------------------- 1) 2 0.08 0.04 100.00% 0.08 0.04 100.00% (anon) After: % zmodload zsh/zprof % () : % () : % zprof num calls time self name ----------------------------------------------------------------------------------- 1) 1 0.04 0.04 50.45% 0.04 0.04 50.45% (anon) [:3] 2) 1 0.04 0.04 49.55% 0.04 0.04 49.55% (anon) [:2]
2020-05-2345900: Fix issues with escaped newline in $-substitution.Peter Stephenson3-3/+47
2020-05-2145884 (Oliver's, edited by me): Add a few entries.Daniel Shahaf2-0/+29
2020-05-2045862: Add test cases for 45843#1 and 45843#2, adapted from Aaron Esau and pws.Daniel Shahaf2-0/+15
2020-05-17unposted: fix date of previous commitEitan Adler1-1/+1
2020-05-17unposted: bump config.guess and config.subEitan Adler3-24/+39
Problem config.guess and config.sub are out of dated reducing cross-platform compatibly. Solution Update them.
2020-05-17unposted: remove blank line that messed up "man" formattingBart Schaefer1-1/+0
2020-05-1745831: Add _vi completerMatthew Martin2-0/+51
2020-05-16users/24843: zshcompsys(1): Point to the 'format' style from the 'tag-order' ↵Daniel Shahaf2-0/+8
style.
2020-05-12unposted: Add tests for previous commitMikael Magnusson2-3/+9
2020-05-12Support ${name:offset:length} with an empty offsetMikael Magnusson2-5/+20
2020-05-09gitlab !13: tar supports zstandard (zstd)noraj2-2/+8
Problem Variants of tar based on libarchive or GNU tar can support extracting zstd based files. Solution Add this type of to _tar_archive. From noraj <gitlab@mg.gitlab.com>
2020-05-07unposted: libarchive tar can extract zip filesEitan Adler2-1/+7
Problem Variants of tar based on libarchive can extract zip files but `tar xf <tab>` does not complete this type of file. Solution Add this type of to _tar_archive.
2020-05-07unposted: Use alternation patterns rather than brace expansionDaniel Shahaf3-3/+9
(Cf. discussion on GitLab !12.)
2020-05-0545764: Add a regression test for 45772. Test by RomanDaniel Shahaf2-0/+19
2020-05-0545772: Restore locale on parameter scope end.Peter Stephenson2-0/+39
Check if relevant parameters changes and if so restore system settings.
2020-05-04unposted: Fix typo in ChangeLogDaniel Shahaf1-1/+1
2020-05-03unposted: add a comment about how to add a new resourceJun-ichi Takimoto2-0/+10
2020-05-0345614: update _dnfJun-ichi Takimoto2-101/+459
2020-05-0345731: _debsnap: New completion function.Daniel Shahaf2-0/+80
2020-05-0345730: _arguments: Add the -0 flag, which makes $opt_args be populated sanely.Daniel Shahaf6-13/+88
Also, write/extend docstrings for sepjoin() and zjoin().
2020-05-0345729: internal: Add a second parameter to zlinklist2array(), analogously to ↵Daniel Shahaf6-15/+27
hlinklist2array(). Will be used in the next commit.
2020-05-02unposted: zyodl.vim: Use 'conceal' for some macros that expand to a single ↵Daniel Shahaf2-1/+14
character.
2020-05-0245737 (+ docs, and update the test from 45722): zstyle: When determining the ↵Daniel Shahaf5-6/+40
weight (specificity) of a pattern, consider the number of components before anything else, as documented.
2020-05-02unposted: Revert unintentional move from 45722.Daniel Shahaf2-0/+3
2020-05-0245739: docs: Clarifications about zstyle patterns.Daniel Shahaf3-16/+23
- Consistently use the term "pattern" rather than "context" or "style pattern" - Correct statements about order of precedence of patterns - Give the rationale for the "rule of thumb"
2020-05-0245722: docs: Change zstyle example to a non-hierarchical oneDaniel Shahaf3-8/+31
2020-05-0245752/0002: _gcc: Complete --output like -o.Daniel Shahaf2-1/+4
2020-05-0245752/0001: _gcc: Add .cpp and .hpp to the ignored extensions list.Daniel Shahaf2-1/+6
2020-04-27github #56: typo: Add a single quote that had been missingBenjamin Esham2-1/+6
2020-04-21unposted: README: Give the 'zsystem flock' limit in pretty-printed form as well.Daniel Shahaf2-1/+6
2020-04-21github #54: Fix dig completion errordavey hathorn2-1/+6
2020-04-20unposted: NEWS, README: Document zsh/system changes from workers/45708dana3-4/+17
2020-04-20unposted: zsh/system: Adjust documentation from workers/45708dana2-4/+6
2020-04-2045708: zsh/system: Enable sub-second timeout in zsystem flockCedric Ware6-9/+302
2020-04-2045702: compsys: Improve documentation of {insert,separate}-sectionsdana2-3/+27
2020-04-1545684: Document - glob qualifier in error casesPeter Stephenson2-1/+8
2020-04-1245661: docs: Clarify the effect of KSH_ARRAYS on the (I) subscript.dg17272-0/+9
2020-04-0945660: Fix crash setting vi or emacs mode on command line.Peter Stephenson3-8/+29
Delay setting the option until the module system is set up.
2020-04-0545655: _retrieve_mac_apps: Update for recent macOSdana2-2/+10
2020-04-0545656: Document the -o emacs segfault bug.Daniel Shahaf2-0/+7
2020-04-02Add SHORT_REPEAT optionMikael Magnusson8-7/+34
2020-04-02unposted: Make test platform-independent.Daniel Shahaf2-2/+6
Follow-up to the grandparent commit.
2020-04-0145542: P01privileged: Use test-directory owner for auto-determined EUID/EGIDdana2-8/+18
Prevents failure when the repo (or its parent) has mode 0700
2020-04-01unposted: D02glob: Fix platform-dependent test failuredana2-1/+6
workers/45583 introduced a test failure on macOS, *BSD, and Solaris, where wc always outputs leading white space
2020-03-2945649: completion: Simplify Unison completion. No functional change.Daniel Shahaf2-5/+7
2020-03-2945646: completion: Unison: Honour the $UNISON variableHenri Menke2-2/+7
By default Unison uses the ~/.unison directory to store its cache and profiles. However, this location is configurable through the $UNISON environment variable. Quoting from the manual [1]: > If the environment variable UNISON is defined, then its value will be > used as the name of this directory. This patch enables users to move the .unison directory and still enjoy zsh completion for profiles. [1] https://www.cis.upenn.edu/~bcpierce/unison/download/releases/stable/unison-manual.html#unisondir
2020-03-28github #46: _git-restore: Complete arguments to the --source option after a ↵Gastón Haro2-1/+6
'=' sign
2020-03-28github #46: Better restrict git-restore(1) file completionsGastón Haro2-5/+14
Add support to the -S and -W options. Remove the facility for completing files from the tree specified by the --source argument since, upon testing in git 2.26.0, that doesn't seem to be correct behaviour. (Note git-restore(1) says the command is experimental and its semantics may change.) See discussion on the PR for details.
2020-03-2845644: vcs_info git: Fix current patch's name in several cases.Daniel Shahaf2-0/+18