-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Commenting a line starting with a link inserts the comment into the link #11
Comments
Also you can't uncomment (as one would expect, trying to just continually comments the description. :/. |
I can reproduce this issue also when using a mode such as |
I have switched to the new code from The problem clearly is that the commenting functionality does not properly deal with In a way it has. It comes with its own commenting functionality by setting
So this implementation doesn't have the issue of the default implementation, but it is highly specialized and not suitable for use in non-org buffers. I am afraid I am going to have to close this as wontfix. If you cannot live with this, then I suggest that you bring it up with the emacs maintainers as you should be able to reproduce this with any |
Thanks for looking into the issue. Truth be told while annoying I don't think its a major issue. I checked after installing this plugin but org-link-minor-mode has the same issue and in all my time using it I'd never encountered it before experimenting with this plugin. I think its safe to say this isn't a deal braker, so I'm fine with a wontfix resolution for now. I might send an issue on the mailing list if I encounter it more or run into a similair situation with another plugin. Once again, thank you. |
When you have
(setq orglink-match-anywhere t)
enabled and try to comment a line beginning with an org-link, the inside of the link description ends up commented instead of the link itself.For example say I have a scratch buffer like this:
On the last line if I run
M-: (comment-region (line-beginning-position) (line-end-position))
I end up withIs there a way to fix this?
The text was updated successfully, but these errors were encountered: