Text Editor

sled – simple text editor

sled is a simple text editor with a terminal UI.

This is free and open source software.

Features include:

  • Four modes of operation:
    • Insert mode – the initial mode which is active on startup. It behaves like one would expect from a “normal” text editor: most characters are self-inserting, arrow keys and Backspace/Delete work as expected, and so on.
    • Command mode – command mode behaves more like vi: characters like h, j, k, l no longer insert themselves but execute commands (in this case movement commands).
    • Overwrite mode – this is the same as insert mode, except that newly inserted characters replace the existing ones instead of being inserted among them.
    • Selection mode – in this mode, moving around the file extends the selection, and most commands that alter text instead delete the selection and exit selection mode.
  • Three “modal modes – active as long a modal dialog is shown on screen. They are: help mode, input mode and numerical input mode.

Website: strahinja.srht.site/sled
Support:
Developer: Strahinya Radich
License: GNU General Public License v3.0

sled

sled is written in C. Learn C with our recommended free books and free tutorials.


Related Software

Vim-like Text Editors
NeovimVim-fork focused on extensibility and usability
HelixKakoune / Neovim inspired editor.
LapceModern editor in Rust which uses native GUI and GPU rendering
NvChadNeovim config aiming to provide a base configuration
LunarVimIDE layer for Neovim
KakouneImplements Vi’s "keystrokes as a text editing language" model
VisCombining modal editing with structural regular expressions
vileText editor that combines aspects of the Emacs and vi editors
pyvimImplementation of Vim in Python
gVimVim with a built-in GUI
ampVim-like editor written in Rust
VyVim-like in Python made from scratch
moeCommand-line editor inspired by Vim
wigModal, Vim-like text editor
sledSimple text editor with a terminal UI
redModern modal text editor written in Rust
adAdaptable text editor
hatHackable modal text editor
HAKOLightweight terminal-based modal text environment
xviPortable multi-file text editor
aretextMinimalist text editor with vim-compatible key bindings
LeveeAlso known as Captain Video

Read our verdict in the software roundup.


Best Free and Open Source Software Explore our comprehensive directory of recommended free and open source software. Our carefully curated collection spans every major software category.

This directory is part of our ongoing series of informative articles for Linux enthusiasts. It features hundreds of detailed reviews, along with open source alternatives to proprietary solutions from major corporations such as Google, Microsoft, Apple, Adobe, IBM, Cisco, Oracle, and Autodesk.

You’ll also find interesting projects to try, hardware coverage, free programming books and tutorials, and much more.

Discovered a useful open source Linux program that we haven’t covered yet? Let us know by completing this form.
Subscribe
Notify of
guest
6 Comments
Oldest
Newest Most Voted
Strangely Brown
Strangely Brown
4 months ago

That’s what Linux needs, another text editor!!!!!

Vikram
Vikram
4 months ago

Q: Why?
A:

  • Because newcomers don’t find vi(m) comfortable. Something akin to EDIT.COM is usually perceived as more familiar: type text straight away, C-S to save, then C-Q. (Sled still has vim‑like behavior, but it is “reverse” – default is insert mode, from which you can enter command mode.)
  • Because nano/joe are still relatively complicated.
  • As an exercise in programming in C, and to create an editor to my own liking, closer to suckless principles. 
Archie
Archie
4 months ago
Reply to  Vikram

suckless principles?