5LB4DFFUFHNDEQY3IIQUWLS63AB422V7R5ZPVUMRWCJSA34EZI4AC UPQJIFDPMKMUFFUKCDXNB3X64U4TCKLVXQGI6OQW2N7A7RSF54XAC 4VUVVW6JTJU63US5YQPERLU7RREWDJCTGCKICLQVVASIAYQAO4ZQC PCM4JWZATSAX6DLZ55OMMWWFOCISLVKESODZ22OPON4YD65VB5NAC OBB3UZ3TZLWRYZC25EVPNY7BKS7RS3GBF6E3IAZOAAVL6AMB4RBQC H5UZI3YNAPSZIQHLCAU67OKHY2XQJC6MR5AKJNYDKK7L6IZ2IINAC N2NUGNN4E37TNLC6JZE4H4HKJZPNVBV4VYTLXW57AP5BOU4ZK7LQC 2TFAEKOCZGJIVR7QLPUMBNLKJ4RJF4PVOTODRRZEWC6SE3L7H4HAC XD3W2CKGL5MFG6AJMPGALAF4OH5ZXOBHACC3LOTFA72TKLFULA2AC 2DVVKKVA6PJ7VKYLGPQ22AXUB6ZWFMPWB445PRDZJDNLURUFDNDQC FS2ITYYHBLFT66YUC3ENPFYI2HOYHOVEPQIN7NQR6KF5MEK4NKZAC * `edit.draw(state, fg, hide_cursor)` -- call this from `on.draw` to displaythe current editor state on the app window as requested in the call to`edit.initialize_state` that created `state`. `fg` is the color forforeground text (`Text_color` is a good default). Set `hide_cursor` to stopshowing a blinking cursor (usually because you want a `readonly` editor; seebelow).
* `edit.draw(state, fg, hide_cursor, show_line_numbers)` -- call this from`on.draw` to display the current editor state on the app window as requestedin the call to `edit.initialize_state` that created `state`. `fg` is thecolor for foreground text (`Text_color` is a good default). Set`hide_cursor` to stop showing a blinking cursor (usually because you want a`readonly` editor; see below), and `show_line_numbers` to render linenumbers to the left of the editor.