You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-extract-name <name> Name used for the generated let binding
494
+
```
495
+
496
+
Returns the string `Nothing to do` (if extractor is not ables to select an expression to extract in the given position interval) or the following object:
497
+
498
+
```javascript
499
+
{
500
+
'start': position, // the start of the region to be substituted
501
+
'end': position, // the end of the region to be substituted
502
+
'content' string, // the content of the substitution
503
+
'selection_range': location // the location where to position the cursor for easy renaming of the generated let binding
504
+
}
505
+
```
506
+
488
507
### `syntax-document -position <position>`
489
508
490
509
-position <position> The position of the keyword to be documented
0 commit comments