Skip to content

Latest commit

 

History

History
122 lines (78 loc) · 4.44 KB

CHANGELOG.md

File metadata and controls

122 lines (78 loc) · 4.44 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.2.0

Fixed

  • Autoloading of ZSH completion scripts works now (#38)

Added

  • JIT: Fallback completions (see README). Note it's only implemented in the JIT mode for now.

Changed

  • Breaking: {{{ ... }}} commands and many predefined nonterminals (e.g. <PATH>, etc) are now allowed in fewer places to keep the grammars unambiguous. See the Limitations section in README for details.

0.1.8

Changed

  • Breaking: complgen complete has been renamed to complgen jit to better reflect it's for just-in-time completion
  • Breaking: complgen compile has been renamed to complgen aot to better reflect it's for ahead-of-time completion script generation

Fixed

  • Bash,AOT: Completion trailing spaces are now added precisely (#35)
  • Bash,JIT: Completion trailing spaces are now added precisely (#35)
  • Zsh,JIT: Completion trailing spaces are now added precisely (#35)
  • Bash,AOT: Further improve $COMP_WORDBREAKS characters handling
  • Bash,JIT: Further improve $COMP_WORDBREAKS characters handling

0.1.7

Fixed

  • Bash,JIT: Shell integration should now handle $COMP_WORDBREAKS characters correctly
  • Bash,JIT: Fixed Bash shell integration

0.1.6

Fixed

  • ZSH,JIT: Completing in the middle of a word (with complete_in_word option set) works now
  • ZSH,JIT: Completing paths tcsh style (f/b/b -> foo/bar/baz) works now

Changed

  • Breaking: complgen complete CLI interface has changed. Shell integration configuration needs to be updated. See README.

0.1.5

Fixed

  • JIT completion bug: Grammar cmd +{{{ echo foo }}}<TAB> was being completed ad infinitum.

0.1.4

Added

  • In zsh, for the grammar --color=(always|never) and input --color=<TAB>, you will now see always and never, not --color=always and --color=never. This generalized to all subword completions of course.
  • Descriptions can now contain escaped characters, e.g. a quote character or a backslash.
  • More readable parsing errors using the chic Rust crate
  • Scraper is now based on a bunch of regexes instead of a complicated parser. This simplifies the code a lot.

Changed

  • If multiple literals have the same decription, they're now grouped into a single line (this can be controlled with zstyle ':completion:*' list-grouped true/false)

Removed

  • Single brackets external commands as they're superfluous (replaced with triple brackets ones)

0.1.3

Fixed

  • More compact zsh completions in JIT mode
  • Zsh,JIT: Only consider completions with descriptions when aligning completions for better appearance
  • Remove leftover parenthesis in ZSH subword descriptions

0.1.2

Fixed

  • A bug in Bash output where order of arguments to mapfile was wrong

0.1.1

Added

  • Binary releases on GitHub

Fixed

  • Bug in parser where descriptions were being distributed too generously.

0.1.0

Added

  • Add a Homebrew tap formula for automatic updates on new versions.

  • "Distributive" descriptions: you can now use a shorthand descriptions: mygrep (--color=<WHEN> | --color <WHEN>) "use markers to highlight the matching strings" and the "use marker..." description is going to apply to both --color= and --color ... so you don't need to repeat it.

  • Improve performance when running on darcs.usage example by 4x :O

  • Only the completed part appears in ZSH description now instead of the entire shell word (less noise, more like native ZSH)

  • Zsh descriptions now look like the ones produced by _arguments for consistency

  • Only emit subword processing shell script code if it's actually used in the grammar to conserve space

  • Write ZSH completion each on separate lines if any contains a description to better mimic what _arguments does

  • New CLI subcommand: complgen check that checks the passed grammar and doesn't write annything to disk.

Fixed

  • In Bash integration script, grep --color=<TAB> didn't complete anything.

  • Bug in JIT mode: Completing subdirectory files wasn't working due to the entered prefix not being passed properly.

  • Output proper completion prefix in subword completion in shell integration (JIT mode). Even though completions were produced by complgen, shells were filtering them out due to lack of a proper prefix.