diff options
| author | Teddy Wing | 2018-10-30 04:03:06 +0100 |
|---|---|---|
| committer | Teddy Wing | 2018-10-30 04:03:06 +0100 |
| commit | d785aad7f3ab68f496205d2dd51aceaf576cee3b (patch) | |
| tree | f03ff439412d5ead822b1aee22264efc4dbc5fe8 | |
| parent | d5fdc640ef95577da72743a431f58a6c93bb31d0 (diff) | |
| download | dome-key-map-d785aad7f3ab68f496205d2dd51aceaf576cee3b.tar.bz2 | |
parser::key_code(): Remove old commented code
This was here for reference. No longer needed.
| -rw-r--r-- | src/parser.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/parser.rs b/src/parser.rs index 62eea12..8dde762 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -470,16 +470,6 @@ where try(string_case_insensitive("Space")) .map(|_| KeyCode::new(autopilot::key::KeyCode::Space)) ) - // string_case_insensitive("Control") - // .map(|_| KeyCode::new(autopilot::key::KeyCode::Control)), - // string_case_insensitive("Alt") - // .map(|_| KeyCode::new(autopilot::key::KeyCode::Alt)), - // string_case_insensitive("Shift") - // .map(|_| KeyCode::new(autopilot::key::KeyCode::Shift)), - // string_case_insensitive("Meta") - // .map(|_| KeyCode::new(autopilot::key::KeyCode::Meta)), - // <lt> - // <Bslash> } fn nx_key<I>() -> impl Parser<Input = I, Output = NXKey> |
