begin scaffolding NormalSearchMode (normal mode, except we are searching)
This commit is contained in:
12
fcore/normal-mode/normal-search-mode.sml
Normal file
12
fcore/normal-mode/normal-search-mode.sml
Normal file
@@ -0,0 +1,12 @@
|
||||
structure NormalSearchMode =
|
||||
struct
|
||||
open AppType
|
||||
open InputMsg
|
||||
|
||||
fun update (app, searchString, msg, time) =
|
||||
case msg of
|
||||
CHAR_EVENT chrCmd => app
|
||||
| KEY_ESC => Finish.clearMode app
|
||||
| RESIZE_EVENT (width, height) => app
|
||||
| WITH_SEARCH_LIST searchList => app
|
||||
end
|
||||
Reference in New Issue
Block a user