@codemirror/autocomplete
Advanced tools
Changelog
0.19.13 (2022-02-18)
Fix an issue where the completion tooltip stayed open if it was explicitly opened and the user backspaced past its start.
Stop snippet filling when a change happens across one of the snippet fields' boundaries.
Changelog
0.19.12 (2022-01-11)
Fix completion navigation with PageUp/Down when the completion tooltip isn't part of the view DOM.
Changelog
0.19.11 (2022-01-11)
Fix a bug that caused page up/down to only move the selection by two options in the completion tooltip.
Changelog
0.19.10 (2022-01-05)
Make sure the info tooltip is hidden when the selected option is scrolled out of view.
Fix a bug in the completion ranking that would sometimes give options that match the input by word start chars higher scores than appropriate.
Options are now sorted (ascending) by length when their match score is otherwise identical.
Changelog
0.19.9 (2021-11-26)
Fix an issue where info tooltips would be visible in an inappropriate position when there was no room to place them properly.
Changelog
0.19.8 (2021-11-17)
Give the completion tooltip a minimal width, and show ellipsis when completions overflow the tooltip width.
autocompletion
now accepts an aboveCursor
option to make the completion tooltip show up above the cursor.
Changelog
0.19.7 (2021-11-16)
Make option deduplication less aggressive, so that options with different type
or apply
fields don't get merged.
Changelog
0.19.6 (2021-11-12)
Fix an issue where parsing a snippet with a field that was labeled only by a number crashed.
Changelog
0.19.5 (2021-11-09)
Make sure info tooltips don't stick out of the bottom of the page.
The package exports a new function selectedCompletion
, which can be used to find out which completion is currently selected.
Transactions created by picking a completion now have an annotation (pickedCompletion
) holding the original completion.