-
-
Notifications
You must be signed in to change notification settings - Fork 84
Various additions to documentation #703
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
Conversation
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.
Thanks for the doc update! Super important stuff. Left a bunch of minor comments
@@ -4,7 +4,7 @@ | |||
def get_scopes(): | |||
return { | |||
**get_lists( | |||
["scope_type", "selection_type", "subtoken_scope_type"], | |||
["scope_type", "selection_type", "subtoken_scope_type", "head_tail"], |
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.
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 think this will have broken with merger of #672. We now have one list called something like simple_modifier
that includes "head", "tail" and a few other things
@@ -4,7 +4,7 @@ | |||
def get_scopes(): | |||
return { | |||
**get_lists( | |||
["scope_type", "selection_type", "subtoken_scope_type"], | |||
["scope_type", "selection_type", "subtoken_scope_type", "head_tail"], |
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 think this will have broken with merger of #672. We now have one list called something like simple_modifier
that includes "head", "tail" and a few other things
docs/user/README.md
Outdated
|
||
##### `"block"` | ||
|
||
The `"block"` modifier expands to above and below the target to select lines until an empty line is reached. |
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.
The `"block"` modifier expands to above and below the target to select lines until an empty line is reached. | |
The `"block"` modifier expands above and below the target to select lines until an empty line is reached. |
Open to suggestion, just thought I'd add some of these in.
Closes: #698