CodeEditSourceEditor icon indicating copy to clipboard operation
CodeEditSourceEditor copied to clipboard

A code editor view written in Swift powered by tree-sitter.

Results 57 CodeEditSourceEditor issues
Sort by recently updated
recently updated
newest added

### Description Tree sitter can give us faster, more accurate bracket highlight info. By finding the beginning or end of a syntax node, we can jump to a spot we...

enhancement

### Description I deleted a bunch of text from a file (select text + backspace), this caused CodeEdit to crash with the following error: ``` Thread 57: Fatal error: Duplicate...

bug

Hello fellow text editing enthusiasts! I was recently exploring some work around simplifying [TextFormation](https://github.com/ChimeHQ/TextFormation). I consider CodeEdit an important client, and I wanted to consider how it was being used...

enhancement

### Description We want to provide users with the ability to show invisible characters. In order to do this, our text view needs to support this. | Invisible | Character...

enhancement

### Description If I have for example a file with 30 lines, if I want to put the pointer on line 20, it places the pointer at the end of...

bug

### Description See CodeEditApp/CodeEdit#1267 When trying to compile the current sources with XCode 14.3 on macOS 13.3.1(a) I get the following compilation error: ``` .../CodeEditTextView/Tests/CodeEditTextViewTests/CodeEditTextViewTests.swift:4:1 Usage of // swiftlint:disable all...

bug

### Description We need a system in place where we can annotate lines with different styles - Neutral, Info, Warning, Error, etc. ## Additional Context This has been implemented in...

enhancement

This is a tracking issue for a few features related to refactoring: - [ ] Rename Symbol - [ ] Extract Method - [ ] Extract Variable - [ ]...

We need verticals lines in the editor indicating indentation level along with the option to turn them on or off. By default it will be off. ![4FEE4D5E-BFFE-42F1-8579-EBEB374A7005](https://user-images.githubusercontent.com/806104/219023551-d98c276c-1a72-4265-a260-21cc5e595fce.png) ![A6A5861D-C255-4F76-839D-5889D542B02C](https://user-images.githubusercontent.com/806104/219023074-c31b5c68-ffab-4a37-940c-d5dc18586dc4.gif) ![BF70E4F2-0A75-40F2-A155-29D9A3C4B2B8](https://user-images.githubusercontent.com/806104/219023381-541d2ec9-6de7-4b40-b525-d2050735f812.png) ![8BBA4512-2E75-477E-8B64-9AC8C1BE85EE](https://user-images.githubusercontent.com/806104/219023385-9fb75802-7af5-46fd-bc1f-105c704a2019.png)

enhancement
editor

## Description The vertical ruler (`NSRulerView`) has a number of requirements that no longer can be efficiently met by STTextView's implementation. The recommendation is for an NSRulerView subclass to instead...