:ver
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Jan 10 2012 17:19:08)
MS-Windows 32-bit GUI version with OLE support
Included patches: 1-315

I am trying to figure out why I see different behaviour when performing what I consider identical actions.

Start Vim:
gvim --noplugin -N -u NONE -U NONE myFile

Add 3 lines:
1
2
3

One line 1, yy
Move down to line 2.
p
The output becomes:
1
2
1
3

One the "2", hit V to go into linewise visual mode.
Hit p (paste from the default buffer)
The output becomes:
1
1
1
3

Move down to the "3".
:echo @"
Shows 1

This time:
V""p  (visually select line, paste from the default buffer)
The output remains:
1
1
1
3

:echo @"
Shows 3

This is on Windows.
:set clipboard?
clipboard=

Not sure what other options might control this.


Thanks,
Dave


Full :ver

:ver
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Jan 10 2012 17:19:08)
MS-Windows 32-bit GUI version with OLE support
Included patches: 1-315
Compiled by fishburn@fishburn-6500
Big version with GUI.  Features included (+) or not (-):
+arabic +autocmd +balloon_eval +browse ++builtin_terms +byte_offset +cindent +clientserver +clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments +conceal +cryptv +cscope +cursorbind +cursorshape +dialog_con_gui +diff +digraphs -dnd -ebcdic +emacs_tags +eval +ex_extra +extra_search +farsi +file_in_path +find_in_path +float +folding -footer +gettext/dyn -hangul_input +iconv/dyn +insert_expand +jumplist +keymap +langmap +libcall +linebreak +lispindent +listcmds +localmap -lua +menu +mksession +modify_fname +mouse +mouseshape +multi_byte +multi_lang -mzscheme +netbeans_intg +ole +path_extra +perl/dyn +persistent_undo -postscript +printer -profile +python/dyn -python3 +quickfix +reltime +rightleft -ruby +scrollbind +signs +smartindent -sniff +startuptime +statusline -sun_workshop +syntax +tag_binary +tag_old_static -tag_any_white -tcl -tgetent -termresponse +textobjects +title +toolbar +user_commands +vertsplit +virtualedit +visual +visualextra +viminfo +vreplace +wildignore +wildmenu +windows +writebackup -xfontset -xim -xterm_save +xpm_w32
   system vimrc file: "$VIM\vimrc"
     user vimrc file: "$HOME\_vimrc"
 2nd user vimrc file: "$VIM\_vimrc"
      user exrc file: "$HOME\_exrc"
  2nd user exrc file: "$VIM\_exrc"
  system gvimrc file: "$VIM\gvimrc"
    user gvimrc file: "$HOME\_gvimrc"
2nd user gvimrc file: "$VIM\_gvimrc"
    system menu file: "$VIMRUNTIME\menu.vim"
Compilation: cl -c /W3 /nologo -I. -Iproto -DHAVE_PATHDEF -DWIN32 -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_XPM_W32 -DWINVER=0x0400 -D_WIN32_WINNT=0x0400 /Fo.\ObjGOLY/ /Ox /GL -DNDEBUG /Zl /MT -DFEAT_OLE -DFEAT_GUI_W32 -DDYNAMIC_ICONV -DDYNAMIC_GETTEXT -DFEAT_PYTHON -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"python26.dll\" -DFEAT_PERL -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"perl510.dll\" -DFEAT_BIG /Fd.\ObjG
OLY/ /Zi
Linking: link /RELEASE /nologo /subsystem:windows /LTCG:STATUS oldnames.lib kernel32.lib advapi32.lib shell32.lib gdi32.lib comdlg32.lib ole32.lib uuid.lib /machine:i386 /nodefaultlib gdi32.lib version.lib winspool.lib comctl32.lib advapi32.lib shell32.lib /machine:i386 / nodefaultlib libcmt.lib oleaut32.lib user32.lib /nodefaultlib:python26.lib WSock32.lib C:\download\OpenSrc\vim\XPM_support_for_N
etbeans\xpm-4.2.0\lib\libXpm.lib /PDB:gvim.pdb -debug

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to