make-selection 1.0.9__tar.gz → 1.0.10__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.0.9 → make_selection-1.0.10}/PKG-INFO +1 -1
- {make_selection-1.0.9 → make_selection-1.0.10}/pyproject.toml +1 -1
- {make_selection-1.0.9 → make_selection-1.0.10}/src/make_selection/make_selection.py +1 -1
- {make_selection-1.0.9 → make_selection-1.0.10}/src/make_selection.egg-info/PKG-INFO +1 -1
- {make_selection-1.0.9 → make_selection-1.0.10}/src/make_selection.egg-info/SOURCES.txt +2 -2
- {make_selection-1.0.9 → make_selection-1.0.10}/LICENSE +0 -0
- {make_selection-1.0.9 → make_selection-1.0.10}/README.md +0 -0
- {make_selection-1.0.9 → make_selection-1.0.10}/setup.cfg +0 -0
- {make_selection-1.0.9 → make_selection-1.0.10}/src/make_selection/__init__.py +0 -0
- {make_selection-1.0.9 → make_selection-1.0.10}/src/make_selection/key_codes.py +0 -0
- {make_selection-1.0.9/src/make_selection/mappings → make_selection-1.0.10/src/make_selection}/mac.py +0 -0
- {make_selection-1.0.9/src/make_selection/mappings → make_selection-1.0.10/src/make_selection}/windows.py +0 -0
- {make_selection-1.0.9 → make_selection-1.0.10}/src/make_selection.egg-info/dependency_links.txt +0 -0
- {make_selection-1.0.9 → make_selection-1.0.10}/src/make_selection.egg-info/top_level.txt +0 -0
- {make_selection-1.0.9 → make_selection-1.0.10}/test/test_windows.py +0 -0
|
@@ -8,7 +8,7 @@ Ansi escape codes are used as described here: https://gist.github.com/fnky/45871
|
|
|
8
8
|
# TODO: multi_select: TAB switches to delete mode.
|
|
9
9
|
import sys
|
|
10
10
|
if sys.platform == "win32":
|
|
11
|
-
from
|
|
11
|
+
from windows import getChar
|
|
12
12
|
multi_select_modifier_string = "Ctl"
|
|
13
13
|
elif sys.platform == "darwin":
|
|
14
14
|
from mappings.mac import getChar
|
|
@@ -3,11 +3,11 @@ README.md
|
|
|
3
3
|
pyproject.toml
|
|
4
4
|
src/make_selection/__init__.py
|
|
5
5
|
src/make_selection/key_codes.py
|
|
6
|
+
src/make_selection/mac.py
|
|
6
7
|
src/make_selection/make_selection.py
|
|
8
|
+
src/make_selection/windows.py
|
|
7
9
|
src/make_selection.egg-info/PKG-INFO
|
|
8
10
|
src/make_selection.egg-info/SOURCES.txt
|
|
9
11
|
src/make_selection.egg-info/dependency_links.txt
|
|
10
12
|
src/make_selection.egg-info/top_level.txt
|
|
11
|
-
src/make_selection/mappings/mac.py
|
|
12
|
-
src/make_selection/mappings/windows.py
|
|
13
13
|
test/test_windows.py
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{make_selection-1.0.9/src/make_selection/mappings → make_selection-1.0.10/src/make_selection}/mac.py
RENAMED
|
File without changes
|
|
File without changes
|
{make_selection-1.0.9 → make_selection-1.0.10}/src/make_selection.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|