-
Notifications
You must be signed in to change notification settings - Fork 30
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
cannot drag-n-drop to open file from some software #260
Comments
when you go into your registry, navigate to "HKEY_LOCAL_MACHINE\SOFTWARE\Classes", and you look for "FVvim.{whatever file type you're trying to open}.\shell\edit\command", what does it look like? this is the command that gets run in to actually do what you're asking, if I'm not mistaken. I usually use Registry Finder, because it's so much nicer, but you can look with regedit.exe too. if the data looks anything like it's messed up, then it might be the culprit. for instance, when installing fvim, the values were something like "\C:\FVim\FVim.exe" "%1" or some other incorrect path. i changed it to "C:\FVim\FVim.exe" "%1" and it works like a charm. If I'm understanding things correctly, the first thing in quotes is the program to run, the second part in quotes is saying the first argument to whatever was passed in, give me that filename here, which should be what you drag and dropped, or even opened from an explorer window, or whatever. |
Unfortunately, I don't have a class named "FVvim.xxx"... |
I think we do not have FVim items under Classes b/c it is a portable app, but not installed. |
I use "Everything" to search files and open by drag-and-drop, which is a quite convenient process. But I cannot do it to open it in Fvim.
Similar issues described here:
https://www.voidtools.com/forum/viewtopic.php?t=7122
Here are the observed behavior for different
nvim
GUI on Windows:It might be caused by: https://stackoverflow.com/questions/39612616/drag-and-drop-from-32-to-64-bit
But I'm wondering how
neovide
handle it so that the bug doesn't not occur -- and if Fvim can do the same.The text was updated successfully, but these errors were encountered: