diff --git a/src/text_editor/text_editor.cpp b/src/text_editor/text_editor.cpp index 445b614..54c81d6 100644 --- a/src/text_editor/text_editor.cpp +++ b/src/text_editor/text_editor.cpp @@ -1,7 +1,6 @@ /* - [ ] Cleanups - - [ ] Delta based scrolling!! - - [ ] Enable framerate? + - [ ] How to enable framerate to be unlimited and not break scrolling? - [x] When dragging a file into the editor, would be nice if the file opened in the window user dropped the file into. Not the active window. - [ ] When 2 views of same buffer are open, the view with caret below the caret which modifies the view - starts moving and getting messed up - [ ] Reduce number of created buffers to one per window, should be enough @@ -30,6 +29,9 @@ - [ ] Open - [ ] Way to bind "open" commands to keys from config - [ ] Ability to access and set clipboard as well as affect selection in the open scripts +- [ ] QueryFile + - [ ] Indicate to user that he is choosing a file + - [ ] Define clear rules for opt out (like switching to different window) and kill or views that were for choosing? */ #define PLUGIN_PROFILER 1 diff --git a/src/text_editor/view.cpp b/src/text_editor/view.cpp index 684e7b7..e6e09b5 100644 --- a/src/text_editor/view.cpp +++ b/src/text_editor/view.cpp @@ -683,7 +683,7 @@ Array ReplaceEx(Allocator scratch, View *view, String16 string) { } EndEdit(buffer, &edits, &view->carets, EndEdit_KillSelection); return edits; - } +} void Replace(View *view, String16 string) { Scratch scratch;