()
| 36 | // 3. If the very-next keystroke is Escape, then drop immediately into insert mode. |
| 37 | // |
| 38 | const newPostFindMode = function () { |
| 39 | if (!document.activeElement || !DomUtils.isEditable(document.activeElement)) { |
| 40 | return; |
| 41 | } |
| 42 | return new PostFindMode(); |
| 43 | }; |
| 44 | |
| 45 | class PostFindMode extends SuppressPrintable { |
| 46 | constructor() { |
no outgoing calls
no test coverage detected