A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/edi/st.rs')
| -rw-r--r-- | src/edi/st.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/edi/st.rs b/src/edi/st.rs index cf6c243..859ce4f 100644 --- a/src/edi/st.rs +++ b/src/edi/st.rs @@ -43,6 +43,7 @@ Default => { K(Key::Character("q") if ctrl()) => Dead [Quit], K(Key::Character("v") if ctrl()) => _ [Paste], K(Key::Character("z") if ctrl()) => _ [Undo], + K(Key::Character("d") if ctrl()) => _ [GoToMatch], K(Key::Character("y") if ctrl()) => _ [Redo], K(Key::Character("f") if ctrl()) => Procure((default(), InputRequest::Search)), K(Key::Character("o") if ctrl()) => Procure((default(), InputRequest::OpenFile)), |