Philip Waritschlager
Philip Waritschlager
thanks, should be fixed for stashing now. However, for branch creation detection... this looks like a bug on VSCode's Git extension's part. I created an issue here https://github.com/microsoft/vscode/issues/189316, let's see...
would indeed be good, albeit I have no idea how complex, as then we'd essentially have two independent web views that need to communicate with each other somehow. We'll have...
at least branch lines can now be resized. rest is still tbd not super important imo
Yes. Definitely low prio, but this extensions is all about customization and this feature wouldn't affect anybody so I'm all for adding it.
Are you using some kind of extension that warns you about it? I wanna use it too. It's probably not possible to apply semantic language-agnostic code formatting due to the...
This has become obsolete since the removal of coffeescript etc and the addition of eslint which does indeed enforce a unified code style
I tried to fix the signatures manually ```js let idx = await search_index({ db: { open: (options) => new Promise(resolve => leveldown_db.open(options, resolve)), close: () => new Promise(resolve => leveldown_db.close(resolve)),...
update: it works if you use [`ClassicLevel`](https://github.com/Level/classic-level) instead, even though the types are wrong
It results in a type error by TypeScript / JS tsserver: ```js let idx = await SI({ db: new ClassicLevel(path, { valueEncoding: 'json }), name: 'asdf' }) ``` -> ```...
Specifically > File Reading > Read any file on disk, including those not opened as documents by the user. is by far the most important security threat. Please correct me...