codetoprompt 0.2.2__tar.gz → 0.2.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.
- {codetoprompt-0.2.2/codetoprompt.egg-info → codetoprompt-0.2.3}/PKG-INFO +1 -1
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt/cli.py +4 -1
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt/version.py +1 -1
- {codetoprompt-0.2.2 → codetoprompt-0.2.3/codetoprompt.egg-info}/PKG-INFO +1 -1
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/pyproject.toml +1 -1
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/LICENSE +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/MANIFEST.in +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/README.md +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt/__init__.py +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt/core.py +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt/utils.py +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt.egg-info/SOURCES.txt +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt.egg-info/dependency_links.txt +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt.egg-info/entry_points.txt +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt.egg-info/requires.txt +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/codetoprompt.egg-info/top_level.txt +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/setup.cfg +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/tests/test_cli.py +0 -0
- {codetoprompt-0.2.2 → codetoprompt-0.2.3}/tests/test_core.py +0 -0
|
@@ -72,7 +72,7 @@ Exclude Patterns: []
|
|
|
72
72
|
Respect .gitignore: {args.respect_gitignore}
|
|
73
73
|
Show Line Numbers: {args.show_line_numbers}
|
|
74
74
|
Max Tokens: Unlimited
|
|
75
|
-
Copy to Clipboard:
|
|
75
|
+
Copy to Clipboard: True""",
|
|
76
76
|
title="CodeToPrompt",
|
|
77
77
|
border_style="blue",
|
|
78
78
|
)
|
|
@@ -82,6 +82,8 @@ Copy to Clipboard: False""",
|
|
|
82
82
|
with Progress(
|
|
83
83
|
SpinnerColumn(),
|
|
84
84
|
TextColumn("[progress.description]{task.description}"),
|
|
85
|
+
BarColumn(),
|
|
86
|
+
TimeElapsedColumn(),
|
|
85
87
|
console=console,
|
|
86
88
|
) as progress:
|
|
87
89
|
task = progress.add_task("Processing files...", total=None)
|
|
@@ -91,6 +93,7 @@ Copy to Clipboard: False""",
|
|
|
91
93
|
respect_gitignore=args.respect_gitignore,
|
|
92
94
|
output_file=args.output,
|
|
93
95
|
count_tokens=args.count_tokens,
|
|
96
|
+
copy_to_clipboard=True,
|
|
94
97
|
)
|
|
95
98
|
return 0
|
|
96
99
|
except Exception as e:
|
|
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
|