]> git.lizzy.rs Git - nothing.git/commitdiff
Add TODO(#1219)
authorrexim <reximkut@gmail.com>
Sat, 21 Dec 2019 16:27:28 +0000 (23:27 +0700)
committerrexim <reximkut@gmail.com>
Sat, 21 Dec 2019 16:27:28 +0000 (23:27 +0700)
src/ui/edit_field.c

index 1793da30733338e917b03ac40d41316759e0d023..88b600b637d11c5f27a8d91d6f5ca08533d1a53c 100644 (file)
@@ -281,6 +281,9 @@ static void handle_keydown_alt(Edit_field *edit_field, const SDL_Event *event)
         kill_word(edit_field);
     } break;
 
+    // TODO(#1219): edit_field should also support more conventional copy/paste/cut keys like Ctrl+C,Ctrl+V,Ctrl+X
+    //   Emacs keybindings support is cool and all, but we also need to be more reflex inclusive.
+    // TODO: edit_field doesn't support selections for copy/cut operations
     case SDLK_w: {
         field_buffer_copy(edit_field);
     } break;