summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryushyin <yushyin@saga>2016-02-13 16:01:04 +0100
committeryushyin <yushyin@saga>2016-02-13 16:01:04 +0100
commit497947520e4e3a307d7783052c7334daffe0146e (patch)
tree9fa257fdc19cf2ab84f4a26fdb7f0301a5c2956e
parentd6ea695351095ab783bb1be446e9e5d8aea7c4ff (diff)
downloaddotfiles-497947520e4e3a307d7783052c7334daffe0146e.tar.gz
dotfiles-497947520e4e3a307d7783052c7334daffe0146e.tar.xz
Neobundle: Replace deprecated options
-rw-r--r--vim/neobundle.toml60
1 files changed, 23 insertions, 37 deletions
diff --git a/vim/neobundle.toml b/vim/neobundle.toml
index e2a54d4..e16af5f 100644
--- a/vim/neobundle.toml
+++ b/vim/neobundle.toml
@@ -10,20 +10,19 @@ repository = 'Shougo/vimproc.vim'
[[plugins]]
repository = 'Shougo/unite.vim'
lazy = 1
- [plugins.commands]
+ [plugins.on_cmd]
name = 'Unite'
complete = 'customlist,unite#complete_source'
[[plugins]]
repository = 'Shougo/neomru.vim'
lazy = 1
- [plugins.autoload]
- unite_sources = 'file_mru'
+on_source = 'unite.vim'
[[plugins]]
repository = 'Shougo/vimshell.vim'
lazy = 1
- [plugins.commands]
+ [plugins.on_cmd]
name = 'VimShell'
complete = 'customlist,vimshell#complete'
@@ -38,8 +37,7 @@ repository = 'SirVer/ultisnips'
[[plugins]]
repository = 'honza/vim-snippets'
lazy = 1
- [plugins.autoload]
- insert = 1
+on_i = 1
[[plugins]]
repository = 'chriskempson/base16-vim'
@@ -47,20 +45,17 @@ repository = 'chriskempson/base16-vim'
[[plugins]]
repository = 'tpope/vim-unimpaired'
lazy = 1
- [plugins.autoload]
- insert = 1
+on_i = 1
[[plugins]]
repository = 'cespare/vim-toml'
lazy = 1
- [plugins.autoload]
- filetypes = 'toml'
+on_ft = 'toml'
[[plugins]]
repository = 'ledger/vim-ledger'
lazy = 1
- [plugins.autoload]
- filename_patterns = '\.ldg$'
+on_path = '\.ldg$'
[[plugins]]
repository = 'tpope/vim-fugitive'
@@ -69,59 +64,51 @@ lazy = 0
[[plugins]]
repository = 'godlygeek/tabular'
lazy = 1
- [plugins.autoload]
- commands = 'Tabularize'
+on_cmd = 'Tabularize'
[[plugins]]
repository = 'majutsushi/tagbar'
lazy = 1
augroup = 'TagbarSession'
- [plugins.autoload]
- commands =
- ['Tagbar'
- ,'TagbarToggle'
- ,'TagbarOpen'
- ,'TagbarOpenAutoClose']
+on_cmd =
+ ['Tagbar'
+ ,'TagbarToggle'
+ ,'TagbarOpen'
+ ,'TagbarOpenAutoClose']
[[plugins]]
repository = 'scrooloose/syntastic'
lazy = 0
augroup = 'syntastic'
- [plugins.autoload]
- commands = ['SyntasticCheck', 'SyntasticInfo', 'SyntasticToogleMode']
+on_cmd = ['SyntasticCheck', 'SyntasticInfo', 'SyntasticToogleMode']
[[plugins]]
repository = 'vim-scripts/a.vim'
lazy = 1
- [plugins.autoload]
- filetypes = ['c', 'cpp']
+on_ft = ['c', 'cpp']
[[plugins]]
repository = 'Rip-Rip/clang_complete.git'
lazy = 1
- [plugins.autoload]
- filetypes = ['c', 'cpp']
+on_ft = ['c', 'cpp']
[[plugins]]
repository = 'Twinside/vim-hoogle'
lazy = 1
- external_commands = 'hoogle'
- [plugins.autoload]
- filetypes = ['haskell', 'lhaskell', 'chaskell']
+external_commands = 'hoogle'
+on_ft = ['haskell', 'lhaskell', 'chaskell']
[[plugins]]
repository = 'eagletmt/ghcmod-vim'
lazy = 1
- external_commands = 'ghc-mod'
- [plugins.autoload]
- filetypes = ['haskell', 'lhaskell', 'chaskell']
+external_commands = 'ghc-mod'
+on_ft = ['haskell', 'lhaskell', 'chaskell']
[[plugins]]
repository = 'eagletmt/neco-ghc'
lazy = 1
- external_commands = 'ghc-mod'
- [plugins.autoload]
- filetypes = ['haskell', 'lhaskell', 'chaskell']
+external_commands = 'ghc-mod'
+on_ft = ['haskell', 'lhaskell', 'chaskell']
[[plugins]]
repository = 'ujihisa/unite-haskellimport'
@@ -131,5 +118,4 @@ external_commands = 'hoogle'
[[plugins]]
repository = 'rust-lang/rust.vim'
lazy = 1
- [plugins.autoload]
- filetypes = 'rust'
+on_ft = 'rust'