Is there a possibility to use code completion in vim for ruby?
Tips, links, ... ?
···
--
Roeland
Is there a possibility to use code completion in vim for ruby?
Tips, links, ... ?
--
Roeland
Roeland Moors wrote:
Is there a possibility to use code completion in vim for ruby?
Tips, links, ... ?
There's always the ^N/^P keys (used in insert mode). It's not quite code completion, but if you've already typed some symbol elsewhere in your document, it can really speed things up.
- Jamis
--
Jamis Buck
jgb3@email.byu.edu
http://www.jamisbuck.org/jamis
The problem is remembering methods.
It would be nice if I could type 'Dir.' then press some hot-key
and get all the methods.
On Mon, Sep 27, 2004 at 10:23:32PM +0900, Jamis Buck wrote:
Roeland Moors wrote:
>Is there a possibility to use code completion in vim for ruby?
>
>Tips, links, ... ?
>
>There's always the ^N/^P keys (used in insert mode). It's not quite code
completion, but if you've already typed some symbol elsewhere in your
document, it can really speed things up.
--
Roeland
Roeland Moors wrote:
The problem is remembering methods.
It would be nice if I could type 'Dir.' then press some hot-key
and get all the methods.
The ruby-vim macro/menu thing (sorry, I forget the actual name) has a binding (Ctrl-F5) that runs ri for the term under the cursor.
James