Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bhznjns/rusditor
A simple text editor runs on terminals.
https://github.com/bhznjns/rusditor
Last synced: 7 days ago
JSON representation
A simple text editor runs on terminals.
- Host: GitHub
- URL: https://github.com/bhznjns/rusditor
- Owner: BHznJNs
- License: gpl-3.0
- Created: 2023-08-23T13:13:40.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-16T11:33:59.000Z (4 months ago)
- Last Synced: 2024-09-16T13:07:03.641Z (4 months ago)
- Language: Rust
- Homepage:
- Size: 93.8 KB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rusditor
English | [简体中文](./README_CN.md)
A simple text editor runs on terminals.
## Shortcuts
| Key | Function |
| --- | --- |
| Ctrl + s | Open / Close file saving component |
| Enter (When file-saver opened) | Write file |
| Ctrl + o | Open / Close file opening component |
| Enter (When file-opener opened) | Open file |
| Ctrl + g | Open / Close positioner component |
| Enter (When positioner opened) | Jump to target position |
| Ctrl + f | Open / Close finder component |
| Enter (When finder opened) | Jump to next matches target |
| Shift + Enter (When finder opened) | Jump to previous matches target |
| Ctrl + r | Open / Close text replacer |
| Enter (When text replacer opened) | Toggle text replacer mode to replacing mode (searching mode default) |
| Ctrl + n (When text replacer opened and is replacing) | Jump to next matching text |
| Ctrl + s (When text replacer opened and is replacing) | Replace single matching text |
| Ctrl + a (When text replacer opened and is replacing) | Replace all matching text |
| Ctrl + z | Undo |
| Ctrl + y | Redo |
| Esc | Restore to normal mode (not in normal mode) / Exit program (in normal mode) |