summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2022-01-2949723: vcs_info quilt: Use quilt-patch-dir and ${QUILT_PATCHES} even when ↵Daniel Shahaf1-0/+4
get-unapplied hasn't been set This affects the post-quilt hook. Before this patch, if no patches have been applied and get-unapplied hasn't been set, the second argument to that hook would undergo null elision. The generation of patch subjects for the gen-applied-string, gen-unapplied-string, and set-patch-format hooks was unaffected since it was guarded by [[ -n $patches ]].
2022-01-2949722: vcs_info quilt: Refactor for readability. No functional change.Daniel Shahaf1-0/+3
2022-01-2949715: _subversion: add: Complete target arguments to this subcommandDaniel Shahaf1-0/+3
2022-01-2949714: _subversion: resolve: Complete conflicted files created by merges, tooDaniel Shahaf1-0/+3
2022-01-2949713: _subversion: commit, diff, revert: Update completions for svn 1.7 and ↵Daniel Shahaf1-0/+3
newer * _svn_deletedfiles: Remove. The last version of svn(1) under which that function could possibly complete anything, svn 1.6.x, was EOLed in 2013. Newer versions don't have a "text-base" directory, so $controlled is set to an empty array, so this function returned false for all files, so in 'svn rm' (up to the previous commit) all files were completed (because that's what '_files -g "*(e:false:)"' does). * _svn_status: Remove. Versions of svn newer than the aforementioned 1.6.x have an entries file but never modify it, so the "mtime has changed" check would false negative. Therefore, sequences such as: . svn <TAB> echo >> some/versioned/file svn ci <TAB> . wouldn't offer some/versioned/file. . Furthermore, completion would offer directories with no changed files in them, and even unversioned directories. Now only changed files/directories are offered. * _cache_svn_status, _cache_svn_mtime: Remove. If these hadn't been removed, I would have moved their declarations to file scope so _svn_status could be used from outside this file, too. The replacement function, _svn_modified, doesn't have cache support, but does honour the 'verbose' style to inhibit recursion to subdirectories.
2022-01-2949712: _subversion: svn rm: Complete all svn-controlled files, not only ↵Daniel Shahaf1-0/+3
missing/deleted files Note that currently, _svn_controlled matches all files.
2022-01-2949711: _subversion: _svn_status: Don't offer unversioned filesDaniel Shahaf1-0/+5
This function is used only by revert, diff, and commit, none of which can run on unversioned files (those with status '?').
2022-01-27unposted: vcs_info quilt docs: Fix misspelled style nameDaniel Shahaf1-0/+3
2022-01-27unposted: vcs_info quilt: Remove a no-op variable assignmentDaniel Shahaf1-0/+5
2022-01-2549709: vcs_info hg: Keep $HGPLAIN set for hooks if it had been set outside ↵Daniel Shahaf1-0/+6
vcs_info If someone does 'HGPLAIN=1 vcs_info', any vcs_info hooks should be called with HGPLAIN set. Declaring it 'local' broke that.
2022-01-23gitlab !17: Add missing options for quilt setup commandAndreas Schneider1-0/+5
2022-01-0149667: Include US spelling of "grey" ("gray")Matt Alexander1-0/+4
Co-authored-by: Daniel Shahaf <d.s@daniel.shahaf.name>
2021-12-2949664: Use associative array for third-party completionAaron Schrab1-0/+3
2021-12-2949668: update zfs completionOliver Kiddle1-1/+6
2021-12-2438150: fix off-by-one error in matcher spec parsingm0viefreak1-0/+5
2021-12-2149658: Fix NULL reference in match code.Peter Stephenson1-0/+5
A test when acquiring the replacement pattern match in the globbing code erroneously allowed the use of a NULL pointer. This appears to be an unnecessary test case added alongside other surgery back in 2008.
2021-12-2149655 based on 34928 (Daniel Hahler): new pip completionOliver Kiddle1-0/+5
2021-12-1649653: fix array indexing issue introduced with 49518 due to using decimal ↵Oliver Kiddle1-0/+3
rather than hex 20 Also avoid comparing the current word against all options when the word doesn't start with - or +.
2021-12-1649648 based on github #80 (Vincent Bernat): invert before/since for date ↵Oliver Kiddle1-0/+6
glob qualifiers completion
2021-12-1449518: fix exclusions for mixed - and + stacked optionsOliver Kiddle1-0/+5
2021-12-1349646: allow colors in WATCHFMT with %F/%KOliver Kiddle1-0/+3
2021-12-1349645: when completing for the path_dirs option, add a / suffix and follow ↵Oliver Kiddle1-0/+3
symlinks
2021-12-1349643: facilitate use of the fake style by always calling _description with ↵Oliver Kiddle1-0/+4
the executables tag for command names Also allow the command-path style to include relative directories.
2021-12-1349634, reported by Claes Nästén: revert 28989Oliver Kiddle1-0/+6
Defining _POSIX_C_SOURCE caused issues on Solaris 10 but doesn't seem to be needed for musl anymore
2021-12-0749633: update options for git 2.34Oliver Kiddle1-0/+4
2021-12-0249630: allow zsh to quote matches from bash completions but include a ↵Oliver Kiddle1-0/+3
special case for space suffixes
2021-12-0249631: new logger completionOliver Kiddle1-0/+2
2021-12-0249629: new Linux perf completionOliver Kiddle1-0/+4
2021-12-0149628: Add an xfail test for RPS1/RPROMPT equivalence.Daniel Shahaf1-0/+3
2021-12-0149624: Expect the test 'All identifiers are variable references in POSIX ↵Daniel Shahaf1-0/+4
arithmetic' to pass, as it has been passing since 49611.
2021-12-01unposted: Add whitespace and comments. No functional change.Daniel Shahaf1-0/+3
2021-12-0149621: Fix the info Doc build, broken in 49448.Daniel Shahaf1-0/+5
2021-11-3049612: avoid startup error with clashing non-local module parameter nameOliver Kiddle1-0/+3
2021-11-3049611 based on 49590 (Martijn Dekker): disable Inf and NaN in math ↵Oliver Kiddle1-0/+5
expressions for sh emulation
2021-11-2849606: remove old NIS-specific code for retrieving user dataOliver Kiddle1-0/+3
2021-11-2849602: only set LOGCHECK from the watch moduleOliver Kiddle1-0/+2
2021-11-2849601: don't create ambiguous history file entries for lines ending with a ↵Oliver Kiddle1-1/+6
backslash
2021-11-26github #83: _git-push, _git-send-pack: Make --push-option repeatable.Paul Seyfert1-0/+5
2021-11-2649448: docs: Fix pointers to the `Widgets', `User-defined Widgets', and ↵Daniel Shahaf1-0/+4
`Standard Widgets' sections. The latter two didn't have their own texinode()s. Various places, both those sections' subsections and elsewhere in the manual, linked to the first section rather than to the third. For instance, zshcontrib(1) pointed to "noderef(Miscellaneous) in noderef(Zle Widgets)", even though the former (currently §18.6.6) is not under the latter (currently §18.4). Add texinode()s and fix those pointers.
2021-11-2649447: docs: _wanted: Clarify the example and point to another one.Daniel Shahaf1-0/+3
2021-11-2649446: docs: Add texinode()s, so the next commit can link directly to a ↵Daniel Shahaf1-0/+3
subsection.
2021-11-2649445: docs: Clean up some subsection references.Daniel Shahaf1-0/+5
2021-11-2649449: _zstat: Don't offer -o after -s, since -s is ignored when both -s and ↵Daniel Shahaf1-0/+3
-o are specified.
2021-11-26unposted: Add ChangeLog for the previous commit.Daniel Shahaf1-0/+4
2021-11-2449597: add a helper for completing numbers with unit suffixes and separate ↵Oliver Kiddle1-0/+14
out defaults, ranges and units in completion descriptions
2021-11-2249586: fix :a and :A modifiers (with PWD="/") on Cygwin⁩Jun-ichi Takimoto1-0/+5
2021-11-1949594: adapt to changes in 49499 to ensure file modes starting with dash ↵Oliver Kiddle1-0/+3
aren't taken to be flags
2021-11-1949584: allow for build options in gem install completionOliver Kiddle1-0/+3
2021-11-1949575: clarify _alternative's action syntaxArseny Maslennikov1-0/+5
2021-11-1549563: fix build problem of watch module on CygwinJun-ichi Takimoto1-0/+5