You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xremap/src/client/null_client.rs

17 lines
291 B
Rust

use crate::client::Client;
pub struct NullClient;
impl Client for NullClient {
fn supported(&mut self) -> bool {
false
}
fn current_window(&mut self) -> Option<String> {
None
}
fn current_application(&mut self) -> Option<String> {
None
}
}