Helix-gpui: A simple GUI for the Helix editor
1–10 of 77 posts
Re: Helix-gpui: A simple GUI for the Helix editor
#2Re: Helix-gpui: A simple GUI for the Helix editor
#3What's a "modal editor"? I don't really understand what's so unique about this.
Re: Helix-gpui: A simple GUI for the Helix editor
#4What's a "modal editor"? I don't really understand what's so unique about this.
Vim has
- normal mode which allows you to enter commands to manipulate text rather than just type characters in the file
- insert mode which allows you to enter text into a file
- replace mode which allows you to replace text
and a few others.
Most editors like vscode, sublime etc only have a single mode that they are always in IE insert mode. Modal editors have additional modes that allow for additional capabilities.
[0]https://www.freecodecamp.org/news/vim-editor-modes-explained...
Re: Helix-gpui: A simple GUI for the Helix editor
#5What's a "modal editor"? I don't really understand what's so unique about this.
Re: Helix-gpui: A simple GUI for the Helix editor
#6What's a "modal editor"? I don't really understand what's so unique about this.
Re: Helix-gpui: A simple GUI for the Helix editor
#7What's a "modal editor"? I don't really understand what's so unique about this.
Re: Helix-gpui: A simple GUI for the Helix editor
#8What's a "modal editor"? I don't really understand what's so unique about this.
It's a different workflow, but kinda nice when you want that IDE-style experience in a simpler interface like a TUI.
Re: Helix-gpui: A simple GUI for the Helix editor
#9Re: Helix-gpui: A simple GUI for the Helix editor
#10That’s lovely, I’m doing the same. I’m using glfw and C++14 to build a vim-ish IDE. I never learned to love vim/nvim plugins, and make only basic use of macros and substitutions so that’s pretty much the feature-set. It’s very fun to build your own UI library.