Skip to content

Commit

Permalink
Merge branch 'master' into auto_complete_alias_bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt authored Mar 22, 2024
2 parents 55d31ee + 9a87ccf commit c2b8f2e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

### Fixed
- Fixed `unrecognized modifier 'i'` that happened on tab-completion when using sub command aliases ([#500](https://github.com/ajalt/clikt/pull/500))
- Make sure auto complete script works on zsh, fixing the error `complete:13: command not found: compdef` ([#499](https://github.com/ajalt/clikt/pull/499))

## 4.2.2
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ internal object BashCompletionGenerator {
if (zsh) {
append(
"""
|autoload bashcompinit
|autoload -Uz compinit
|compinit
|autoload -Uz bashcompinit
|bashcompinit
|
|
Expand Down

0 comments on commit c2b8f2e

Please sign in to comment.