Coverage for lino/core/keyboard.py : 82%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# -*- coding: UTF-8 -*- # Copyright 2009-2014 Luc Saffre # License: BSD (see file COPYING for details)
This defines the :class:`Hotkey` class and some keystrokes.
The system is not yet heavily used.
"""
"Represents a combination of keystrokes."
for n in self.inheritable: if not n in kw: kw[n] = getattr(self, n) return Hotkey(**kw)
# ExtJS src/core/EventManager-more.js
|