Matt Furden
Matt Furden
Oh hm, that feels like an Obsidian bug as the `[`'s are escaped with `\[`. Maybe it's expected behavior but that doesn't seem like the right handling by Obsidian to...
Hm, realistically I should restrict a number of filetypes as we aren't going to crawl meaningful information out of a picture or exe either. Thanks for the report!
This should be fixed in the latest release!
Unfortunately due to CORS this solution only works for some websites. Attempting to use ```typescript window.webContents.session.on('will-download', function(e, item, webContents) { if (item.getMimeType() !== "text/html") { e.preventDefault() console.log("Prevented download of non-html...
Ah interesting! Do you find that you always use html links or that you need to swap between the two? I'm wondering if being able to bind an additional button...
This would similarly be useful for languages like Ruby/Elixir that use `do` and `end` ```elixir def function_name do IO.puts("Hello!") end ```
That's correct from what I can tell @davecan, the "editor-paste" command doesn't give me any information as to how the paste itself happened. At the moment the closest thing I...
Have you had any luck? What permissions does this user have and what does your wemux.conf look like?
I use vim mode as well and have felt this pain, I'll have to look into CodeMirrors vim mode implementation and see what I can do. I may have to...
That would be great but at the moment I don't have any special handling for any specific sites. I'll add this as a general concept for a feature.