Commit Graph

540 Commits (95602e2dea741971196db50b602315c97c608fb1)
 

Author SHA1 Message Date
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
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
Jakub Jirutka 7795a357e6
Install: Add Alpine Linux package 3 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
Eric Freese f90d040784 cleanup: Use more idiomatic method of checking if var is set
We are already using this method in other places.

For example: `ZSH_AUTOSUGGEST_USE_ASYNC`
5 years ago
Eric Freese ae315ded4d
Merge pull request #494 from zsh-users/develop
v0.6.4
6 years ago
Eric Freese ff298e57c0 `completion` suggestion strategy seems pretty stable 6 years ago
Eric Freese a5affac6f1 v0.6.4 6 years ago
Eric Freese 03f59df502 Update changelog for v0.6.4 release 6 years ago
Eric Freese cf445d08b0
Merge pull request #487 from zsh-users/features/completion-ignore
Allow skipping completion suggestions when buffer matches a pattern
6 years ago
Eric Freese 0d2c9de2ea
Merge pull request #488 from zsh-users/fixes/run-orig-before-move-cursor
Call original widget before moving cursor when accepting suggestion
6 years ago
Eric Freese 8f3f59542a
Merge pull request #473 from zsh-users/refactor-null-byte-split
cleanup: Split on null bytes instead of pattern matching
6 years ago
Eric Freese 6ec95379fa Call original widget before moving cursor when accepting suggestion
The check on length of `$POSTDISPLAY` is in support of the test for
`vi-delete` on the last char of the buffer with `dl`.

Fixes issue #482.
6 years ago
Eric Freese 7afb7364f1 Allow skipping completion suggestions when buffer matches a pattern
Set ZSH_AUTOSUGGEST_COMPLETION_IGNORE to a glob pattern to have the
completion suggestion strategy never make suggestions when the buffer
matches the pattern.

This can be helpful when some completion routines you have are
particularly expensive and you want to prevent them from running
automatically on every keystroke.

See GitHub issue #463.
6 years ago
Eric Freese 54d7a9a84c cleanup: Switch to guard clause in accept widget handler 6 years ago
Eric Freese 5217ed5269 cleanup: Switch to arithmetic comparison 6 years ago
Eric Freese ef657cb38c cleanup: Combine two arithmetic conditionals 6 years ago
Eric Freese d43c309f88
Merge pull request #476 from gregrickaby/patch-1
(README) Link to 256 color chart
6 years ago
Greg Rickaby c6b636ea4f
(README) Link to 256 color chart
Easy to see and choose a color, and then copy it over from the chart.
6 years ago
Eric Freese 0f0f221180 cleanup: Split on null bytes instead of pattern matching
Follow-up to technique tried in commit d94475c after I learned about the
`@` flag to keep empty strings in the array.
6 years ago