To try the thousands of add-ons available here, download Mozilla Firefox, a fast, free way to surf the Web!
CloseWelcome to Firefox Add-ons.
Choose from thousands of extra features and styles to make Firefox your own.
CloseAbout this Add-on
line 500) -> wait for a 6000-line file to load -> decide that you want to edit
this file -> open this file in vim
New workflow: Search MXR for identifier -> click on a result -> result opens in vim.
Setup
mxr-vim needs to know three things:
- where the source tree on your disk is located (no default)
- where your shell is located (default /bin/sh)
- where vim is located (default /usr/local/bin/mvim)
`extensions.mxr-vim.*`
To complete the circle of mxr-vim integration, I use the following mappings in
my .vimrc, which fire off a search of MXR for the word under the cursor:
nnoremap <c-f>i :! open -a Aurora.app 'http://mxr.mozilla.org/mozilla-central/ident?i=<cword>'<cr><cr>
nnoremap <c-f>f :! open -a Aurora.app 'http://mxr.mozilla.org/mozilla-central/search?string=<cword>'<cr><cr>