String as Autotype command results in only one Paste command - fixed #338

Signed-off-by: michael starke <michael.starke@hicknhack-software.com>
This commit is contained in:
michael starke
2015-08-07 17:24:04 +02:00
parent bc458506e5
commit 70ceb268ad
4 changed files with 39 additions and 22 deletions

View File

@@ -47,7 +47,7 @@
}
- (BOOL)isValid {
- (BOOL)valid {
return (self.normalizedCommand != nil);
}
@@ -58,4 +58,13 @@
return _evaluatedCommand;
}
- (NSString *)description {
return [NSString stringWithFormat:@"command:%@\nnormalized:%@\nevaluated:%@\nentry.title:%@\nentry.uuid:%@\n",
self.command,
self.normalizedCommand,
self.evaluatedCommand,
self.entry.title,
self.entry.uuid.UUIDString];
}
@end