Well, it's late, but I will send my answer in case some other poor soul struggles with this.
I have been struggling with this all day and finally found the answer to cocoabuilder
So what I did, in my text view delegate:
- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)commandSelector { if (commandSelector == @selector(insertTab:)) { [aTextView insertText:@" "]; return YES; } return NO; }
Everything seems to be fine.
Cancel also works.
source share