Since the license says for personal use, I assume that means I can’t use this in a corporate setting?
I can't stand using VSCode so I wrote my own
61–70 of 186 posts
Re: I can't stand using VSCode so I wrote my own
#62>I'd tweak the script; then to see the results I would press F5 to run the already built binary and wait over a second EVERY SINGLE TIME (about 1480ms). I put in a bug report for this years ago but it got ignored :( https://github.com/microsoft/vscode/issues/137066 Vscode has gotten slower over time. It's true you can't get nanosecond performance out of JS, but anything under 17ms should be trivial. I believe the vsc…
[flagged]
Re: I can't stand using VSCode so I wrote my own
#63And the hundreds (if not thousands :D) of rants by Jon Blow saying how contemporary software performance sucks
Re: I can't stand using VSCode so I wrote my own
#64>I'd tweak the script; then to see the results I would press F5 to run the already built binary and wait over a second EVERY SINGLE TIME (about 1480ms). I put in a bug report for this years ago but it got ignored :( https://github.com/microsoft/vscode/issues/137066 Vscode has gotten slower over time. It's true you can't get nanosecond performance out of JS, but anything under 17ms should be trivial. I believe the vsc…
You can disable it as long as Group Policy doesn't dictate otherwise.
Re: I can't stand using VSCode so I wrote my own
#65When I had a 2 GB laptop lying around, I always wanted a simple text editor with auto-completion etc. (Though only for Python, Linux) After trying KDevelop, Kate, Eric, Sypder etc. I thought I could write my own. I had a simple plugin system in mind, with similar to LSP style features (VSCode was not released that time). The UI was inspired by Blender. Blender has such a fluent UI where you can customize everything.…
How times have changed.
Re: I can't stand using VSCode so I wrote my own
#66> FOR PERSONAL USE ONLY Since the license says for personal use, I assume that means I can’t use this in a corporate setting? https://bold-edit.com/download
Re: I can't stand using VSCode so I wrote my own
#67I use vscode for doing devops-y things (Terraform, OpenTofu, JSON, python, yaml, txt, dockerfiles, etc.) and sometimes the way it bogs down my system drives me bananas. I'll punt to Sublime Text on occasion and use it for a few days, but then start running into papercuts in various places and have to go back to vscode. I so, so wish there was a better way to do this without fucking electron.
Makes me glad I stuck with vim. I do pretty much the same thing as you, what made you use vscode in the first place? What are the coolest features in your context?
I never got that deep into vim/emacs but I wasn't impressed with their versions of the features I listed compared to what is available in a good IDE like intellij/vscode. I do wish the performance was a bit better but I have a beastly workstation so it's not a big deal.
Re: I can't stand using VSCode so I wrote my own
#68[flagged]
If something's slowing it down, it's probably an autcomplete feature which can be configured to trigger less frequently.
Re: I can't stand using VSCode so I wrote my own
#69Earlier quoted context omitted.
[flagged]
My experience on their issue tracker is, if i give thoughtful input i get thoughtful responses. Ive had multiple issues and features acted on. YMMV i suppose.
Re: I can't stand using VSCode so I wrote my own
#70Earlier quoted context omitted.
Opening a 1GB JSON file and scrolling, editing, and keeping syntax highlighting correct is something that even native text editors struggle with.
Notepad++ is a champ at doing that, as long as it has line breaks. (It chokes with massive single-line files like any other editor)