Skip to content
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.

Release 1.1.0

Compare
Choose a tag to compare
@ueokande ueokande released this 27 Apr 13:02
· 190 commits to master since this release

πŸ“ˆ Enhancement Notes

Delay before filling completions (#1099)

Insert a delay before filling completions. When trying opening a new tab or
window using the open command, typing is impaired by the search as you type
functionality, especially if you have a large search base, like long history or
many bookmarks.

Show an error on mark not set (#1104)

If you try to jump to a mark ('a) and the key is not assigned for a mark, the error is shown in the developer console:

"Mark is not set"

but users cannot see that on the page.

By this change, users can see a message on the bottom of the window.

πŸ“” Other Notes

Refactor state management with React Hooks on Console (#1098)

Separate independent states on console state to "completion", "colorscheme", and "app". Each states are managed on Reach Hooks and Custom Hooks wrapping them.

Hide console to focus main window after find executed (#1108)

After error message "Pattern not found: foo" is shown on find mode, the focus
losses from the top window. User cannot do any operation by the keyboard. This
change fixes the focus issue.

This issues is caused by a regression by #1098