Skip to content
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

Add a recipe for Search current word under cursor #187

Closed
wants to merge 1 commit into from

Conversation

huytd
Copy link

@huytd huytd commented Aug 4, 2021

One thing that I missed from VIm when using this addon is the ability to hit # to search for the word that under the cursor.

dance.run is a really powerful tool that can be used in this case.

One thing that I missed from VIm when using this addon is the ability to hit `#` to search for the word that under the cursor.

`dance.run` is a really powerful tool that can be used in this case.
Copy link
Owner

@71 71 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the recipe! That's a good idea.

Comment on lines +113 to +120
{
"command": "dance.seek.word",
"args": { "stopAtEnd": true }
},
{
"command": "dance.seek.word",
"args": { "direction": -1 }
},
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
{
"command": "dance.seek.word",
"args": { "stopAtEnd": true }
},
{
"command": "dance.seek.word",
"args": { "direction": -1 }
},
{
"command": "dance.seek.object",
"args": { "input": "[\\p{L}_\\d]+(?<after>[^\\S\\n]+)" }
},

Is more idiomatic, and its implementation is simpler.

3. Call search current selection command

```json
{
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indentation below is off: indent levels should be 0,2,4,6,..., but are 0,3,7,11,...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants