Esempio n. 1
0
            public void EscapeLessThanLiteral()
            {
                var set = KeyInputSet.NewTwoKeyInputs(
                    KeyInputUtil.CharToKeyInput('\\'),
                    KeyInputUtil.VimKeyToKeyInput(VimKey.Home));

                AssertMany(@"\<home>", set);
            }
Esempio n. 2
0
 private KeyInputSet CreateTwo(char c1, char c2)
 {
     return(KeyInputSet.NewTwoKeyInputs(KeyInputUtil.CharToKeyInput(c1), KeyInputUtil.CharToKeyInput(c2)));
 }