-
I have the following code: <FastField id={token} key={token} name={token} |onChange={() => console.log('fastfieldchange')}> My cursor is where the It looks like I should press |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The first To answer the specific question: |
Beta Was this translation helpful? Give feedback.
The first
s
is a shortcut, the second is not, it's a normal label (note the different highlight), so you should enter the second character of the match, even though the label is already visible. You might find this video helpful, if the usage is not 100% clear from the readme.To answer the specific question:
{char}<enter>
to the rescue (https://github.com/ggandor/lightspeed.nvim#matching-line-breaks-linewise-motions). The¬
character before the label indicates that you should press enter as the second char to reach that match.