/README.md
https://github.com/faceair/atom-goto-definition · Markdown · 38 lines · 25 code · 13 blank · 0 comment · 0 complexity · f553485372c3cc6e939afc1a08825d95 MD5 · raw file
- # Goto Definition
- [](https://travis-ci.org/faceair/atom-goto-definition)
- [](https://ci.appveyor.com/project/faceair/atom-goto-definition)
- [](https://david-dm.org/faceair/atom-goto-definition)
- 
- * Support for `JavaScript(ES6 && JSX)`, `TypeScript`, `CoffeeScript`, `Python`, `Ruby`, `PHP`, `Hack`, `Perl`, `KRL`, `Erb`, `Haml`, `C/C++`, `Puppet`, `ASP`, `Shell`
- * Works with Mac OSX, Linux and Windows
- * Goto-Definition functionality, by default on `Alt+Cmd+Enter`/`Ctrl+Alt+Enter`
- * Support [hyperclick](https://atom.io/packages/hyperclick), `<cmd-click>` on a word to jump to it's declaration
- ## Installing
- Install the package ```goto-definition``` in Atom (Preferences->Install) or use Atom's package manager from a shell:
- ```
- $ apm install goto-definition
- ```
- ## Performance Mode
- Performance mode is 10x faster than nomal mode. If you want a better experience, please use the performance mode.
- Steps:
- 1. Install `ripgrep`, see [https://github.com/BurntSushi/ripgrep#installation](https://github.com/BurntSushi/ripgrep#installation). Yeap, now we use `ripgrep` to search definitions, because it's incredibly fast.
- 2. Turn `Settings -> Packages -> goto-definition -> Settings -> Performance Mode` on.
- 3. Enjoy it.
- Please note that performance mode is still under testing, suggestions and feedback are welcome. Performance mode will be activated by default in the next version once it has been tested extensively.
- ### Ignoring files
- You can ignore files while in performace mode by creating a `.ignore` file in the root of your project. Same syntax than `.gitignore`.
- ### Notice
- * In normal mode, if you want to include VCS ignored paths, please uncheck `Settings -> Exclude VCS Ignored Paths` option under package preferences.