Skip to content

Commit 18663a9

Browse files
committed
README
1 parent 72ba56f commit 18663a9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Simple text editor implemented in Golang using Raylib with the goal of replacing
2626
- Open file with glob completion
2727
- switch between open files
2828
- Grep Buffers using Ripgrep ( more backends are possible )
29-
29+
- Fuzzy file finder
30+
- Zoom in/out (increase/decrease) font size
3031

3132
# Design and Terminology
3233

@@ -47,7 +48,5 @@ Mapping from a Key event to a function that handles it, specific to each buffer.
4748

4849

4950
## TODO:
50-
- Zoom in/out (increase/decrease) font size
51-
- Fuzzy file finder
5251
- Command output buffer ( run a command and see it's result, similar to *Compile Mode* in Emacs)
5352

fuzzy_file_picker_buffer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func makeFuzzyFilePickerCommand(f func(e *FuzzyFilePickerBuffer) error) Command
173173
}
174174

175175
func init() {
176-
FilePickerKeymap = Keymap{
176+
FuzzyFilePickerKeymap = Keymap{
177177

178178
Key{K: "f", Control: true}: makeFuzzyFilePickerCommand(func(e *FuzzyFilePickerBuffer) error {
179179
return e.UserInputComponent.CursorRight(1)

0 commit comments

Comments
 (0)