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

gUU and guu #1428

Merged
merged 7 commits into from
Mar 25, 2017
Merged

gUU and guu #1428

merged 7 commits into from
Mar 25, 2017

Conversation

xconverge
Copy link
Member

fixes #1423

@@ -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];
Copy link
Member

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)

Copy link
Member Author

@xconverge xconverge Mar 25, 2017

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

Copy link
Member

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?

Copy link
Member Author

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

Copy link
Member

Choose a reason for hiding this comment

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

haha no worries

@@ -5132,6 +5133,32 @@ class MoveFormat extends BaseMovement {
}

@RegisterAction
class MoveUpercaseLine extends BaseMovement {
Copy link
Member

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
Copy link
Member

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.

Copy link
Member Author

Choose a reason for hiding this comment

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

they are....

Copy link
Member

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.

Copy link
Member Author

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

@xconverge xconverge merged commit e02363e into VSCodeVim:master Mar 25, 2017
@xconverge xconverge deleted the gUU-and-guu branch March 25, 2017 18:24
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.

gUU and guu doesn't work
2 participants