!7 cmodule ELESystemWindows > ELESuggester { void init { super.init(); processInitialInput = false; dm_vmBus_onMessage eleSameInputAgain(s -> process((S) s)); } void process_impl(S s) enter { if "system windows" { showSuggestions(s, map(dm_windows(), w -> "[" + w.windowIdentity + "] " + w.windowTitle)); dm_popOutModule(module()); assertEquals(dm_current_mandatory(), module()); } } }