Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jcf/vim-jump-to-code
https://github.com/jcf/vim-jump-to-code
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/jcf/vim-jump-to-code
- Owner: jcf
- Created: 2013-05-19T21:34:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-15T14:47:34.000Z (over 11 years ago)
- Last Synced: 2023-04-10T15:07:45.746Z (over 1 year ago)
- Language: Ruby
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jump To Code
Please note, I have replaced the functionality offered by this plugin
with [Unite.vim][] and the following mapping:``` vimscript
" Jump to a project {{{
map P :execute 'Unite directory:' . expand('~/Code') .
\ ' directory_mru ' .
\ '-buffer-name=directories ' .
\ '-start-insert -toggle -default-action=cd'
" }}}
```**As such I won't be actively developing this plugin. I urge you to check
out Unite.vim instead!**---
Switch directories quickly in your preferred code directory. Defaults to
`$HOME/Code`.To change the default directory to say ~/Projects set the following:
``` vim
let g:jump_to_code_base = expand("~/Projects")
```## Installation
I personally use Vundle to install and manage my Vim dependencies, but
if you don't have a preferred installation method, Tim Pope recommends
installing [pathogen.vim](https://github.com/tpope/vim-pathogen), and
then simply copying and pasting:```
cd ~/.vim/bundle
git clone git://github.com/jcf/vim-jump-to-code.git
```And Tim Pope's a pretty decent guy to hand out Vim-related advice.
## License
Copyright © James Conroy-Finn. Distributed under the same terms as Vim
itself. See `:help license`.[Unite.vim]: https://github.com/Shougo/unite.vim