aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/SPBundleHTMLOutputController.m8
-rw-r--r--Source/SPCopyTable.m2
2 files changed, 8 insertions, 2 deletions
diff --git a/Source/SPBundleHTMLOutputController.m b/Source/SPBundleHTMLOutputController.m
index 7cad079b..7bcff455 100644
--- a/Source/SPBundleHTMLOutputController.m
+++ b/Source/SPBundleHTMLOutputController.m
@@ -267,7 +267,13 @@
if([[[request URL] scheme] isEqualToString:@"sequelpro"] && navigationType == WebNavigationTypeLinkClicked) {
[[NSApp delegate] handleEventWithURL:[request URL]];
[listener ignore];
- } else {
+ }
+ // file://a_file_path opens the reveal the file in Finder
+ else if([[[request URL] scheme] isEqualToString:@"file"] && navigationType == WebNavigationTypeLinkClicked) {
+ [[NSWorkspace sharedWorkspace] selectFile:[[[request mainDocumentURL] absoluteString] substringFromIndex:6] inFileViewerRootedAtPath:nil];
+ [listener ignore];
+ }
+ else {
switch(navigationType) {
case WebNavigationTypeLinkClicked:
diff --git a/Source/SPCopyTable.m b/Source/SPCopyTable.m
index 6b9383ab..fad9332e 100644
--- a/Source/SPCopyTable.m
+++ b/Source/SPCopyTable.m
@@ -228,7 +228,7 @@ NSInteger kBlobAsImageFile = 4;
}
}
else
- [result appendFormat:@"%@\t", [cellData description]];
+ [result appendFormat:@"%@\t", [[[cellData description] stringByReplacingOccurrencesOfString:@"\n" withString:@"↵"] stringByReplacingOccurrencesOfString:@"\t" withString:@"⇥"]];
} else {
[result appendString:@"\t"];
}