Skip to content

Commit

Permalink
Option sucks, Shift is better
Browse files Browse the repository at this point in the history
  • Loading branch information
chendo committed Apr 2, 2011
1 parent 9857a31 commit 7a1dd02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PTYTextView.m
Original file line number Diff line number Diff line change
Expand Up @@ -2224,7 +2224,7 @@ - (void)mouseUp:(NSEvent *)event
// Command click in place.
NSString *url = [self _getURLForX:x y:y];

if (url &&[event modifierFlags] & NSAlternateKeyMask) {
if (url &&[event modifierFlags] & NSShiftKeyMask) {
NSString *fullPath = [trouter getFullPath:url
workingDirectory:[self getWorkingDirectoryAtLine:y + 1]
lineNumber:nil];
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ order)
MacVim/Textmate/BBedit, otherwise opens with associated program.
* Command + Drag gives you a file handle you can drop on any app that
supports drag and drop (pretty much everything).
* Command + Option + Click on a directory does `cd <path>; ls`
* Command + Shift + Click on a directory does `cd <path>; ls`

## Customisation
If you don't use MacVim, Textmate or BBedit or if you want write
Expand Down

0 comments on commit 7a1dd02

Please sign in to comment.