You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For #30066
This adds a new `documentPaste` api proposal that lets extensions hook into copy and paste.
This can be used to do things such as:
- Create link when pasting an image
- Bring along imports when copy and pasting code
Copy file name to clipboardexpand all lines: extensions/markdown-language-features/package.nls.json
+2-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,8 @@
28
28
"configuration.markdown.links.openLocation.currentGroup": "Open links in the active editor group.",
29
29
"configuration.markdown.links.openLocation.beside": "Open links beside the active editor.",
30
30
"configuration.markdown.suggest.paths.enabled.description": "Enable/disable path suggestions for markdown links",
31
-
"configuration.markdown.editor.drop.enabled": "Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#workbench.experimental.editor.dropIntoEditor.enabled#`.",
31
+
"configuration.markdown.editor.drop.enabled": "Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#workbenck.experimental.editor.dropIntoEditor.enabled#`.",
32
+
"configuration.markdown.editor.pasteLinks.enabled": "Enable/disable pasting files into a Markdown editor inserts Markdown links.",
32
33
"configuration.markdown.experimental.validate.enabled.description": "Enable/disable all error reporting in Markdown files.",
33
34
"configuration.markdown.experimental.validate.referenceLinks.enabled.description": "Validate reference links in Markdown files, e.g. `[link][ref]`. Requires enabling `#markdown.experimental.validate.enabled#`.",
34
35
"configuration.markdown.experimental.validate.headerLinks.enabled.description": "Validate links to headers in Markdown files, e.g. `[link](#header)`. Requires enabling `#markdown.experimental.validate.enabled#`.",
0 commit comments