VoiceCode / vscode

VoiceCode command package for the Visual Studio Code editor.
17 stars 4 forks source link

Issues with prex, brax, coif and prank #1

Closed abooayoob closed 7 years ago

abooayoob commented 7 years ago
// result of saying prex on an empty line
(
)
)

// result of saying brax on an empty line
[
]
]

// result of saying coif on an empty line
"
"

// result of saying prex at the end of a line,
// with the cursor after the first occurrence of the word "text"
this is some text(this is some text
)

// result of saying brax at the end of a line,
// with the cursor after the first occurrence of the word "text"
this is some text[this is some text
]

// result of saying coif at the end of a line,
// with the cursor after the first occurrence of the word "text"
this is some text"this is some text
"

Seems that these commands are not working correctly. (Really appreciate this package though, thanx a ton!)

franciscorubin commented 7 years ago

You need to change this setting:

"editor.emptySelectionClipboard": false

Hope it helps!

abooayoob commented 7 years ago

Worked like a charm thanks! If only I had read the README 🙈