This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 137
Fix catching user's initial config state #376
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
feat: add new commands for hopping camel case words
Add excluded_filetypes to avoid invalid windows and buffers
Fix vertical
Inline hint
feat:make x_bias configurable
* refactor!: fix lint errors update deprecated api calls * refactor!: update minimum nvim version to 9.0
Co-authored-by: mohsen <36933074+smoka7@users.noreply.github.com>
Co-authored-by: mohsen <36933074+smoka7@users.noreply.github.com>
Co-authored-by: mohsen <36933074+smoka7@users.noreply.github.com>
add missing "," in lazy.vim config
afterlook
force-pushed
the
faster-hint-state
branch
2 times, most recently
from
September 10, 2023 19:36
a79755e
to
00eb15c
Compare
Hint state was taken out one layer upwards to main interfaces in order to fix hop pattern as it adds virtual cursor which corrupts user settings. Because of that, hint state has to be saved before that happens. This is a direct follow up to hadronized#148. This rewrite should solve this issue entirely for all cases. Signed-off-by: afterlook <29754364+afterlook@users.noreply.github.com>
afterlook
force-pushed
the
faster-hint-state
branch
from
September 10, 2023 21:06
00eb15c
to
63f6749
Compare
This reverts commit 63f6749.
afterlook
force-pushed
the
faster-hint-state
branch
from
September 11, 2023 19:27
831ce04
to
10e3ee8
Compare
Due to highlighting changing, phaazon#148 issue is no longer relevant and any logic related to changing user's cursorline can be removed. This also fixes any previous bugs that were result of saving hint state after cursorline was toggled off. Signed-off-by: afterlook <29754364+afterlook@users.noreply.github.com>
afterlook
force-pushed
the
faster-hint-state
branch
from
September 11, 2023 19:28
10e3ee8
to
f3b6d84
Compare
Signed-off-by: afterlook <29754364+afterlook@users.noreply.github.com>
Closing as people should now target a fork; see this. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hint state was taken out one layer upwards to main interfaces in order to fix hop pattern as it adds virtual cursor which corrupts user settings. Because of that, hint state has to be saved before that happens.
This is a direct follow up to #148. This rewrite should solve this issue entirely for all cases.