Kopiuj z trybu wizualnego Putty / Vim do schowka Windows [duplikat]

To pytanie ma już tutaj odpowiedź:

Kopiowanie rzeczy z vima działającego w kit 3 odpowiedzi

Obecnie mamvim sesja otwarta w Putty i wybrałem wszystko w pliku za pomocą trybu wizualnego. Zwykle do skopiowania tego do schowka, którego bym użył"+y lub"*y, ale żadne z tych poleceń nie działa.

Oto mój vimrc:

call pathogen#infect()

set noswapfile

set mouse="

set ts=4
set wildmenu
set wildmode=list:longest,full

colorscheme evening

set expandtab
set smarttab

" Stuff from github:
set ts=4
set wildmenu
set wildmode=list:longest,full
set number

" This shows what you are typing as a command. I love this!
set showcmd

" Who doesn't like autoindent?
set autoindent

" Spaces are better than a tab character
set expandtab
set smarttab

" Who wants an 8 character tab? Not me!
set shiftwidth=3
set softtabstop=3

" Ignoring case is a fun trick
set ignorecase

" When I close a tab, remove the buffer
set hidden

" Set word wrapping
set linebreak

" Use filetype specific indentation
filetype on
filetype plugin on
filetype indent on

" Disable auto commenting
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o

questionAnswers(6)

yourAnswerToTheQuestion