kbvm 0.1.5

An implementation of the XKB specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
macro_rules! token {
    ($($tt:tt)*) => {
        $crate::xkb::compose::token::Token::Punctuation(punctuation!($($tt)*))
    };
}

macro_rules! punctuation {
    (:) => {
        $crate::xkb::compose::token::Punctuation::Colon
    };
    (~) => {
        $crate::xkb::compose::token::Punctuation::Tilde
    };
    (!) => {
        $crate::xkb::compose::token::Punctuation::Exclam
    };
}