We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6427df commit 31bae3dCopy full SHA for 31bae3d
Readme.md
@@ -77,7 +77,7 @@ This will produce an executable file at `target/release/bluetui` that you can co
77
78
`s`: Start/Stop scanning.
79
80
-`ctrl+c` or `q`: Quit the app.
+`ctrl+c` or `q` or `<Esc>`: Quit the app.
81
82
### Adapters
83
src/handler.rs
@@ -264,7 +264,7 @@ pub async fn handle_key_events(
264
app.quit();
265
}
266
267
- KeyCode::Char('q') => {
+ KeyCode::Char('q') | KeyCode::Esc => {
268
269
270
0 commit comments