keymaps 1.2.0

A rust crate which provides a standardized encoding for key codes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// keymaps - A rust crate which provides a standardized encoding for key codes
//
// Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
// SPDX-License-Identifier: LGPL-3.0-or-later
//
// This file is part of the keymaps crate.
//
// You should have received a copy of the License along with this program.
// If not, see <https://www.gnu.org/licenses/lgpl-3.0.txt>.

//! Take a look at [`map_tree`] to see the main data structure the [`map_tree::Trie`].

pub mod error;
pub mod key_repr;
pub mod map_tree;