diff options
author | mattn <mattn.jp@gmail.com> | 2011-11-08 19:05:01 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2011-11-08 19:05:01 +0900 |
commit | f50548ed3215bde68cc4ea305528becd0bc12e85 (patch) | |
tree | 094eec607248fb8037dd4877ff6e4914649d9db7 | |
parent | 6f51c2e88b3e9e931f8d3911299ddf01506303d4 (diff) | |
download | vim-sonictemplate-f50548ed3215bde68cc4ea305528becd0bc12e85.tar.gz vim-sonictemplate-f50548ed3215bde68cc4ea305528becd0bc12e85.tar.bz2 vim-sonictemplate-f50548ed3215bde68cc4ea305528becd0bc12e85.zip |
oops. fixed error.
-rw-r--r-- | plugin/sonictemplate.vim | 4 | ||||
-rw-r--r-- | sonictemplate.vim.vimup | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/plugin/sonictemplate.vim b/plugin/sonictemplate.vim index 0e06670..fcc4190 100644 --- a/plugin/sonictemplate.vim +++ b/plugin/sonictemplate.vim @@ -2,7 +2,7 @@ " File: sonictemplate.vim " Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> " Last Change: 08-Nov-2011. -" Version: 0.07 +" Version: 0.08 " WebPage: http://github.com/mattn/sonictemplate-vim " Description: Easy and high speed coding method " Usage: @@ -20,7 +20,7 @@ let g:loaded_sonictemplate_vim = 1 let s:save_cpo = &cpo set cpo&vim -command! -nargs=1 -complete=customlist,sonictemplate#complete Template call sonictemplate#apply(<f-args>) +command! -nargs=1 -complete=customlist,sonictemplate#complete Template call sonictemplate#apply(<f-args>, 'n') nnoremap <plug>(sonictemplate) :call sonictemplate#select('n')<cr> inoremap <plug>(sonictemplate) <space><bs><c-o>:call sonictemplate#select('i')<cr> diff --git a/sonictemplate.vim.vimup b/sonictemplate.vim.vimup index 0754366..947013a 100644 --- a/sonictemplate.vim.vimup +++ b/sonictemplate.vim.vimup @@ -42,6 +42,9 @@ install_details: | # git clone http://github.com/mattn/sonictemplate-vim.git versions: +- '0.08': | + This is an upgrade for SonicTemplate.vim: + [fixed] fixed error. - '0.07': | This is an upgrade for SonicTemplate.vim: [fixed] fixed key asign. |