Earlier quoted context omitted.
Or kilo[1] [0]: https://github.com/antirez/kilo/
Or Micro[0] [0]: https://github.com/zyedidia/micro
Edit is now open source
81–90 of 191 posts
Re: Edit is now open source
#82Hey all! I made this! I really hope you like it and if you don't, please open an issue: https://github.com/microsoft/edit To respond to some of the questions or those parts I personally find interesting: The custom TUI library is so that I can write a plugin model around a C ABI. Existing TUI frameworks that I found and were popular usually didn't map well to plain C. Others were just too large. The arena allocator e…
Re: Edit is now open source
#83Hey all! I made this! I really hope you like it and if you don't, please open an issue: https://github.com/microsoft/edit To respond to some of the questions or those parts I personally find interesting: The custom TUI library is so that I can write a plugin model around a C ABI. Existing TUI frameworks that I found and were popular usually didn't map well to plain C. Others were just too large. The arena allocator e…
Re: Edit is now open source
#84Earlier quoted context omitted.
I’m guessing this isn’t just to optimize for binary size. If you have the resources to avoid third party dependencies you eliminate the burden of having to build a trust case for the third party supply chain. That is the number one reason we sometimes reimplement things instead of using third party packages where I work: the risk from dependencies along with the effort required to establish that we can trust them is…
Microsoft has recently said AI writes 30% of their code. Reimplementing things isn’t as expensive as it once was.
Edit: I see the author isn’t very familiar with Rust, which makes it even more impressive.
Re: Edit is now open source
#85Re: Edit is now open source
#86https://en.wikipedia.org/wiki/MS-DOS_Editor
They seem to have given it the same name because they want to preserve the command. But the headline is... misleading.
Re: Edit is now open source
#87Yay for finally having a default text editor that works over ssh. Managing windows servers over ssh is a bit of a pain without. They could just have packaged nano, but oh well.
I am truly behind the times. I didn't know you can ssh into a Windows system.
Re: Edit is now open source
#88Hey all! I made this! I really hope you like it and if you don't, please open an issue: https://github.com/microsoft/edit To respond to some of the questions or those parts I personally find interesting: The custom TUI library is so that I can write a plugin model around a C ABI. Existing TUI frameworks that I found and were popular usually didn't map well to plain C. Others were just too large. The arena allocator e…
Why Rust over a compiled .NET lang? (e.g. C#)
Re: Edit is now open source
#89Hey all! I made this! I really hope you like it and if you don't, please open an issue: https://github.com/microsoft/edit To respond to some of the questions or those parts I personally find interesting: The custom TUI library is so that I can write a plugin model around a C ABI. Existing TUI frameworks that I found and were popular usually didn't map well to plain C. Others were just too large. The arena allocator e…
Why not webassembly ABI?
Generally speaking, the requirement on my end is that whatever we use is as minimal as it gets: Minimal binary size overhead and minimal performance overhead. It also needs to be cross-platform of course. This for instance precludes the widely used WinRT ABI that's being used nowadays on Windows.