code-puppy 0.0.62__tar.gz → 0.0.63__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.
- {code_puppy-0.0.62 → code_puppy-0.0.63}/PKG-INFO +1 -1
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/tools/ts_code_map.py +0 -8
- {code_puppy-0.0.62 → code_puppy-0.0.63}/pyproject.toml +1 -1
- {code_puppy-0.0.62 → code_puppy-0.0.63}/.gitignore +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/LICENSE +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/README.md +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/__init__.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/agent.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/agent_prompts.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/command_line/__init__.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/command_line/file_path_completion.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/command_line/meta_command_handler.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/command_line/model_picker_completion.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/command_line/utils.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/config.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/main.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/model_factory.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/models.json +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/session_memory.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/tools/__init__.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/tools/command_runner.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/tools/common.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/tools/file_modifications.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/tools/file_operations.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/tools/web_search.py +0 -0
- {code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/version_checker.py +0 -0
|
@@ -279,14 +279,6 @@ LANGS = {
|
|
|
279
279
|
"function_definition": partial(_f("function {name}()"), style="green")
|
|
280
280
|
},
|
|
281
281
|
},
|
|
282
|
-
".css": {
|
|
283
|
-
"lang": "css",
|
|
284
|
-
"name_field": "name",
|
|
285
|
-
"nodes": {
|
|
286
|
-
"class_selector": partial(_f(".{name}"), style="yellow"),
|
|
287
|
-
"id_selector": partial(_f("#{name}"), style="yellow"),
|
|
288
|
-
},
|
|
289
|
-
},
|
|
290
282
|
}
|
|
291
283
|
|
|
292
284
|
# Cache parsers so we don’t re-create them file-after-file
|
|
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
|
{code_puppy-0.0.62 → code_puppy-0.0.63}/code_puppy/command_line/prompt_toolkit_completion.py
RENAMED
|
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
|