Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I recently switched over to using Janus from a custom set of vim plugins and .vimrc. I'm really enjoying the setup, but one thing I'm missing is the automatic completion of blocks in Ruby.

For example, when I type:

def method <enter>

It would complete the block:

def method
  # cursor here
end

I was using some of Tim Pope's plugins and can't recall which one provided the functionality (Rails maybe?) Is there a way to get this functionality using Janus? Is there a reason why someone wouldn't want this? It seems really convenient to have.

share|improve this question
3  
Janus has since added endwise to project – Beerlington Feb 6 '11 at 2:25

3 Answers

up vote 8 down vote accepted

According to janus documentation documentation:

If you want to add additional Vim plugins you can do so by adding a ~/.janus.rake like so:

vim_plugin_task "zencoding", "git://github.com/mattn/zencoding-vim.git"
vim_plugin_task "minibufexpl", "git://github.com/fholgado/minibufexpl.vim.git"

ant then just run rake or run rake for the pluging you setup, on ~/.vim, for example:

rake zenconding
share|improve this answer
Does this work anymore? I'm not able to find that rake task. The only reference to plugin I found in Janus doc is installing the plugin in ~/.janus folder, but I'm having trouble getting that to work too. – sent-hil Aug 6 '12 at 23:50
Can you expand on this? The instructions are very difficult for me to follow. It looks like their docs are saying make a file called .janus.rake in your home directory (~) and in that file simply write those lines. Then what? – Keith Sep 27 '12 at 0:47

You're talking about endwise.

Presumably you could just add this repo to the Janus rakefile, however I've not tested. This is likely not included in Janus because this can pretty much be emulated with snipMate which is included in Janus.

share|improve this answer
Thanks! I tried snipMate but it's not exactly what I want so I put endwise in ~/.vim/plugin. That did the trick, but what I'll probably end up doing is just forking Janus and adding this. – Beerlington Jan 26 '11 at 19:38

The janus customization documentation currently reccommends using the ~/.janus directory for vim plugins.

You can use git clone to install vim plugins into the ~/.janus directory. E.g.

cd ~/.janus
git clone https://github.com/vim-scripts/Rename2.git rename2

The old method for customization, using rakefile is in a separate branch that is not maintained.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.