Skip to content

Instantly share code, notes, and snippets.

@pddg
Created February 2, 2019 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pddg/67eca68fc58336d55ff9834d0a2b0e7f to your computer and use it in GitHub Desktop.
Save pddg/67eca68fc58336d55ff9834d0a2b0e7f to your computer and use it in GitHub Desktop.
config file for xkeysnail
# -*- coding: utf-8 -*-
import re
from xkeysnail.transform import *
define_keymap(None, {
K('C-h'): Key.LEFT,
K('C-j'): Key.DOWN,
K('C-k'): Key.UP,
K('C-l'): Key.RIGHT,
}, "Vim-like cursor")
define_multipurpose_modmap({
# SandS
Key.SPACE: [Key.SPACE, Key.LEFT_SHIFT],
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment