dzylikecode / Inspire-VSCodeExt-Paste-Image

paste images when writing markdown

Home Page:https://marketplace.visualstudio.com/items?itemName=dzylikecode.md-paste-enhanced

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

paste enhanced

It works the same as Paste Image does. What I focus on is to make it work well on WSL and Windows and to use ctrl + v to paste images instead of ctrl + alt + v.

paste anywhere if you want.

Features

  • use ctrl + v to paste images from the clipboard when writing markdown.
  • support delete image file in markdown
  • support to create an empty image to draw, which is very useful for the extension Draw.io Integration and Excalidraw - Visual Studio Marketplace
  • support edit image with specific App
  • sometimes Github Copilot will suggest a good image name, so it's very nice to support to create an image read from clipboard (or an empty image if no image contained in clipboard) with the name suggested by Github Copilot
  • support typst
  • support defining render pattern according to the file type (minimatch)

Extension Settings

  • mdPasteEnhanced.path:string

    The destination to save image file.

    • default: ${currentFileDir}/assets

    You can use variable:

    • ${currentFileDir}: the path of directory that contain current editing file.
    • ${projectRoot}: the path of the project opened in vscode.
    • ${currentFileName}: the name of current editing file.
    • ${currentFileNameWithoutExt}: the name of current editing file without extension.

    example: ${currentFileDir}/${currentFileNameWithoutExt}

  • mdPasteEnhanced.basePath:string

    The base path of image url.

    • default: ${currentFileDir}

    You can use variable:

    • ${currentFileDir}: the path of directory that contain current editing file.
    • ${projectRoot}: the path of the project opened in vscode.
    • ${currentFileName}: the name of current editing file.
    • ${currentFileNameWithoutExt}: the name of current editing file without extension.
  • mdPasteEnhanced.renderPattern:string

    The pattern of image url.

    • default: ![](${imagePath})

    You can use variable:

    • ${imagePath}: the path of image file.
  • mdPasteEnhanced.confirmPattern: enum

    which pattern to be confirmed when paste image

    • default: None

    • None

      won't show confirm dialog

    • Just Name

      show dialog with image name to be confirmed

    • Full Path

      show dialog with image full path to be confirmed

  • mdPasteEnhanced.createFileExt: string

    the extension of image file to be created

    • default: .excalidraw.svg
  • mdPasteEnhanced.editMap: string[]

    the map of image file to be edited

    • default: [ "mspaint *.png *.jpg *.jpeg *.bmp" ]

Known Issues

The plugin Markdown All in One will block the function that you paste image when selecting text. It's better to remove the condition that triggers paste ctrl+v in the shortcut settings of Markdown All in One. Don't worry, this plugin will call the paste function of Markdown All in One. I just think it's a bit of a hassle, why they can't work together without realizing the exsistence of each other.

Release Notes

2.11.1

fix bug: paste failed when selecting text

2.11.0

paste image anywhere

2.10.1

fix: the path includes space

2.10.0

support edit svg with specific App

2.9.0

support create an empty image

2.8.0

support delete image file in markdown

2.7.0

  • #21
  • remove the compress feature

2.6.0

see: #18

2.5.0

see #14 and #15

2.4.0

  • feature: custom render pattern

2.3.0

compress image successfully

2.2.0

now, it can work

fix: can't work because of import third lib failed

it drives me crazy again 😭 😭 😭

2.1.0

fix: can't work because of bundling the extension

not work

2.0.0

feature:

  • support different image type:

    • .png
    • .jpg
  • support to set the threshold which is used to determine whether the image need to be compressed.

not work

1.0.0

fix: errors in license and something wrong with project path

0.3.0

fix bug: wrong path in WSL

bugs drive me crazy 😭 😭 😭

0.2.0

fix bug: wrong path of powershell script

0.1.0

compress the size of extension from 1 MB to 35.89KB

can't work because of wrong path of powershell script

0.0.5

fix: PowerShell Script is not digitally signed

0.0.4

fix: error link in README.md

0.0.3

fix: Paste link without selection will trigger the paste function of Markdown All in One

0.0.2

remove annoying notification and docs in extensions

0.0.1

Initial release


more feature

If you want more feature, for example, make it work on Mac and Linux, Please open an issue or pull request. 😏 😏 😏

Enjoy! 😊 😊 😊

References

About

paste images when writing markdown

https://marketplace.visualstudio.com/items?itemName=dzylikecode.md-paste-enhanced

License:MIT License


Languages

Language:JavaScript 93.4%Language:PowerShell 6.6%