pyqt-code-editor 0.0.35__tar.gz → 0.0.37__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-0.0.35 → pyqt_code_editor-0.0.37}/PKG-INFO +1 -1
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/__init__.py +1 -1
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/languages/python.py +1 -1
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/search_replace_frame.py +41 -19
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/COPYING +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyproject.toml +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/_settings.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/app.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/code_editors.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/languages/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/languages/generic.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/languages/markdown.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/languages/text.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/editor_panel.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/find_in_files.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/jupyter_console.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/project_explorer.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/settings_panel.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/sigmund.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/workspace_explorer.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/environment_manager.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/auto_indent.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/auto_pair.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/base.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/check.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/comment.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/complete.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/execute.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/file_link.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/line_number.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/python_auto_indent.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/search_replace.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/shortcuts.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/smart_backspace_delete.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/symbols.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/theme.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/widgets/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/zoom.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/sigmund-analyst.png +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/signal_router.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/syntax_highlighters/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/syntax_highlighters/languages/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/syntax_highlighters/languages/generic.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/syntax_highlighters/languages/python.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/syntax_highlighters/syntax_highlighter.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/themes.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/utils/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/utils/languages/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/utils/languages/python/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/utils/languages/python/_auto_indent.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/utils/languages/python/_extract_cells.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/utils/languages/python/_mask_str_in_code.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/watchdog.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/calltip_widget.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/completion_popup.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/dock.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/quick_open_dialog.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/quick_open_file_dialog.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/quick_symbol_dialog.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/tab_splitter.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/tabbed_editor.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/languages/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/languages/generic.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/languages/python.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/manager.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/process.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/__init__.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/codestral.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/jedi.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/ruff.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/sigmund.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/symbol.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/settings.py +0 -0
- {pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/readme.md +0 -0
|
@@ -7,7 +7,7 @@ from pyqt_code_editor.mixins import Complete, PythonAutoIndent, \
|
|
|
7
7
|
|
|
8
8
|
class Editor(LineNumber, Zoom, SmartBackspaceDelete, PythonAutoPair, Complete,
|
|
9
9
|
Comment, PythonAutoIndent, SearchReplace, FileLink, Execute,
|
|
10
|
-
Theme, Shortcuts, Symbols, Base,
|
|
10
|
+
Check, Theme, Shortcuts, Symbols, Base,
|
|
11
11
|
QPlainTextEdit):
|
|
12
12
|
|
|
13
13
|
code_editor_language = 'python'
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/search_replace_frame.py
RENAMED
|
@@ -3,9 +3,10 @@ from qtpy.QtWidgets import (
|
|
|
3
3
|
QLineEdit, QPushButton, QCheckBox, QLabel
|
|
4
4
|
)
|
|
5
5
|
from qtpy.QtCore import Qt, Signal
|
|
6
|
+
from qtpy.QtGui import QKeyEvent
|
|
6
7
|
from .. import settings
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
|
|
9
10
|
class SearchReplaceFrame(QFrame):
|
|
10
11
|
"""
|
|
11
12
|
A small widget containing 'Find' and optionally 'Replace' fields,
|
|
@@ -16,10 +17,10 @@ class SearchReplaceFrame(QFrame):
|
|
|
16
17
|
findPrevRequested = Signal()
|
|
17
18
|
replaceOneRequested = Signal()
|
|
18
19
|
replaceAllRequested = Signal()
|
|
19
|
-
|
|
20
|
+
|
|
20
21
|
def __init__(self, parent=None):
|
|
21
22
|
super().__init__(parent)
|
|
22
|
-
|
|
23
|
+
|
|
23
24
|
self.setFrameShape(QFrame.StyledPanel)
|
|
24
25
|
self.setFrameShadow(QFrame.Raised)
|
|
25
26
|
editor = parent
|
|
@@ -51,14 +52,14 @@ class SearchReplaceFrame(QFrame):
|
|
|
51
52
|
}}
|
|
52
53
|
''')
|
|
53
54
|
self.setWindowFlags(Qt.SubWindow | Qt.FramelessWindowHint)
|
|
54
|
-
|
|
55
|
+
|
|
55
56
|
# Layout
|
|
56
57
|
layout = QVBoxLayout(self)
|
|
57
58
|
layout.setContentsMargins(5, 5, 5, 5)
|
|
58
|
-
|
|
59
|
+
|
|
59
60
|
# Find row
|
|
60
61
|
findRow = QHBoxLayout()
|
|
61
|
-
|
|
62
|
+
|
|
62
63
|
self.findLabel = QLabel("Find:", self)
|
|
63
64
|
self.matchCountLabel = QLabel("0 of 0", self)
|
|
64
65
|
self.findEdit = QLineEdit(self)
|
|
@@ -68,10 +69,10 @@ class SearchReplaceFrame(QFrame):
|
|
|
68
69
|
self.regexBox.setToolTip("Use Regular Expressions")
|
|
69
70
|
self.wholeWordBox = QCheckBox("\\b", self)
|
|
70
71
|
self.wholeWordBox.setToolTip("Match Whole Word")
|
|
71
|
-
|
|
72
|
+
|
|
72
73
|
self.findNextBtn = QPushButton("Next", self)
|
|
73
74
|
self.findPrevBtn = QPushButton("Prev", self)
|
|
74
|
-
|
|
75
|
+
|
|
75
76
|
findRow.addWidget(self.findLabel)
|
|
76
77
|
findRow.addWidget(self.findEdit)
|
|
77
78
|
findRow.addWidget(self.matchCountLabel)
|
|
@@ -80,34 +81,56 @@ class SearchReplaceFrame(QFrame):
|
|
|
80
81
|
findRow.addWidget(self.wholeWordBox)
|
|
81
82
|
findRow.addWidget(self.findNextBtn)
|
|
82
83
|
findRow.addWidget(self.findPrevBtn)
|
|
83
|
-
|
|
84
|
+
|
|
84
85
|
layout.addLayout(findRow)
|
|
85
|
-
|
|
86
|
+
|
|
86
87
|
# Replace row
|
|
87
88
|
replaceRow = QHBoxLayout()
|
|
88
89
|
self.replaceLabel = QLabel("Replace:", self)
|
|
89
90
|
self.replaceEdit = QLineEdit(self)
|
|
90
91
|
self.replaceBtn = QPushButton("Replace", self)
|
|
91
92
|
self.replaceAllBtn = QPushButton("Replace All", self)
|
|
92
|
-
|
|
93
|
+
|
|
93
94
|
replaceRow.addWidget(self.replaceLabel)
|
|
94
95
|
replaceRow.addWidget(self.replaceEdit)
|
|
95
96
|
replaceRow.addWidget(self.replaceBtn)
|
|
96
97
|
replaceRow.addWidget(self.replaceAllBtn)
|
|
97
|
-
|
|
98
|
+
|
|
98
99
|
layout.addLayout(replaceRow)
|
|
99
|
-
|
|
100
|
+
|
|
100
101
|
self.replaceRowWidget = replaceRow # Keep reference to manage visibility
|
|
101
|
-
|
|
102
|
+
|
|
102
103
|
# Connections
|
|
103
104
|
self.findNextBtn.clicked.connect(self.findNextRequested)
|
|
104
105
|
self.findPrevBtn.clicked.connect(self.findPrevRequested)
|
|
105
106
|
self.replaceBtn.clicked.connect(self.replaceOneRequested)
|
|
106
107
|
self.replaceAllBtn.clicked.connect(self.replaceAllRequested)
|
|
107
|
-
|
|
108
|
+
|
|
109
|
+
# Install event filter to handle Shift+Enter
|
|
110
|
+
self.findEdit.installEventFilter(self)
|
|
111
|
+
self.replaceEdit.installEventFilter(self)
|
|
112
|
+
|
|
108
113
|
# Default: searching only, so hide the "replace" row
|
|
109
114
|
self.showSearchOnly()
|
|
110
|
-
|
|
115
|
+
|
|
116
|
+
def eventFilter(self, obj, event):
|
|
117
|
+
"""Handle key events for find and replace fields"""
|
|
118
|
+
if event.type() == QKeyEvent.KeyPress:
|
|
119
|
+
if event.key() == Qt.Key_Return or event.key() == Qt.Key_Enter:
|
|
120
|
+
if event.modifiers() & Qt.ShiftModifier:
|
|
121
|
+
# Shift+Enter triggers find previous
|
|
122
|
+
self.findPrevRequested.emit()
|
|
123
|
+
return True
|
|
124
|
+
elif obj == self.findEdit:
|
|
125
|
+
# Enter in find field triggers find next
|
|
126
|
+
self.findNextRequested.emit()
|
|
127
|
+
return True
|
|
128
|
+
elif obj == self.replaceEdit:
|
|
129
|
+
# Enter in replace field triggers replace
|
|
130
|
+
self.replaceOneRequested.emit()
|
|
131
|
+
return True
|
|
132
|
+
return super().eventFilter(obj, event)
|
|
133
|
+
|
|
111
134
|
def showSearchOnly(self):
|
|
112
135
|
# Hide replace UI
|
|
113
136
|
self.replaceLabel.setVisible(False)
|
|
@@ -116,7 +139,7 @@ class SearchReplaceFrame(QFrame):
|
|
|
116
139
|
self.replaceAllBtn.setVisible(False)
|
|
117
140
|
self.adjustSize()
|
|
118
141
|
self.resize(self.sizeHint())
|
|
119
|
-
|
|
142
|
+
|
|
120
143
|
def showSearchReplace(self):
|
|
121
144
|
# Show replace UI
|
|
122
145
|
self.replaceLabel.setVisible(True)
|
|
@@ -124,5 +147,4 @@ class SearchReplaceFrame(QFrame):
|
|
|
124
147
|
self.replaceBtn.setVisible(True)
|
|
125
148
|
self.replaceAllBtn.setVisible(True)
|
|
126
149
|
self.adjustSize()
|
|
127
|
-
self.resize(self.sizeHint())
|
|
128
|
-
|
|
150
|
+
self.resize(self.sizeHint())
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/__init__.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/code_editors.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/code_editors/languages/text.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/editor_panel.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/find_in_files.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/jupyter_console.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/project_explorer.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/components/settings_panel.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
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/python_auto_indent.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/search_replace.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/mixins/widgets/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/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-0.0.35 → pyqt_code_editor-0.0.37}/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-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/calltip_widget.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/completion_popup.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/quick_open_dialog.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/quick_symbol_dialog.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/tab_splitter.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/widgets/tabbed_editor.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/languages/__init__.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/languages/generic.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/languages/python.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/__init__.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/codestral.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/jedi.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/ruff.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/sigmund.py
RENAMED
|
File without changes
|
{pyqt_code_editor-0.0.35 → pyqt_code_editor-0.0.37}/pyqt_code_editor/worker/providers/symbol.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|