-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(caret): trailing spaces handling #2741
Merged
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
4b83514
Imporove caret.isAtStart
neSpecc 0aaa2d5
use selection to simplify caret at start/end check
neSpecc ce26abe
caret util and tests
neSpecc d8fef04
lint
neSpecc e532a3d
eslint fix
neSpecc 805d499
fix tests
neSpecc 3ea1c74
patch version, changelog
neSpecc 5a1dd57
fix navigation out of delimiter
neSpecc e410904
arrow left tests
neSpecc b474888
left/right arrow tests
neSpecc b276943
chore: Fix typo in comment for block navigation
neSpecc 1838398
lint fix
neSpecc 3252ac6
resolve some ts errors in strict mode
neSpecc 63f9e58
Revert "resolve some ts errors in strict mode"
neSpecc ca49a34
ts errors fix
neSpecc d8666a3
rename utils
neSpecc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Revert "resolve some ts errors in strict mode"
This reverts commit 3252ac6.
- Loading branch information
commit 63f9e586ce68841bf42279c12085981ce425186f
There are no files selected for viewing
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar expression is used several times, maybe worth to extract it to a function. Or allow caret utils to accept undefined
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe that utility methods like
isAtStartOfInput()
should not handle case when input isundefined
. Module should explicitly handle the cases when block has no inputs or there is nocurrentBlock
at all since it is a part of business logic.