1# Lighthouse plugin
2
3This plugin adds commands to manage [Lighthouse](https://lighthouseapp.com/).
4
5To use it, add `lighthouse` to the plugins array in your zshrc file:
6
7```zsh
8plugins=(... lighthouse)
9```
10
11## Commands
12
13* `open_lighthouse_ticket <issue>` (alias: `lho`):
14
15  Opens the URL to the issue passed as an argument. To use it, add a `.lighthouse-url`
16  file in your directory with the URL to the individual project.
17
18  Example:
19
20  ```console
21  $ cat .lighthouse-url
22  https://rails.lighthouseapp.com/projects/8994
23
24  $ lho 23
25  Opening ticket #23
26  # The browser goes to https://rails.lighthouseapp.com/projects/8994/tickets/23
27  ```
28
29See a demo: http://screencast.com/t/ZDgwNDUwNT
30