##// END OF EJS Templates
crecord: enable search hotkeys (issue6834)...
crecord: enable search hotkeys (issue6834) The keys I chose here should be similar to less/vim keybindings, which should fit the overall keybinding theme of crecord.

File last commit:

r51654:2c34c9b6 default
r52280:0e063a9b default
Show More
_types.py
6 lines | 126 B | text/x-python | PythonLexer
Raphaël Gomès
thirdparty: vendor tomli...
r51654 from typing import Any, Callable, Tuple
# Type annotations
ParseFloat = Callable[[str], Any]
Key = Tuple[str, ...]
Pos = int