-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
gUU and guu #1428
gUU and guu #1428
Conversation
src/actions/actions.ts
Outdated
@@ -2082,7 +2082,7 @@ export class UpperCaseOperator extends BaseOperator { | |||
await TextEditor.replace(range, text.toUpperCase()); | |||
|
|||
vimState.currentMode = ModeName.Normal; | |||
vimState.cursorPosition = start; | |||
vimState.cursorPosition = vimState.cursorPositionJustBeforeAnythingHappened[0]; |
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.
Why is this necessary over using start? (Also the [0] won't be multi cursor friendly like start and end are)
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.
this entire command is already not multicursor friendly though (bad reason I know)
start in the case of gUU is start of line and end is end of line
gUU is not supposed to move the cursor so it needs to perform the action and remain in place
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.
gUU looks like it just moves the cursor to the beginning of the line or am I wrong?
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.
you are right...I am so confused, I wonder if it does the same thing in gvim, I tried yesterday...I will change to start, thats easy
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.
haha no worries
src/actions/actions.ts
Outdated
@@ -5132,6 +5133,32 @@ class MoveFormat extends BaseMovement { | |||
} | |||
|
|||
@RegisterAction | |||
class MoveUpercaseLine extends BaseMovement { |
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.
Can you leave a comment here saying that these are for guu and gUU (for searchability mostly)
@@ -5131,6 +5132,34 @@ class MoveFormat extends BaseMovement { | |||
} | |||
} | |||
|
|||
// Used for gUU |
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.
It'd probably be good to move these next to the other weirdo motions I made for dd yy cc etc.
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.
they are....
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.
oh, nice! i didn't hit that little fold out button enough.
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.
yea I think the > and = are also of the same weirdo type
fixes #1423