The rest. Sure, fine. Don't really care.
Features I'd like to see in future IDEs
11–20 of 59 posts
Re: Features I'd like to see in future IDEs
#12What I'd really like is an IDE that functions on objects of code and not text files, and diffs and merges thar similarly operate on the syntax tree of the code and not on whether there's an extra newline or not. Like, code formatting, that's just an implementation detail. Why can't there be a thing to let two people edit the same repo with different formatting preferences without it causing merge conflicts?
Re: Features I'd like to see in future IDEs
#13Re: Features I'd like to see in future IDEs
#14I am huge fan of having a EC2 machine in AWS and using VSCode remote SSH or anything similar for development. There are so many differences between cloud and local, that you either embrace it (develop in EC2) or try to wrap it into one more layer or abstraction (hello Docker) and still fail.
Re: Features I'd like to see in future IDEs
#15This is harder than it seems. However I have seen vscode users use `rr` recordings to even step backwards from a breakpoint. But it is gdb-based (i.e. not very platform independent) and is not displayed in a "ghost" like manner which would be neat. I think the first step is for runtimes to get better at recording replays.
Re: Features I'd like to see in future IDEs
#16> Coloration of Tagged Comments He mentions Jetbrains let you do this. I do it in vscode using the TODO Highlight extension.
Re: Features I'd like to see in future IDEs
#17That being said, a lot of people are going to disagree very passionately with what the very opinionated paragraph I just wrote. So I think it’s fair to point out that I actually think the author brings up some very good points that IDE makers should take notice of. Well maybe not the TODO part… If IDE’s should do anything about TODO comments it shouldn’t be giving them a different colour, no, it should refusing to save them.
Re: Features I'd like to see in future IDEs
#18All of this stuff makes me go 'that should be possible in Emacs', with the exception of colouring tagged comments, which I think is possible in Emacs. I think that ghost/replay thing is possible using Sly and iterating through objects is possible in Slime and Sly.
iimage-mode does the image thing
Let me know when you implement commit masks in magit, that sounds handy :-)
Re: Features I'd like to see in future IDEs
#19Similarly what they called Commit Masks seems like an invitation for putting passwords into source code, which is a bad idea. Even if done just to check things real quick.
Re: Features I'd like to see in future IDEs
#20Hmmm, these are kind of boring? I've seen colored comments a few times, embedding images is also possible in Dr Racket and on TempleOS I'm pretty sure. Where's all the fun stuff? Debugger features are neat, but outside of this these features just seem tiny and cute and not too exciting. Even stronger support for structured Treesitter-based editing? (See eg. Helix), proper multicursor support (Helix), both already see…
I frequently use it when I need to make some structural changes to consistent code (block replace function name x, add trailing commas, etc). Not sure what more power I am missing.