Copy, cut and paste from and to GVim in Windows environment

Copy selected text from GVim to clipboard. ```bash "+y ``` Cut selected text from GVim to clipboard. ```bash "+x ``` Paste text from clipboard to GVim. ```bash "+p ```