holtwick/HOStringSense-for-Xcode

Popover closes while editing

Closed this issue · 2 comments

Since a short time I'm unable to use the plugin correctly. When I open the popup everything is fine, but when I start to typ (even 1 character) something it automatically closes.

I've no idea why this happens. Tried reinstalling the plugin, reopen XCode enz. to no avail however...

Also having this issue.

Also had this problem. Fixed it by removing surrounding quotes in stringDidChange: method in HOStringHelper.m:

            [self.textView insertText:[NSString stringWithFormat:@"\"%@\"", result]
                     replacementRange:self.selectedStringRange];
            [self.textView insertText:[NSString stringWithFormat:@"%@", result]
                     replacementRange:self.selectedStringRange];