Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Markdown support: issue with dragging folder into editor to create a link on Linux edition of VSCode #241007

Closed
hurrellit opened this issue Feb 17, 2025 · 4 comments · Fixed by #243656
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug help wanted Issues identified as good community contribution opportunities insiders-released Patch has been released in VS Code Insiders linux Issues with VS Code on Linux
Milestone

Comments

@hurrellit
Copy link

hurrellit commented Feb 17, 2025

Does this issue occur when all extensions are disabled?: Yes

  • VS Code Version: 1.97.2 (latest)
  • OS Version: Ubuntu/Windows 10

Steps to Reproduce:

  1. Open an .md file
  2. Drag a folder from the left hand File Explorer and drop it into the editor while holding the SHIFT key down
  3. Using the Microsoft Windows version of VSCode this action will result in the creation of a markdown style relative link in the editor as expected, e.g.:
[text](../../../folder_name)
  1. Using the .deb file installed release of VSCode on Ubuntu Desktop or Linux Mint desktop, the same action results in the absolute path to the folder being pasted into the editor, e.g.:
/home/my_user/Documents/gitlab/doc/content/en/some/path/folder_name

I feel that the behaviour in the Linux distros is incorrect and is a bug and a markdown style link should be created instead.

I do not have any extensions installed in VSCode and all settings are in their default state (I have not changed any).

Note that I can drag an .md file or an image type file (.png, .jpg etc.) from a folder in the left hand explorer and drop it into the editor and on both Linux and Windows a markdown link will be created as expected with the relative path to the file - so I know the drag and drop facility is working as designed.

@mjbvz mjbvz added help wanted Issues identified as good community contribution opportunities linux Issues with VS Code on Linux labels Feb 18, 2025
@mjbvz
Copy link
Collaborator

mjbvz commented Feb 18, 2025

I suspect this is related to either electron or the OS not creating a proper text/uri-list entry for the drag event. The other cases work because the drag even should have file objects, but that isn't the case for a folder

Marking as help wanted if someone wants to take a look:

if (!dragEvent.dataTransfer || !editor.hasModel()) {

@mjbvz mjbvz added the bug Issue identified by VS Code Team member as probable bug label Feb 18, 2025
@mkhuzaima
Copy link
Contributor

I have spent some time understanding this issue and believe I can resolve it. @mjbvz , could you please assign it to me?

@mkhuzaima
Copy link
Contributor

@mjbvz Basically, there are 2 problems (one about absolute path), and one about link should be in markdown format.

It is because text/uri-list is not set for directory. Works fine, if we remove the condition, so that, it works for both files and directories.

} else if (!resourceOrEditor.isDirectory) {
editor = {
resource: resourceOrEditor.resource,
options: {
selection: resourceOrEditor.selection,
}
};
}

@mkhuzaima
Copy link
Contributor

I have created a pull request that solves the issue. Let me now if any changes are required to the approach.

@mjbvz mjbvz added this to the April 2025 milestone Mar 25, 2025
@vs-code-engineering vs-code-engineering bot added unreleased Patch has not yet been released in VS Code Insiders insiders-released Patch has been released in VS Code Insiders and removed unreleased Patch has not yet been released in VS Code Insiders labels Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issue identified by VS Code Team member as probable bug help wanted Issues identified as good community contribution opportunities insiders-released Patch has been released in VS Code Insiders linux Issues with VS Code on Linux
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants