CYRTextView icon indicating copy to clipboard operation
CYRTextView copied to clipboard

CYRTextView is a UITextView subclass that implements a variety of features that are relevant to a syntax or code text view.

Results 18 CYRTextView issues
Sort by recently updated
recently updated
newest added

If I press enter to go to a new line, a new line is not created until I begin typing on that line. Also, when I press enter, before and...

I noticed this in my own code but also in the demo. Everything works fine for small snippets but a largish file, say 100+ lines of code, allocates more and...

When the user selects a line, or tries to edit/delete text, I check the current line against a rule of mine, and use the textView delegate method shouldChangeTextInRange (returning false)...

Support for right-to-left languages should be added both on CYRTextView and on CYRLayoutManager.

- (void)keyboardWillShow:(NSNotification*)aNotification will be called several times.

Steps to reproduce: 1. Add regexp pattern for multi-line construction (for example, /\* ... */). 2. Type /\* line 1 line2 */ Actual result: Only line 2 will be highlighted....

Steps to reproduce: 1. Remove example application from the device or simulator if you have it. 2. Run example application from CYRTextView package. 3. Tap on the end of the...

The following code is obsolete regarding three commended lines: ``` - (void)handleTextViewDidChangeNotification:(NSNotification *)notification { if (notification.object == self) { CGRect line = [self caretRectForPosition: self.selectedTextRange.start]; CGFloat overflow = line.origin.y +...

Property lineCursorEnabled = NO always selects the first line. It should not select any line.