Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Chillee committed May 5, 2017
1 parent 15c06c3 commit 95f74d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"url": "https://github.com/VSCodeVim/Vim/issues"
},
"engines": {
"vscode": "^1.11.0"
"vscode": "^1.12.0"
},
"categories": [
"Other",
Expand Down
3 changes: 2 additions & 1 deletion src/cmd_line/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ export async function showCmdLine(initialText: string, modeHandler : ModeHandler
const options : vscode.InputBoxOptions = {
prompt: "Vim command line",
value: initialText,
ignoreFocusOut: true
ignoreFocusOut: true,
valueSelection: [initialText.length, initialText.length]
};

try {
Expand Down

0 comments on commit 95f74d7

Please sign in to comment.