Skip to content

Commit

Permalink
fix resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Aug 12, 2016
1 parent de2e9a2 commit d3d8e86
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions src/mode/modeHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,17 +146,6 @@ export class VimState {
* by us or by a mouse action.
*/
public whatILastSetTheSelectionTo: vscode.Selection;
<<<<<<< b9a0b15742532ecc54e66ee04c417d82e70d29dc

public settings = new VimSettings();
}

export class VimSettings {
useSolidBlockCursor = false;
scroll = 20;
useCtrlKeys = false;
=======
>>>>>>> Vim Settings
}

export enum SearchDirection {
Expand Down Expand Up @@ -577,17 +566,6 @@ export class ModeHandler implements vscode.Disposable {
});
}

<<<<<<< b9a0b15742532ecc54e66ee04c417d82e70d29dc
private loadSettings(): void {
this._vimState.settings.useSolidBlockCursor = vscode.workspace.getConfiguration("vim")
.get("useSolidBlockCursor", false);
this._vimState.settings.scroll = vscode.workspace.getConfiguration("vim").get("scroll", 20) || 20;
this._vimState.settings.useCtrlKeys = vscode.workspace.getConfiguration("vim").get("useCtrlKeys", false) || false;
}


=======
>>>>>>> Vim Settings
/**
* The active mode.
*/
Expand Down

0 comments on commit d3d8e86

Please sign in to comment.