Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
0xGingi committed Sep 25, 2024
1 parent 75f9b23 commit 664b87b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "PhantomEditor"
version = "0.1.1"
version = "0.1.2"
edition = "2021"

[dependencies]
Expand Down
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ PhantomEditor is a lightweight, terminal-based text editor written in Rust. It c

![image](https://github.com/user-attachments/assets/f490cbf1-f060-4c6c-9266-1b4659b2b9f2)


## Features

- Simple and intuitive interface
Expand Down Expand Up @@ -75,6 +74,11 @@ If a directory is provided, PhantomEditor will enter directory navigation mode
- `:`: Enter Command mode
- `Ctrl+B`: Toggle debug menu visibility
- `Ctrl+E`: Enter directory navigation mode
- `/`: Enter Search mode
- `n`: Go to next search result
- `N`: Go to previous search result
- `PageUp`: Scroll up one page
- `PageDown`: Scroll down one page

### Insert Mode

Expand All @@ -97,6 +101,11 @@ If a directory is provided, PhantomEditor will enter directory navigation mode
- `:wq`: Save and quit
- `:e filename`: Open 'filename' for editing

### Search Mode

- `Enter`: Perform search and return to Normal mode
- `Esc`: Cancel search and return to Normal mode

## Debug Output

PhantomEditor includes a debug output area that displays information about key presses, cursor position, and the results of operations like saving files.
PhantomEditor includes a debug output area that displays information about key presses, cursor position, and the results of operations like saving files.

0 comments on commit 664b87b

Please sign in to comment.