We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
Actual result: Only line 2 will be highlighted.
Should be: Both lines should be highlighted.
Note: Highlighting is correct after keyboard hides.
The text was updated successfully, but these errors were encountered:
Suggested fix:
-(void)processEditing { // performReplacementsForRange doesn't support multi-line blocks, so using update method //[self performReplacementsForRange:[self editedRange]]; [self update]; [super processEditing]; } /*- (void)performReplacementsForRange:(NSRange)changedRange { NSRange extendedRange = NSUnionRange(changedRange, [[_attributedString string] lineRangeForRange:NSMakeRange(NSMaxRange(changedRange), 0)]); [self applyStylesToRange:extendedRange]; }*/
Sorry, something went wrong.
Suggested fix causes an issue with jumping cursor.
No branches or pull requests
Steps to reproduce:
/* line 1
line2 */
Actual result: Only line 2 will be highlighted.
Should be: Both lines should be highlighted.
Note: Highlighting is correct after keyboard hides.
The text was updated successfully, but these errors were encountered: