make-selection 1.1.0__tar.gz → 1.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {make_selection-1.1.0 → make_selection-1.1.2}/PKG-INFO +1 -1
- {make_selection-1.1.0 → make_selection-1.1.2}/pyproject.toml +1 -1
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection/__main__.py +2 -2
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection/mappings/mac.py +1 -1
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection.egg-info/PKG-INFO +1 -1
- {make_selection-1.1.0 → make_selection-1.1.2}/LICENSE +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/README.md +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/setup.cfg +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection/__init__.py +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection/key_codes.py +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection/make_selection.py +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection/mappings/windows.py +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection.egg-info/SOURCES.txt +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection.egg-info/dependency_links.txt +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection.egg-info/top_level.txt +0 -0
- {make_selection-1.1.0 → make_selection-1.1.2}/test/test_windows.py +0 -0
|
@@ -17,8 +17,8 @@ def test_keys():
|
|
|
17
17
|
("Press backspace \u232b", (KeyCode.DELETE_CHAR, None)),
|
|
18
18
|
("Press lowercase a", (KeyCode.SEARCHABLE, 'a')),
|
|
19
19
|
("Press uppercase A", (KeyCode.SEARCHABLE, 'A')),
|
|
20
|
-
("Press number
|
|
21
|
-
("Press
|
|
20
|
+
("Press number 1", (KeyCode.SEARCHABLE, '1')),
|
|
21
|
+
("Press exclamation !", (KeyCode.SEARCHABLE, '!')),
|
|
22
22
|
("Press ctl+c", (KeyCode.CANCEL, None)),
|
|
23
23
|
]
|
|
24
24
|
num_errors = 0
|
|
@@ -7,7 +7,7 @@ from ..key_codes import KeyCode
|
|
|
7
7
|
SPECIAL_KEY = None # NOTE: For cli tool
|
|
8
8
|
ARROW_UP = b"\x1b[A"
|
|
9
9
|
ARROW_DOWN = b"\x1b[B"
|
|
10
|
-
OPT_RIGHT_PATTERNS = (b"\x1b\x1b[C", "\x1bf")
|
|
10
|
+
OPT_RIGHT_PATTERNS = (b"\x1b\x1b[C", b"\x1bf")
|
|
11
11
|
CTL_C = b"\x03"
|
|
12
12
|
ENTER_PATTERNS = (b"\r", b"\n", b"\r\n")
|
|
13
13
|
BACKSPACE_PATTERNS = (b"\x08", b"\x7f")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{make_selection-1.1.0 → make_selection-1.1.2}/src/make_selection.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|