VSCode-Hungry-Delete
VSCode-Hungry-Delete copied to clipboard
Sometimes, nothing happens upon backspace and CPU goes to 100%
I cannot reproduce this precisely yet, but it happens so frequently I had to disable this extension completely. Maybe it is related to another one. I know this issue does not help much but I want to give a starting point. Hopefully some details will follow soon.
It happens like this:
- press backspace
- nothing happens
- cpu goes up (close vscode)
- sometimes, the process still runs and needs to be killed forcefully
Most of the time, however, this extension works just fine.
actually when the cpu is @100 or the developer tools panel show an error
Extension Host
Debugger attached.
non of the installed packages will work.
@phil294 @ctf0
It seems that I am able to reproduce this issue, but I have no idea. I will investigate it as soon as possible.
1. Create a react component
import React from 'react';
function App() {
return (
<div className="App">
<p>Upload <Good Excel here. This will read the first sheet, and assumes that the first row of the table is a header.</p>
</div>
);
}
export default App;
2. Put the cursor just in front of "Excel"
import React from 'react';
function App() {
return (
<div className="App">
<p>Upload <Good |Excel here. This will read the first sheet, and assumes that the first row of the table is a header.</p>
</div>
);
}
export default App;
3. Type < and press backspace
import React from 'react';
function App() {
return (
<div className="App">
<p>Upload <Good <|Excel here. This will read the first sheet, and assumes that the first row of the table is a header.</p>
</div>
);
}
export default App;
This still happens. Unfortunate, as I love the extension. Anything we can do to help? Is there a solid reproduction?
This happends to me three times.