Show
Ignore:
Timestamp:
12/27/07 23:24:31 (13 months ago)
Author:
kana
Message:

lang/vim/cygclip:
* Modify to define the default key mappings as the plugin is loaded.
* Add the way to suppress this behavior.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/vim/cygclip/trunk/plugin/cygclip.vim

    r3580 r3641  
    11" cygclip - pseude clipboard register for non-GUI version of Vim on Cygwin 
    2 " Version: 0.0 
     2" Version: 0.1 
    33" Copyright: Copyright (C) 2007 kana <http://nicht.s8.xrea.com/> 
    44" License: MIT license (see <http://www.opensource.org/licenses/mit-license>) 
     
    6464  cmap <C-r>+  <Plug>Cygclip_insert 
    6565endfunction 
     66 
     67 
     68if !exists('g:cygclip_no_default_key_mappings') 
     69  call Cygclip_DefaultKeymappings() 
     70endif 
    6671 
    6772