-
Notifications
You must be signed in to change notification settings - Fork 12
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
'auto' is inserted after copy-paste #24
Comments
I'm experiencing the same issue. Otherwise the plugin is great. Awesome job! |
Same here |
+1 Version: 1.35.1 multiclip version: 0.1.5 |
The same issue here. It looks like this extension has been abandoned? |
any response?? |
I can't repro this issue on VSCode 1.49. I would need more context. |
Version: 1.49.0 (user setup) @angular-devkit/core: 9.1.11. "auto" word added in my TypeScript files, HTML, CSS, etc.
|
Same here. 100% reproducible (VSCode v1.51.0; extension version v0.1.5) |
extension.ts:19 if (txt.length === 0) {
let eol;
try {
const files = vscode.workspace.getConfiguration("files");
19. eol = files.get("eol","\n");
} catch (e) {
eol = "\n";
}
txt = d.lineAt(sel.start.line).text + eol ;
} I have the same issue. Setting eol to |
thnks. now , I am in troble.
code : 1.78.2 |
If I copy a line using vscode-multiclip and paste it then an auto text is joined to my first copied text.
for example I copied the line
test
and after paste it becametestauto
.vscode version: Version 1.33.1 (1.33.1)
multiclip version: 0.1.5
The text was updated successfully, but these errors were encountered: