summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2022-02-20unposted: vcs_info hg mg (with get-unapplied set): Stop leaking a variable ↵Daniel Shahaf2-1/+7
to global scope
2022-02-1649757 (sourceforge #1): offer *.dtx as TeX input filessamcarter2-1/+6
2022-02-1549756 + 49758(Daniel): replace LPAR() in FAQ.yo by SUBST(_LPAR_)Jun-ichi Takimoto3-7/+14
In FAQ.yo, macros inside mytt() and tt() are not expanded. Also includes an update for zyodl.vim by Daniel.
2022-02-13unposted: Fix one underline length in README (cosmetic)Axel Beckert2-1/+6
2022-02-12unposted: Post-release version bumpdana2-1/+3
2022-02-12unposted: Release 5.8.1dana4-6/+8
(cherry picked from commit 1a490c7050cfacd5daf8376d5a1f0e8cb14ccda5)
2022-02-12security/82: VCS_Info: Fix typo in hook_com[base-name_orig] assignmentMarc Cornellà2-1/+5
Tweaked per discussion in security/90, security/91 (cherry picked from commit b34d33e3b3c5ae30e8315111f07634c1e7507531)
2022-02-12CVE-2021-45444: Update NEWS/READMEdana3-0/+22
(cherry picked from commit bdc4d70a7e033b754e68a8659a037ea0fc5f38de)
2022-02-12security/89: Add patch which can optionally be used to work around ↵Marc Cornellà2-0/+103
CVE-2021-45444 in VCS_Info (cherry picked from commit fdb8b0ce6244ff26bf55e0fd825310a58d0d3156)
2022-02-12security/41: Don't perform PROMPT_SUBST evaluation on %F/%K argumentsOliver Kiddle2-0/+15
Mitigates CVE-2021-45444 (cherry picked from commit c187154f47697cdbf822c2f9d714d570ed4a0fd1)
2022-02-0449730: new completions for csplit, pr, ptx, truncateJun-ichi Takimoto5-0/+283
2022-02-0249731: Add OpenBSD sys{clean,merge,patch,upgrade} completionMatthew Martin5-0/+35
2022-01-3049694 + doc: Allow using empty STTY= to freeze tty for a single commandMikael Magnusson4-3/+16
Previously, doing this would just run stty with no arguments, which normally causes it to print some terminal settings to stdout.
2022-01-29unposted: vcs_info git: Teach the rebase-apply test case generator to also ↵Daniel Shahaf3-1/+17
generate rebase-merge test cases
2022-01-29unposted: vcs_info git: Add a missing guard against redefining a function.Daniel Shahaf2-0/+4
2022-01-29unposted: vcs_info git: Deconfuse $EDITORDaniel Shahaf2-2/+5
Work around <https://github.com/chrisbra/vim-zsh/issues/39>.
2022-01-29unposted: vcs_info: Add Vim modelinesDaniel Shahaf5-0/+13
... for consistency with all other vcs_info function files.
2022-01-2949723: vcs_info quilt: Use quilt-patch-dir and ${QUILT_PATCHES} even when ↵Daniel Shahaf2-21/+28
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 Shahaf2-6/+10
2022-01-2949715: _subversion: add: Complete target arguments to this subcommandDaniel Shahaf2-10/+17
2022-01-2949714: _subversion: resolve: Complete conflicted files created by merges, tooDaniel Shahaf2-1/+8
2022-01-2949713: _subversion: commit, diff, revert: Update completions for svn 1.7 and ↵Daniel Shahaf2-26/+46
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 Shahaf2-1/+4
missing/deleted files Note that currently, _svn_controlled matches all files.
2022-01-2949711: _subversion: _svn_status: Don't offer unversioned filesDaniel Shahaf2-1/+6
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 Shahaf2-1/+4
2022-01-27unposted: vcs_info quilt: Remove a no-op variable assignmentDaniel Shahaf2-1/+5
2022-01-2549709: vcs_info hg: Keep $HGPLAIN set for hooks if it had been set outside ↵Daniel Shahaf2-1/+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 Schneider2-0/+7
2022-01-0149667: Include US spelling of "grey" ("gray")Matt Alexander2-3/+9
Co-authored-by: Daniel Shahaf <d.s@daniel.shahaf.name>
2021-12-2949664: Use associative array for third-party completionAaron Schrab2-4/+7
2021-12-2949668: update zfs completionOliver Kiddle5-894/+1365
2021-12-2438150: fix off-by-one error in matcher spec parsingm0viefreak2-1/+6
2021-12-2149658: Fix NULL reference in match code.Peter Stephenson2-1/+6
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 Kiddle2-0/+218
2021-12-1649653: fix array indexing issue introduced with 49518 due to using decimal ↵Oliver Kiddle2-3/+8
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 Kiddle3-7/+11
glob qualifiers completion
2021-12-1449518: fix exclusions for mixed - and + stacked optionsOliver Kiddle4-12/+56
2021-12-1349646: allow colors in WATCHFMT with %F/%KOliver Kiddle4-4/+49
2021-12-1349645: when completing for the path_dirs option, add a / suffix and follow ↵Oliver Kiddle2-6/+10
symlinks
2021-12-1349643: facilitate use of the fake style by always calling _description with ↵Oliver Kiddle2-4/+12
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 Kiddle2-2/+7
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 Kiddle2-124/+242
2021-12-0249630: allow zsh to quote matches from bash completions but include a ↵Oliver Kiddle2-2/+6
special case for space suffixes
2021-12-0249631: new logger completionOliver Kiddle2-0/+82
2021-12-0249629: new Linux perf completionOliver Kiddle2-0/+813
2021-12-0149628: Add an xfail test for RPS1/RPROMPT equivalence.Daniel Shahaf2-0/+9
2021-12-0149624: Expect the test 'All identifiers are variable references in POSIX ↵Daniel Shahaf2-1/+5
arithmetic' to pass, as it has been passing since 49611.
2021-12-01unposted: Add whitespace and comments. No functional change.Daniel Shahaf3-0/+7
2021-12-0149621: Fix the info Doc build, broken in 49448.Daniel Shahaf3-0/+9
2021-11-3049612: avoid startup error with clashing non-local module parameter nameOliver Kiddle2-1/+4