All Projects → gchp → Iota

gchp / Iota

Licence: mit
A terminal-based text editor written in Rust

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Iota

Yawysiwygee
Yet another what-you-see-is-what-you-get equation editor
Stars: ✭ 60 (-96%)
Mutual labels:  text-editor
.emacs.d
My emacs configuration
Stars: ✭ 76 (-94.93%)
Mutual labels:  text-editor
Dte
A small, configurable console text editor (moved to https://gitlab.com/craigbarnes/dte)
Stars: ✭ 98 (-93.47%)
Mutual labels:  text-editor
Avalonedit
The WPF-based text editor component used in SharpDevelop
Stars: ✭ 1,127 (-24.87%)
Mutual labels:  text-editor
Godot Engine.file Editor
A Godot Engine addon that adds a File Editor for multiple file types editing. Create and Write plain text files, configuration files and csv files with custom visualizers and previews. Also supports file translations!
Stars: ✭ 70 (-95.33%)
Mutual labels:  text-editor
Gnvim
GUI for neovim, without any web bloat
Stars: ✭ 1,271 (-15.27%)
Mutual labels:  text-editor
O
🌀 Text editor suitable for writing git commit messages and editing Markdown files. Can build executables and jump to errors at the press of `ctrl-space`, for several programming languages. Can format code with `ctrl-w`. Provides general syntax highlighting, rainbow parenthesis and cut/paste portals. o is intentionally limited to VT100.
Stars: ✭ 54 (-96.4%)
Mutual labels:  text-editor
Neovim
Vim-fork focused on extensibility and usability
Stars: ✭ 49,389 (+3192.6%)
Mutual labels:  text-editor
Subethaedit
General purpose plain text editor for macOS. Widely known for its live collaboration feature.
Stars: ✭ 1,183 (-21.13%)
Mutual labels:  text-editor
Atsynedit
Multi-line editor control, with syntax highlighting, for Lazarus
Stars: ✭ 92 (-93.87%)
Mutual labels:  text-editor
Massren
massren - easily rename multiple files using your text editor
Stars: ✭ 1,133 (-24.47%)
Mutual labels:  text-editor
Toaru Nih
NOTICE: The ToaruOS-NIH Project has been MERGED UPSTREAM. This repository is now archived.
Stars: ✭ 66 (-95.6%)
Mutual labels:  text-editor
Mazu Editor
a minimalist text editor with syntax highlight, copy/paste, and search
Stars: ✭ 88 (-94.13%)
Mutual labels:  text-editor
Markra
A Markdown-to-JIRA syntax editor.
Stars: ✭ 64 (-95.73%)
Mutual labels:  text-editor
React Native Draftjs
A full fledged React Native Rich Text editor based on draft.js
Stars: ✭ 103 (-93.13%)
Mutual labels:  text-editor
Kilo In Go
Kilo text editor, from Build Your Own Text Editor, in Go
Stars: ✭ 56 (-96.27%)
Mutual labels:  text-editor
Xi Qt
A Qt front-end for xi-editor. Experimental (WIP)
Stars: ✭ 85 (-94.33%)
Mutual labels:  text-editor
Anexplorer
📁 Another Android Explorer ( File Manager ) is an All-in-One Open source file manager. AnExplorer File Manager (File Explorer) is designed for all android devices including Phones, Phablets, Tablets, Chromecast, Wear OS, Android TV and Chromebooks. It's a fully designed with Material guidelines by Google.
Stars: ✭ 1,505 (+0.33%)
Mutual labels:  text-editor
Left
Distractionless Writing Tool
Stars: ✭ 1,538 (+2.53%)
Mutual labels:  text-editor
Accepted
A terminal text editor to be ACCEPTED
Stars: ✭ 91 (-93.93%)
Mutual labels:  text-editor

Iota Build Status

Gitter

Iota is a terminal-based text-editor written in Rust.

Here's what it looks like right now, editing itself.

Screenshot

Motivation

Iota was born out of my frustrations with existing text editors. Over the years I've tried combinations of simple text editors, IDEs and everything in between. None of them felt right to me, however. Some were too slow & bulky, others were too difficult to customise and still others were platform specific and I couldn't use them on all my machines.

I started building Iota with the view of combining ideas and features from serveral different editors while designing it to work on modern hardware.

Why Rust? Because its fun and why not!

Goals

The goals for Iota are that it would be:

  • 100% open source
  • highly extensible/customisable/scriptable
  • fast & efficient - designed with modern hardware in mind
  • cross platform - it should work anywhere
  • developer friendly - it should just "get out of the way"
  • Rust tooling integration (see note below)

Iota is still in the very early stages, and is probably not ready for every day use. Right now the focus is on implementing and polishing the basic editing functionality.

Windows support is coming, but it's somewhat slow right now. Help with this would be greatly appreciated!

Note on Rust integration: The aim is to support code editing in all languages (and of course plain text), with a lean towards Rust and integration with Rust tools. I don't intend it to be a "Rust IDE" or "Rust only", however I think it would be cool to experiment with integration with Rust tooling. This could also be applied to other languages too.

Building

Clone the project and run cargo build --release.

NOTE: Iota needs to be built using the nightly toolchain for now, not stable.
Run the following commands - $ rustup install nightly following which run - $ rustup override set nightly .
Rustup is very useful for managing multiple rust versions.

Once you have the source, run:

Usage

To start the editor run ./target/release/iota /path/to/file.txt. Or simply ./target/release/iota to open an empty buffer.

You can also create buffers from stdin.

# open a buffer with the output of `ifconfig`
ifconfig | ./target/release/iota

You can move the cursor around with the arrow keys.

The following keyboard bindings are also available:

  • Ctrl-s save
  • Ctrl-q quit
  • Ctrl-z undo
  • Ctrl-y redo

Iota currently supports both Vi and Emacs style keybindings for simple movement.

You can enable Vi style keybindings by using the --vi flag when starting Iota. The vi-style modes are in the early stages, and not all functionality is there just yet. The following works:

  • while in normal mode:
    • k move up
    • j move down
    • l move forwards
    • h move backwards
    • w move one word forward
    • b move one word backward
    • 0 move to start of line
    • $ move to end of line
    • d delete
    • u undo
    • r redo
    • i insert mode
    • :q quit
    • :w save
  • while in insert mode:
    • ESC normal mode

Alternatively, you can use the following emacs-style keys by using the --emacs flag:

  • Ctrl-p move up
  • Ctrl-n move down
  • Ctrl-b move backwards
  • Ctrl-f move forwards
  • Ctrl-a move to start of line
  • Ctrl-e move to end of line
  • Ctrl-d delete forwards
  • Ctrl-h delete backwards
  • Ctrl-x Ctrl-c quit
  • Ctrl-x Ctrl-s save
  • Ctrl-z undo
  • Ctrl-y redo
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].