VSCodeVim / Vim

:star: Vim for Visual Studio Code
http://aka.ms/vscodevim
MIT License
13.57k stars 1.3k forks source link

Markdown File Paste does not work with Vim extension #9048

Open KrappRamiro opened 1 month ago

KrappRamiro commented 1 month ago

Describe the bug In concise words, if you try to copy and paste (with Ctrl+V or Ctrl+Shift+V) an image into a markdown file, the Markdown > Editor > File Paste feature wont work

To Reproduce

  1. Enable Markdown image pasting as described in https://stackoverflow.com/questions/75831497/how-can-i-paste-images-into-my-markdown-files-in-vs-code
  2. Copy an image into your clipboard
  3. Try to paste the image into Markdown either with Ctrl+V or Ctrl+Shift+V, it wont work.

Expected behavior I expect the image to be pasted into markdown and added into my workspace :)

Environment:

Vscode version: 1.89.0 Vim plugin version v1.27.3 OS: Kde Neon (Linux x64 6.5.0-28-generic)

Additional context

This is my vim.handlekeys

  "vim.handleKeys": {
    "<C-d>": false,
    "<C-c>": false,
    "<C-s>": false,
    "<C-z>": false,
    "<C-y>": false,
    "<C-j>": false,
    "<C-b>": false,
    "<C-p>": false,
    "<C-k>": false,
    "<C-f>": false
  },