pyqt-code-editor 1.0.0__tar.gz → 1.0.4__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.
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/PKG-INFO +3 -2
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/__init__.py +1 -1
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/sigmund/sigmund.py +3 -3
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/sigmund/sigmund_analyst_chat_widget.py +1 -1
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/sigmund/sigmund_analyst_widget.py +28 -10
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/COPYING +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyproject.toml +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/_settings.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/app.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/code_editors.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/languages/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/languages/generic.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/languages/javascript.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/languages/markdown.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/languages/python.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/languages/text.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/editor_panel.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/find_in_files.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/jupyter_console/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/jupyter_console/jupyter_console.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/jupyter_console/jupyter_console_tab.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/jupyter_console/kernel_spec_manager.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/project_explorer.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/settings_panel.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/sigmund/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/sigmund/confirm_run_code_dialog.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/sigmund/editor_workspace.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/workspace_explorer.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/environment_manager.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/auto_indent.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/auto_pair.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/base.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/check.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/comment.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/complete.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/execute.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/file_link.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/highlight_matching_brackets.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/line_number.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/merge_undo_actions.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/python_auto_indent.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/search_replace.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/shortcuts.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/smart_backspace_delete.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/symbols.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/theme.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/widgets/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/zoom.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/sigmund-analyst.png +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/signal_router.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/syntax_highlighters/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/syntax_highlighters/languages/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/syntax_highlighters/languages/generic.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/syntax_highlighters/languages/python.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/syntax_highlighters/syntax_highlighter.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/themes.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/utils/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/utils/languages/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/utils/languages/python/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/utils/languages/python/_auto_indent.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/utils/languages/python/_extract_cells.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/utils/languages/python/_mask_str_in_code.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/watchdog.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/calltip_widget.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/completion_popup.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/dock.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/quick_open_dialog.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/quick_open_file_dialog.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/quick_symbol_dialog.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/search_replace_frame.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/tab_splitter.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/tabbed_editor.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/languages/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/languages/generic.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/languages/python.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/manager.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/process.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/__init__.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/codestral.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/jedi.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/ruff.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/sigmund.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/symbol.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/tree_sitter.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/settings.py +0 -0
- {pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/readme.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
2
|
Name: pyqt_code_editor
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Fully featured code-editor widgets for PyQt
|
|
5
5
|
Keywords: code editor,pyqt,ide
|
|
6
6
|
Author-email: Sebastiaan Mathôt <s.mathot@cogsci.nl>
|
|
@@ -29,6 +29,7 @@ Requires-Dist: tree-sitter-toml
|
|
|
29
29
|
Requires-Dist: tree-sitter-yaml
|
|
30
30
|
Requires-Dist: ruff
|
|
31
31
|
Project-URL: Source, https://github.com/open-cogsci/sigmund-analyst
|
|
32
|
+
Import-Name: pyqt_code_editor
|
|
32
33
|
|
|
33
34
|
# Sigmund Analyst (PyQt Code Editor)
|
|
34
35
|
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/sigmund/sigmund.py
RENAMED
|
@@ -13,10 +13,10 @@ class Sigmund(Dock):
|
|
|
13
13
|
self.sigmund_widget = SigmundAnalystWidget(
|
|
14
14
|
self, editor_panel)
|
|
15
15
|
self.sigmund_widget.setStyleSheet(f'font-size: {settings.font_size}pt')
|
|
16
|
-
self.sigmund_widget.
|
|
17
|
-
if settings.sigmund_link_to_workspace:
|
|
16
|
+
self.sigmund_widget._editor_workspace_manager = EditorWorkspace(editor_panel)
|
|
17
|
+
if settings.sigmund_link_to_workspace:
|
|
18
18
|
self.sigmund_widget.set_workspace_manager(
|
|
19
|
-
self.sigmund_widget.
|
|
19
|
+
self.sigmund_widget._editor_workspace_manager)
|
|
20
20
|
self.setWidget(self.sigmund_widget)
|
|
21
21
|
|
|
22
22
|
def setVisible(self, visible):
|
|
@@ -72,7 +72,7 @@ class SigmundAnalystChatWidget(ChatWidget):
|
|
|
72
72
|
sigmund_widget = self.parent()
|
|
73
73
|
if link_to_workspace:
|
|
74
74
|
sigmund_widget.set_workspace_manager(
|
|
75
|
-
sigmund_widget.
|
|
75
|
+
sigmund_widget._editor_workspace_manager)
|
|
76
76
|
else:
|
|
77
77
|
sigmund_widget.set_workspace_manager(None)
|
|
78
78
|
settings.sigmund_link_to_workspace = link_to_workspace
|
|
@@ -32,17 +32,9 @@ class SigmundAnalystWidget(SigmundWidget):
|
|
|
32
32
|
self._jupyter_console.execution_complete.connect(
|
|
33
33
|
self._handle_execution_result)
|
|
34
34
|
self._editor_panel = editor_panel
|
|
35
|
-
self._transient_settings = {
|
|
36
|
-
'tool_ide_open_file': 'true',
|
|
37
|
-
'tool_ide_execute_code': 'true',
|
|
38
|
-
'tool_ide_inspect_files': 'true',
|
|
39
|
-
'tool_ide_list_files': 'true',
|
|
40
|
-
'tool_ide_write_file': 'true',
|
|
41
|
-
'tool_ide_execute_shell_command': 'true'
|
|
42
|
-
}
|
|
43
35
|
# Store execution results
|
|
44
36
|
self._execution_result = None
|
|
45
|
-
self._execution_loop = None
|
|
37
|
+
self._execution_loop = None
|
|
46
38
|
|
|
47
39
|
@property
|
|
48
40
|
def _working_directory(self):
|
|
@@ -319,7 +311,8 @@ class SigmundAnalystWidget(SigmundWidget):
|
|
|
319
311
|
except OSError as e:
|
|
320
312
|
working_directory_contents = f"(Could not read directory contents: {str(e)})"
|
|
321
313
|
|
|
322
|
-
|
|
314
|
+
if settings.sigmund_link_to_workspace:
|
|
315
|
+
system_prompt = f'''## Working directory
|
|
323
316
|
|
|
324
317
|
IMPORTANT: Do NOT call inspect_files() with {current_path}, because it is already in the workspace.
|
|
325
318
|
|
|
@@ -332,6 +325,31 @@ Overview of working directory:
|
|
|
332
325
|
{working_directory_contents}
|
|
333
326
|
```
|
|
334
327
|
'''
|
|
328
|
+
else:
|
|
329
|
+
system_prompt = f'''## Working directory
|
|
330
|
+
|
|
331
|
+
The working directory is: {working_directory}
|
|
332
|
+
|
|
333
|
+
Overview of working directory:
|
|
334
|
+
|
|
335
|
+
```
|
|
336
|
+
{working_directory_contents}
|
|
337
|
+
```
|
|
338
|
+
'''
|
|
339
|
+
|
|
335
340
|
self._transient_system_prompt = system_prompt
|
|
341
|
+
self._transient_settings = {
|
|
342
|
+
'tool_ide_execute_code': 'true',
|
|
343
|
+
'tool_ide_inspect_files': 'true',
|
|
344
|
+
'tool_ide_list_files': 'true',
|
|
345
|
+
'tool_ide_write_file': 'true',
|
|
346
|
+
'tool_ide_execute_shell_command': 'true'
|
|
347
|
+
}
|
|
348
|
+
# Only if the editor is exposed throught the workspace does it make
|
|
349
|
+
# sense to activate tools that use the workspace
|
|
350
|
+
if settings.sigmund_link_to_workspace:
|
|
351
|
+
self._transient_settings['tool_ide_open_file'] = 'true'
|
|
352
|
+
else:
|
|
353
|
+
self._transient_settings['tool_update_workspace_content'] = 'false'
|
|
336
354
|
super().send_user_message(text, *args, **kwargs)
|
|
337
355
|
self._attachments = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/code_editors.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/languages/generic.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/languages/python.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/code_editors/languages/text.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/editor_panel.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/find_in_files.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/project_explorer.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/settings_panel.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/sigmund/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/components/workspace_explorer.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
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/merge_undo_actions.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/python_auto_indent.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/smart_backspace_delete.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/mixins/widgets/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/syntax_highlighters/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/utils/languages/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/calltip_widget.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/completion_popup.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/quick_open_dialog.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/quick_open_file_dialog.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/quick_symbol_dialog.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/widgets/search_replace_frame.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/languages/__init__.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/languages/generic.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/languages/python.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/__init__.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/codestral.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/sigmund.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/symbol.py
RENAMED
|
File without changes
|
{pyqt_code_editor-1.0.0 → pyqt_code_editor-1.0.4}/pyqt_code_editor/worker/providers/tree_sitter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|