Changeset 3641 for lang/vim/cygclip/trunk
- Timestamp:
- 12/27/07 23:24:31 (11 months ago)
- Location:
- lang/vim/cygclip/trunk
- Files:
-
- 2 modified
-
doc/cygclip.txt (modified) (5 diffs)
-
plugin/cygclip.vim (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/vim/cygclip/trunk/doc/cygclip.txt
r3580 r3641 1 1 *cygclip.txt* pseudo clipboard register for non-GUI version of Vim on Cygwin 2 2 3 Version 0. 03 Version 0.1 4 4 Copyright (C) 2007 kana <http://nicht.s8.xrea.com> 5 5 License: MIT license (see <http://www.opensource.org/licenses/mit-license>) … … 39 39 40 40 41 *g:cygclip_no_default_key_mappings* 41 42 *Cygclip_DefaultKeymappings()* 42 cygclip provides Cygclip_DefaultKeymappings() to define some useful key 43 mappings which are similar to Vim's default key mappings to yank/put. 44 Call it from your |vimrc|. 43 The following key mappings will be defined automatically (via 44 Cygclip_DefaultKeymappings()). If you don't want to define these default key 45 mappings, define g:cygclip_no_default_key_mappings with any value before this 46 plugin is loaded. 45 47 46 Normal mode and Visual mode :48 Normal mode and Visual mode ~ 47 49 48 50 "+y{motion} "*y{motion} (Normal mode only) … … 55 57 "+gP "*gP 56 58 57 Insert mode and Command-line mode :59 Insert mode and Command-line mode ~ 58 60 59 61 <C-r>+ <C-r>* … … 72 74 different from the ordinary one. 73 75 76 (c) This plugin just provide pseudo clipboard register for ordinary editing. 77 So |getreg()|, |setreg()|, |expr-register| and other interface on clipboard 78 register are not supported. 79 74 80 75 81 … … 77 83 ============================================================================== 78 84 CHANGELOG *cygclip-changelog* 85 86 0.1 2007-12-27T22:47:34+09:00 87 - Modify to automatically define the default key mappings as this 88 plugin is loaded. See |g:cygclip_no_default_key_mappings| for how 89 to suppress this behavior. 79 90 80 91 0.0 2007-08-13 -
lang/vim/cygclip/trunk/plugin/cygclip.vim
r3580 r3641 1 1 " cygclip - pseude clipboard register for non-GUI version of Vim on Cygwin 2 " Version: 0. 02 " Version: 0.1 3 3 " Copyright: Copyright (C) 2007 kana <http://nicht.s8.xrea.com/> 4 4 " License: MIT license (see <http://www.opensource.org/licenses/mit-license>) … … 64 64 cmap <C-r>+ <Plug>Cygclip_insert 65 65 endfunction 66 67 68 if !exists('g:cygclip_no_default_key_mappings') 69 call Cygclip_DefaultKeymappings() 70 endif 66 71 67 72
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)