Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nolanbconaway/atom-reveal-in-finder
Map a key binding to reveal the current file in finder
https://github.com/nolanbconaway/atom-reveal-in-finder
atom atom-plugin
Last synced: 22 days ago
JSON representation
Map a key binding to reveal the current file in finder
- Host: GitHub
- URL: https://github.com/nolanbconaway/atom-reveal-in-finder
- Owner: nolanbconaway
- Created: 2018-08-23T16:20:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-24T00:22:09.000Z (over 6 years ago)
- Last Synced: 2024-12-01T12:15:25.601Z (about 2 months ago)
- Topics: atom, atom-plugin
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Reveal In Finder
This is a little hack that I did so I could map a key binding to reveal
the current file in finder. Its pretty minimal and it wouldn't be hard to
generalize if only there was a software developer around.Map it like:
```
'atom-text-editor':
'alt-cmd-r': 'reveal-in-finder:reveal'
```Then hit that puppy to reveal the current file's parent directory in a
Finder window.I have not done any form of thorough testing, I only know it works on my
machine (Mac OS running High Sierra). The whole thing relies on running a
child process for `open ''` so if that command does not work in
your terminal then _this package is not for you_.## Install
It's on the marketplace, so the regular channels should work.
If not, see the
hack below.### Hack Install
I did this before I published to the marketplace.
```sh
cd ~/.atom/packages
git clone https://github.com/nolanbconaway/atom-reveal-in-finder.git
cd atom-reveal-in-finder
apm install
apm link .
```