Commit Graph

556 Commits (v0.7.1)
 

Author SHA1 Message Date
Eric Freese e52ee8ca55
Merge pull request #811 from zsh-users/develop
v0.7.1
7 months ago
Eric Freese f8907cf32b v0.7.1 7 months ago
Eric Freese a50468ef4b Update changelog for v0.7.1 release 7 months ago
Eric Freese 9aceef9646 Remove circle ci reference left over from switch to github actions 7 months ago
Joe Schaefer 11d17e7fea Clear POSTDISPLAY instead of unsetting
We don't have any particular reason to unset. Clearing should be good
enough, and avoid any errors using unset parameters.

Cherry-picked from PR #634
2 years ago
Eric Freese a593f4dfec
Merge pull request #630 from codicodi/reset-fd
Always reset file descriptor after consuming it
2 years ago
Eric Freese 2c9e57fd50
Merge pull request #628 from jeebak/develop
Ensure that we're using the builtin exec
2 years ago
Eric Freese c3d4e576c9
Merge pull request #687 from japanese-goblinn/master
fix: Makefile SRC_DIR spacing
2 years ago
Pablo Speciale 23f2943455 Add more common widgets to list of clear widgets
Cherry-picked from PR #706 and updates made to src/config.zsh.

Fixes issues #678
2 years ago
Eric Freese 95602e2dea
Merge pull request #723 from migimigi/migimigi-patch-1
Create .gitignore for *.zwc
2 years ago
Eric Freese 39aa7bed3a
Merge pull request #671 from jirutka/patch-1
Install: Add Alpine Linux package
2 years ago
Eric Freese 27c298cf1a
Merge pull request #711 from dpthegrey/patch-1
Update Install.md
2 years ago
Eric Freese a84d78f8b5
Merge pull request #758 from mjperrone/patch-1
Update INSTALL link for Mac OS - homebrew moved under z/
2 years ago
Mike Perrone 309d32ac9e
Update INSTALL link for Mac OS - homebrew moved under z/ 2 years ago
Eric Freese 9908eb49a3
Merge pull request #755 from rweir/master
Update README.md
2 years ago
Rob Weir 2b97cf3b30
Update README.md
Clarify where to get `zpty` from.

Info from https://apple.stackexchange.com/a/416099 and https://zsh.sourceforge.io/releases.html .
2 years ago
Eric Freese 9b0272944f Add support for 5.9 2 years ago
Eric Freese c5044edd48 Support latest minor version of 5.8 2 years ago
Eric Freese 2cc34c015e Switch from Circle CI to GitHub Actions
The testing docker image has been split up. Instead of having one image
with all supported versions of zsh installed, we now have a separate
image for each supported zsh version.

We use GitHub Action matrices to run jobs in parallel for all of the
supported versions.

We no longer need to publish images to Docker Hub. The images are just
built by CI (or developers) as needed from the Dockerfile in the repo.
2 years ago
migimigi f29bb7f032
Create .gitignore for *.zwc 2 years ago
D c14ad9fc46
Update Install.md
Adds steps to install zsh-autosuggestions via Homebrew Formulae.
3 years ago
japanese-goblinn fc391d6bf6 fix: Makefile SRC_DIR spacing 3 years ago
Jakub Jirutka 7795a357e6
Install: Add Alpine Linux package 3 years ago
Robert Cegliński 56f10c3b5d Always reset file descriptor after consuming it
This prevents the request cancelling logic from closing an unrelated fd that happens to reuse the same number.
4 years ago
JeeBak Kim 8072e52d96 Run: make 4 years ago
JeeBak Kim 69bf058c23 Ensure we're using the builtin exec 4 years ago
Eric Freese a411ef3e09
Merge pull request #613 from zsh-users/develop
v0.7.0
4 years ago
Eric Freese fcca87555f v0.7.0 4 years ago
Eric Freese 74ba3739bb Update changelog for v0.7.0 release 4 years ago
Eric Freese 3ecc53dfe2 Update license copyright year 4 years ago
Eric Freese aa05920a4a Merge remote-tracking branch 'origin/pull/541' into develop 4 years ago
Eric Freese 89c600c873 Support new zsh version: 5.8 4 years ago
Eric Freese 3474c87d67
Merge pull request #612 from abcdw/develop
Disable ^C async workaround for zsh version 5.8 and later
4 years ago
Andrew Tropin 590c1cd84c
Disable ^C async workaround for zsh version 5.8 and later 4 years ago
Eric Freese 58c98a7739
Merge pull request #588 from keskinsaf/#587-fix-installation-aside-other-plugins
Update INSTALL.md
4 years ago
keskinsaf bb18c4f677
Update INSTALL.md 4 years ago
keskinsaf 9ad305c906
Update INSTALL.md
[fix] install this plugin aside other plugins
4 years ago
Eric Freese eff0894a13
Merge pull request #530 from zsh-users/fixes/flaky-ci
Fixes/flaky ci
5 years ago
Roman Perepelitsa e0b96e1bd6 fix a bug in partial acceptance of suggestions
To reproduce:

1. Run `zsh -f`.
2. Run this:
  function bye() { BUFFER=bye }
  zle -N bye
  bindkey '^B' bye
  print -s 'hibye unexpected'
  source ~/zsh-autosuggestions/zsh-autosuggestions.zsh
3. Type `hi` and press Ctrl-B.

Expected: POSTBUFFER is empty.

Actual: POSTBUFFER is " unexpected".
5 years ago
Eric Freese 05f22fa8a3 Fix flaky special char specs by not using `with_history` twice per test
There's something funny occasionally happening when `with_history` is
used twice in the same test. It seems to be happening more frequently
since asynchronous mode was enabled by default. My guess is it has
something to do with the `C-c` keys being sent toward the end not
consistently terminating the prompt. But I'm really not sure how it
would ever get into a `then` block like it seems to:

```
Failure/Error: wait_for { session.content }.to eq('echo "hello\nworld"')

  expected: "echo \"hello\\nworld\""
       got: "then> echo \"hello\\"
```

Sticking to only one `with_history` per terminal session (per test)
seems to fix the flakiness.

I also removed an old test case because I could not understand why it
was necessary and so couldn't write a good description for it. Could be
we'll need to add it back in at some point.
5 years ago
Eric Freese e715ffb1ae Rewrite `with_history` test helper to be more robust
Write mock history to a temp file and load it directly with `fc -R`
instead of running each command individually to build up the history.
5 years ago
Eric Freese 9ad039443f
Merge pull request #504 from zsh-users/ef/async-by-default
Enable async mode by default in newer versions of zsh
5 years ago
Eric Freese a32fe24acc
Merge pull request #502 from zsh-users/cleanup/idiomatic-check-if-set
cleanup: Use more idiomatic method of checking if var is set
5 years ago
Eric Freese e3897c25c0
Merge pull request #501 from zsh-users/fixes/more-specific-widget-ignore
Be more specific about the built-in widgets we want to avoid wrapping
5 years ago
Eric Freese ee18c7ce24
Merge pull request #505 from zsh-users/ef/readme-glob-links
Add links to documentation on zsh glob patterns to the readme
5 years ago
Eric Freese a83c7cf9d6 Add links to documentation on zsh glob patterns to the readme
See GitHub issue #503
5 years ago
Eric Freese 6c634c1e35 Enable async mode by default in newer versions of zsh
Allow users to override the default by unsetting (or setting) the
ZSH_AUTOSUGGEST_USE_ASYNC variable.

See GitHub issue #498.
5 years ago
Eric Freese 19e375bbc8 cleanup: Consolidate `autoload`s 5 years ago
Eric Freese c114bd2298 Be more specific about the built-in widgets we want to avoid wrapping
To avoid wrapping the built-in widgets (e.g. `autosuggest-fetch`,
`autosuggest-toggle`), we were ignoring all widgets whose names start
with `autosuggest-`. This had the downside of preventing wrapping of
user-defined widgets whose names happened to also start with that
prefix.

By being more specific about the exact built-in widgets we want to avoid
wrapping, we can allow users to define widgets whose names start with
`autosuggest-`.

See GitHub issue #496.
5 years ago
Eric Freese 7682c13860 cleanup: Pull built-in widget actions into global variable 5 years ago