From 553d81071d57d94025124d5e97942ea0aea3d66a Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Fri, 14 Aug 2020 11:58:29 -0400 Subject: [PATCH] Return entire string for NSTextView in stringAtIndex:... --- Source/NSTextView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSTextView.m b/Source/NSTextView.m index 70d5afe64..1a993c856 100644 --- a/Source/NSTextView.m +++ b/Source/NSTextView.m @@ -6094,7 +6094,7 @@ configuation! */ effectiveRange: (NSRangePointer)outRange endsWithSearchBoundary: (BOOL *)outFlag { - return nil; + return [self string]; } - (NSUInteger) stringLength