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

Fix #358. #399

Merged
merged 1 commit into from
Jul 21, 2016
Merged

Fix #358. #399

merged 1 commit into from
Jul 21, 2016

Conversation

rebornix
Copy link
Member

@rebornix rebornix commented Jul 6, 2016

Yay! We love PRs! 🎊

Please include a description of your change & check your PR against this list, thanks:

  • Commit message has a short title & issue references
  • Commits are squashed
  • It builds and tests pass (e.g gulp tslint)

From my observation, if you open the same file twice in two window viewport inside a single tab, these two viewports are sharing the same buffer. The history is shared between these two viewports, selection is shared either. The only thing not shared is current cursor position in normal mode, totally no idea why is that.

VS Code takes almost the same concept, if we open the same file in two Grouped Editors, they are sharing the same buffer. And VS Code doesn't share cursor between these two panes either. So each time when we switch between two panes which open the same file, we just reassign the cursor position to vimState. That's all we need to handle as VS Code stores everything about the buffer like Vim does.

The only thing that might break is history. But currently everything works fine.

I added test cases for this change on my local box. But it turned out that VS Code splitEditor or focusPreviousGroup or focusNextGroup doesn't move the active cursor to target Group Editor. So our correct code can never pass test cases and it's false negative. So before VS Code test library has a fix for this thing, I'd like to keep the test cases on my local box. But I've tested this fix manually, it works.

@johnfn
Copy link
Member

johnfn commented Jul 12, 2016

I'm holding off on merging this because now we track both activeFileName and activeFileIdentity, which seems confusing. activeFileName was intended to be the identity of the active file anyways. Can you think of a way to merge both of them into one?

@rebornix
Copy link
Member Author

@johnfn yeah activeFileName is part of activeFileIdentity so that's doable, I'll revise the code.

@jpoon
Copy link
Member

jpoon commented Jul 16, 2016

@rebornix, you're still working on one common file identity?

@rebornix
Copy link
Member Author

@jpoon sorry for the delay, I'll update this PR later today together with other PRs.

@rebornix
Copy link
Member Author

Add a new class for File/Editor Identity. I was trying to put the declaration into textEditor.ts but if I did that, I kept getting textEditor_1.EditorIdentiy is not a constructor when running test cases (launch extension is perfect). Not sure what kind of issue I'm running into.

@@ -11,38 +11,83 @@ import { showCmdLine } from './src/cmd_line/main';
import { ModeHandler } from './src/mode/modeHandler';
import { TaskQueue } from './src/taskQueue';
import { Position } from './src/motion/position';
<<<<<<< aa8f6051a847c442e374ce22920ca5bd21835aec
Copy link
Member

Choose a reason for hiding this comment

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

You still have a merge conflict here

@rebornix
Copy link
Member Author

Rebase and fix conflicts.

return this.fileName === identity.fileName && this.viewColumn === identity.viewColumn;
}

public withColumn(column: vscode.ViewColumn): EditorIdentity {
Copy link
Member

@jpoon jpoon Jul 18, 2016

Choose a reason for hiding this comment

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

Sorry for the nitpick. Where is this function used? Do we need it?

Copy link
Member Author

Choose a reason for hiding this comment

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

Oh it's not used for now, I thought this can be used to update Identity by column but finally it's not yet necessary. If other parts are good, I'll remove it and push a update.

Copy link
Member

@jpoon jpoon Jul 20, 2016

Choose a reason for hiding this comment

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

Yep, that's the only comment I have :). We can merge following that removal.

@rebornix
Copy link
Member Author

@jpoon we are good to go now :)

@jpoon jpoon merged commit 453575d into VSCodeVim:master Jul 21, 2016
@jpoon
Copy link
Member

jpoon commented Jul 21, 2016

Thanks @rebornix! 🎈

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.

3 participants