All Projects → alpaca-tc → Vim Unite Watson.vim

alpaca-tc / Vim Unite Watson.vim

vim-unite-watson.vim is the unite source for watson.

Labels

Projects that are alternatives of or similar to Vim Unite Watson.vim

Molokai Terminal
A molokai-like theme for 16-color terminals and a 256-color theme for vim.
Stars: ✭ 10 (-23.08%)
Mutual labels:  viml
Speech
Speech to text and text to speech via google speech api
Stars: ✭ 11 (-15.38%)
Mutual labels:  viml
...
dotfiles
Stars: ✭ 12 (-7.69%)
Mutual labels:  viml
Vim Textobj Rubysymbol
Text object for manipulation of ruby symbol variables
Stars: ✭ 10 (-23.08%)
Mutual labels:  viml
Vimux Ipy
To send python code from vim to ipython running within a tmux split (with either visually selected code or with IPython like cells).
Stars: ✭ 11 (-15.38%)
Mutual labels:  viml
Specky
Functions to help make behavioral testing easy with ruby and rspec.
Stars: ✭ 11 (-15.38%)
Mutual labels:  viml
Cu.vim
vim plugin for conversion camelCase and underscoreCase
Stars: ✭ 10 (-23.08%)
Mutual labels:  viml
Focuspoint Vim
Vim color file that makes long coding sessions better while still maintaining color coordination and important keyword focus.
Stars: ✭ 12 (-7.69%)
Mutual labels:  viml
Vim Tsv
Tab Separated Value niceties for Vim
Stars: ✭ 11 (-15.38%)
Mutual labels:  viml
Ezjail Flavours
FreeBSD ezjail flavours
Stars: ✭ 12 (-7.69%)
Mutual labels:  viml
Haskomplete.vim
A vim ftplugin for magical contextual haskell code completions
Stars: ✭ 10 (-23.08%)
Mutual labels:  viml
Php.vim Html Enhanced
combination of the php indent file and the html indent file
Stars: ✭ 10 (-23.08%)
Mutual labels:  viml
Darkspectrum
a gvim color scheme based on the oblivion color scheme for gedit
Stars: ✭ 11 (-15.38%)
Mutual labels:  viml
Vim Simplebar
A simple non-attention-seeking Vim status line.
Stars: ✭ 10 (-23.08%)
Mutual labels:  viml
Dotfiles
My dotfiles
Stars: ✭ 12 (-7.69%)
Mutual labels:  viml
Zdict.vim
A vim plugin integrate with zdict - the last online dictionary framework you need.
Stars: ✭ 10 (-23.08%)
Mutual labels:  viml
Peg.vim
PEG Syntax for Vim
Stars: ✭ 11 (-15.38%)
Mutual labels:  viml
Perforce.vim
Perforce source control features
Stars: ✭ 12 (-7.69%)
Mutual labels:  viml
Vimmyconf
Mi configuración de vim con pathogen
Stars: ✭ 12 (-7.69%)
Mutual labels:  viml
Vim Css To Inline
Transforms plain css into JSX inline styles
Stars: ✭ 12 (-7.69%)
Mutual labels:  viml

README

vim-unite-watson.vim is the unite source for watson.

:Unite watson

:Unite watson

:Watson

:Watson

Install

.vimrc

" Using Bundle
Bundle 'Shougo/unite.vim'
Bundle 'alpaca-tc/vim-unite-watson.vim'

" Using NeoBundle
NeoBundleLazy 'alpaca-tc/vim-unite-watson.vim', {
      \ 'commands' : 'Watson',
      \ 'depends' : 'Shougo/unite.vim',
      \ 'autoload' : {
      \   'unite_sources' : ['watson', 'watson/dirty', 'watson/clean', 'watson/current_file'],
      \ }}

Install watson

git clone https://github.com/nhmood/watson-ruby/
cd watson-ruby
rake install

Usage

  • :Watson [{options}]
  • :Unite watson
  • :Unite watson/dirty
  • :Unite watson/clean
  • :Unite watson/current_file

Example

filetype plugin indent off

let s:bundle_dir = expand('~/.bundle')
if has('vim_starting') && !isdirectory(s:bundle_dir.'/neobundle.vim')
  call system('git clone https://github.com/Shougo/neobundle.vim.git '. s:bundle_dir . '/neobundle.vim')
endif

if has('vim_starting')
  execute 'set runtimepath+=' . s:bundle_dir . '/neobundle.vim'
  call neobundle#rc(s:bundle_dir)
endif

NeoBundleLazy 'alpaca-tc/vim-unite-watson.vim', {
      \ 'commands' : 'Watson',
      \ 'depends' : 'Shougo/unite.vim',
      \ 'autoload' : {
      \   'unite_sources' : ['watson', 'watson/dirty', 'watson/clean', 'watson/current_file'],
      \ }}

if has('vim_starting') && neobundle#exists_not_installed_bundles()
  execute 'NeoBundleInstall' join(neobundle#get_not_installed_bundle_names(), ' ')
endif

filetype plugin indent on

nnoremap <silent><C-J>d :Unite watson/dirty<CR>
nnoremap <silent><C-J>c :Unite watson/current_file<CR>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].