GitXplorerGitXplorer
o

ros.vim

public
5 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
6ac46d45408e721b2023a38cb43d4fb364a999e4

add some commands

oompugao committed 12 years ago
Unverified
19e1458e2a2478f2bcd2afb0c3f481e93fd50094

update README

oompugao committed 12 years ago
Unverified
df9b44e69ea353d039af5324cbbf68a3391f4105

change completion function for roscd/rosed

oompugao committed 12 years ago
Unverified
54b609251b89434de447fd8d4121c8b345138f2b

implemete recursive complement

oompugao committed 12 years ago
Unverified
1b0db4b0b2a6cf96982c6384b59870ceafee49d9

fix README

oompugao committed 12 years ago
Unverified
6f904af344b49e38d7ddb1a81170b2b09f52c97b

add readme

oompugao committed 12 years ago

README

The README file for this repository.

ros.vim -- vim plugin for ros

I sort rosvim.vim by Michael Styer and add tab completion feature.

Install

Bundle/NeoBundle will be convenient plugins to install this plugin.

$ cd .vim
$ git clone https://github.com/Shougo/neobundle.vim.git
$ cat > .vimrc
"neobundle(https://github.com/Shougo/neobundle.vim.git)
set nocompatible              " Be Improved
filetype off                  " Required!
if has('vim_starting')
  set rtp+=~/.vim/neobundle.vim/
endif
call neobundle#rc(expand('~/.vim/bundle/'))

NeoBundle "ompugao/ros.vim"

filetype plugin indent on
(type Ctrl-D)

Usage

  • change dir:

    :Roscd

  • edit some file:

    :Rosed

Edit your .vimrc

you can add a keymap to call :Roscd/:Rosed like this:

noremap <Leader>rc :<C-u>Roscd<space>
noremap <Leader>re :<C-u>Rosed<space>