This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Union, List, TypedDict | |
import unittest | |
type Filenames = List[str] | |
type Action = TypedDict('Action', { | |
'added': Filenames, | |
'removed': Filenames, | |
}) | |
def get_relevant_changes(list_of_actions: List[Action]) -> Action: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defcfg | |
process-unmapped-keys yes | |
macos-dev-names-include ( | |
"Apple Internal Keyboard / Trackpad" | |
"Bluetooth USB Host Controller" | |
) | |
concurrent-tap-hold yes | |
) | |
(defsrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unmap h | |
unmap H | |
map a enterInsertMode | |
map i scrollUp | |
map k scrollDown | |
map j scrollLeft | |
map J goBack | |
map s scrollDown | |
map w scrollUp | |
map e scrollPageUp |
OlderNewer