You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing this plugin, the VS Code auto closing bracket function is broken.
When I type function show( the ) shows automatically as function show(), but when I type another ), it becomes function show()) and the cursor is stayed in the middle of two )). Only if I input something into the bracket like function show(msg) then the cursor moves to the end without any problem.
After I type function show(msg) { the } doesn't show out automatically.
Andrew
The text was updated successfully, but these errors were encountered:
Insert mode is missing some functionality due to VSCode not providing custom keybinding context support. (Requested here: microsoft/vscode#1432)
I'll do something with (), {} and [] before VSCode supports it.
This should be solved in 1.0.0.
However, 1.0.0 depends on VSCode >= 0.10.12.
You can download the VSCode insiders version here and install amVim to try it.
After installing this plugin, the VS Code auto closing bracket function is broken.
function show(
the)
shows automatically asfunction show()
, but when I type another)
, it becomesfunction show())
and the cursor is stayed in the middle of two))
. Only if I input something into the bracket likefunction show(msg)
then the cursor moves to the end without any problem.function show(msg) {
the}
doesn't show out automatically.Andrew
The text was updated successfully, but these errors were encountered: