diff options
author | joe <rbo@gmx.us> | 2025-08-26 16:51:59 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-08-26 16:51:59 +0200 |
commit | 6a03477fd7dabf6c524cf6eae38eb2fae53772aa (patch) | |
tree | 1b771f4eff4c349ac8a33d354da5a1e4969206c4 /src/e_keys.go | |
parent | reverted all fuzzmode shit but there is still a lot of crap (diff) | |
download | hardflip-6a03477fd7dabf6c524cf6eae38eb2fae53772aa.tar.gz hardflip-6a03477fd7dabf6c524cf6eae38eb2fae53772aa.tar.bz2 hardflip-6a03477fd7dabf6c524cf6eae38eb2fae53772aa.tar.xz hardflip-6a03477fd7dabf6c524cf6eae38eb2fae53772aa.tar.zst hardflip-6a03477fd7dabf6c524cf6eae38eb2fae53772aa.zip |
cleaned more
Diffstat (limited to '')
-rw-r--r-- | src/e_keys.go | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/e_keys.go b/src/e_keys.go index ea3f61f..5aec304 100644 --- a/src/e_keys.go +++ b/src/e_keys.go @@ -908,31 +908,10 @@ func e_fuzz_events(data *HardData, ui *HardUI, event tcell.EventKey) bool { ui.buff.empty() return true } else if event.Key() == tcell.KeyEnter { - // TODO: select fuzzed item ui.s.HideCursor() ui.mode = NORMAL_MODE ui.buff.empty() } else { - e_readline(event, &ui.buff, ui, data.home_dir) } return false } - -// func e_update_lfuzz(buff Buffer) { -// for ptr := lfuzz.head; ptr != nil; ptr = ptr.next { -// var name_runes []rune -// name_runes = []rune(ptr.name) -// var end_runes []rune -// for _, buff_ptr := range buff.data { -// for _, name_ptr := range name_runes { -// if buff_ptr == name_ptr { -// end_runes = append(end_runes, buff_ptr) -// continue -// } -// } -// } -// if len(end_runes) == 0 { -// lfuzz.del(ptr) -// } -// } -// } |