kopipasta 0.32.0__tar.gz → 0.33.0__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.
Potentially problematic release.
This version of kopipasta might be problematic. Click here for more details.
- {kopipasta-0.32.0/kopipasta.egg-info → kopipasta-0.33.0}/PKG-INFO +1 -1
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/tree_selector.py +2 -1
- {kopipasta-0.32.0 → kopipasta-0.33.0/kopipasta.egg-info}/PKG-INFO +1 -1
- {kopipasta-0.32.0 → kopipasta-0.33.0}/setup.py +1 -1
- {kopipasta-0.32.0 → kopipasta-0.33.0}/LICENSE +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/MANIFEST.in +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/README.md +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/__init__.py +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/cache.py +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/file.py +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/import_parser.py +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/main.py +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/prompt.py +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/SOURCES.txt +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/dependency_links.txt +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/entry_points.txt +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/requires.txt +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/top_level.txt +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/requirements.txt +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/setup.cfg +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/tests/test_file.py +0 -0
- {kopipasta-0.32.0 → kopipasta-0.33.0}/tests/test_tree_selector.py +0 -0
|
@@ -150,7 +150,8 @@ class TreeSelector:
|
|
|
150
150
|
_, term_height = shutil.get_terminal_size()
|
|
151
151
|
|
|
152
152
|
# Reserve space for header, help panel, and status
|
|
153
|
-
|
|
153
|
+
reserved_space = 17
|
|
154
|
+
available_height = term_height - reserved_space
|
|
154
155
|
available_height = max(5, available_height) # Minimum height
|
|
155
156
|
|
|
156
157
|
# Flatten tree to get all visible nodes
|
|
@@ -10,7 +10,7 @@ with open("requirements.txt", "r", encoding="utf-8") as f:
|
|
|
10
10
|
|
|
11
11
|
setup(
|
|
12
12
|
name="kopipasta",
|
|
13
|
-
version="0.
|
|
13
|
+
version="0.33.0",
|
|
14
14
|
author="Mikko Korpela",
|
|
15
15
|
author_email="mikko.korpela@gmail.com",
|
|
16
16
|
description="A CLI tool to generate prompts with project structure and file contents",
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|