notispf 1.0.2__tar.gz → 1.0.3__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.
Files changed (28) hide show
  1. {notispf-1.0.2 → notispf-1.0.3}/PKG-INFO +1 -1
  2. notispf-1.0.3/notispf/__init__.py +1 -0
  3. {notispf-1.0.2 → notispf-1.0.3}/notispf/app.py +1 -1
  4. {notispf-1.0.2 → notispf-1.0.3}/notispf/display.py +2 -2
  5. {notispf-1.0.2 → notispf-1.0.3}/notispf.egg-info/PKG-INFO +1 -1
  6. {notispf-1.0.2 → notispf-1.0.3}/pyproject.toml +1 -1
  7. notispf-1.0.2/notispf/__init__.py +0 -1
  8. {notispf-1.0.2 → notispf-1.0.3}/README.md +0 -0
  9. {notispf-1.0.2 → notispf-1.0.3}/notispf/__main__.py +0 -0
  10. {notispf-1.0.2 → notispf-1.0.3}/notispf/buffer.py +0 -0
  11. {notispf-1.0.2 → notispf-1.0.3}/notispf/commands/__init__.py +0 -0
  12. {notispf-1.0.2 → notispf-1.0.3}/notispf/commands/block_cmds.py +0 -0
  13. {notispf-1.0.2 → notispf-1.0.3}/notispf/commands/exclude_cmds.py +0 -0
  14. {notispf-1.0.2 → notispf-1.0.3}/notispf/commands/line_cmds.py +0 -0
  15. {notispf-1.0.2 → notispf-1.0.3}/notispf/commands/registry.py +0 -0
  16. {notispf-1.0.2 → notispf-1.0.3}/notispf/find_change.py +0 -0
  17. {notispf-1.0.2 → notispf-1.0.3}/notispf/prefix.py +0 -0
  18. {notispf-1.0.2 → notispf-1.0.3}/notispf.egg-info/SOURCES.txt +0 -0
  19. {notispf-1.0.2 → notispf-1.0.3}/notispf.egg-info/dependency_links.txt +0 -0
  20. {notispf-1.0.2 → notispf-1.0.3}/notispf.egg-info/entry_points.txt +0 -0
  21. {notispf-1.0.2 → notispf-1.0.3}/notispf.egg-info/top_level.txt +0 -0
  22. {notispf-1.0.2 → notispf-1.0.3}/setup.cfg +0 -0
  23. {notispf-1.0.2 → notispf-1.0.3}/tests/test_buffer.py +0 -0
  24. {notispf-1.0.2 → notispf-1.0.3}/tests/test_exclude.py +0 -0
  25. {notispf-1.0.2 → notispf-1.0.3}/tests/test_find_change.py +0 -0
  26. {notispf-1.0.2 → notispf-1.0.3}/tests/test_line_cmds.py +0 -0
  27. {notispf-1.0.2 → notispf-1.0.3}/tests/test_overlay.py +0 -0
  28. {notispf-1.0.2 → notispf-1.0.3}/tests/test_prefix.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: notispf
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A terminal text editor inspired by the ISPF editor from z/OS
5
5
  Author-email: mrthock <m64357@gmail.com>
6
6
  License-Expression: MIT
@@ -0,0 +1 @@
1
+ __version__ = "1.0.3"
@@ -121,7 +121,7 @@ class App:
121
121
  self._scroll_col_to_cursor()
122
122
 
123
123
  # Enter command mode
124
- elif key == ord('=') or key == curses.KEY_F6:
124
+ elif key == curses.KEY_F6:
125
125
  vs.command_mode = True
126
126
  vs.command_input = ""
127
127
  vs.message = ""
@@ -270,7 +270,7 @@ class Display:
270
270
  _HELP_LINES = [
271
271
  " notispf — Help Press any key to exit",
272
272
  "",
273
- " COMMAND LINE (press = or F6 to open)",
273
+ " COMMAND LINE (press F6 to open)",
274
274
  " " + "─" * 60,
275
275
  " SAVE Save file",
276
276
  " FILE Save and exit",
@@ -305,7 +305,7 @@ class Display:
305
305
  " FUNCTION KEYS",
306
306
  " " + "─" * 60,
307
307
  " F3 Save and exit F5 Save",
308
- " F6 / = Open command line F12 Exit without saving",
308
+ " F6 Open command line F12 Exit without saving",
309
309
  " F7 / PgUp Scroll up F8/PgDn Scroll down",
310
310
  " F10 Scroll left F11 Scroll right",
311
311
  " Tab Move to prefix area",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: notispf
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A terminal text editor inspired by the ISPF editor from z/OS
5
5
  Author-email: mrthock <m64357@gmail.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "notispf"
7
- version = "1.0.2"
7
+ version = "1.0.3"
8
8
  description = "A terminal text editor inspired by the ISPF editor from z/OS"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1 +0,0 @@
1
- __version__ = "1.0.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes