Conversation
Add a command palette, quick open (go to file), go to symbol, a document outline panel and a TODO/FIXME task panel; code folding and bookmarks in the gutter; cursor navigation history; occurrence highlighting; and multi-file session restore. Add editor text operations via the Text menu and shortcuts: line operations (sort/dedup/reverse/join/delete/align), case and naming-style conversion, encode/decode (Base64/URL/HTML/JSON), number base and increment/decrement, in-file rename, smart selection, trailing-whitespace trim, and indentation conversion. Each pure-logic core is unit-tested. Fix a pre-existing console QProcess teardown that fired timers on a deleted process and left orphaned shells.
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 1444 |
| Duplication | 76 |
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
- add .sonarcloud.properties classifying test/ as tests so test-code duplication no longer counts toward the new-code duplication gate (mirrors the sibling project's Sonar config) - encode_decode: catch only ValueError, dropping subclasses already covered (S5713); remove now-unused binascii import - todo_scanner: use the group-free never-matching pattern \b\B instead of the empty group (?!) (S6331) - outline/session tests: silence the false-positive Pylint no-value-for-parameter on the deliberate Cls.__new__(Cls) bare-instance idiom
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Adds editor features, each with a Qt-free logic core that is unit-tested:
Also fixes a pre-existing console QProcess teardown that fired timers on a deleted process and left orphaned shells.
ruff is clean and the full test suite passes.