-
Notifications
You must be signed in to change notification settings - Fork 13
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
g] doesn't work? #37
Comments
Ahh I found where you document this: By default, these let you move around using the [[ and ]] keys. The following
sequences are also mapped with these keys:
g] Move forward to an increased indent level
g[ Move backward to a decreased indent level
Default:
let g:braceless_jump_prev_key = '['
let g:braceless_jump_next_key = ']' So my question now is how do you disable these additional mappings? |
Set them to empty strings. In hindsight, these should've been disabled by default. |
Actually you're talking about just disabling |
@tweekmonster ok so then how do I access the
|
@tweekmonster I removed the duplicate mappings for If I also remove it from the docs will you take a PR? |
These motions are redundant (since [[ and ]] are already used) and also mask other standard mappings (eg. g] normally is shorthand for :tselect). Adjust the docs to match. Fixes tweekmonster#37
The use of `g]` masks the standard mapping for `:tselect`. Disable the indent jumping feature by default. Indicate how to re-enable it in the docs. Fixes tweekmonster#37
The use of `g]` masks the standard mapping for `:tselect`. Disable the indent jumping feature by default. Indicate how to re-enable it in the docs. Fixes #37
The binding of
g]
to:tselect
doesn't seem to work after installing this plugin?Is this expected?
I'd love to have both since I use tags quite often.
The text was updated successfully, but these errors were encountered: