-
Notifications
You must be signed in to change notification settings - Fork 101
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
Fix location autosave when using org-pdftools integration #93
base: master
Are you sure you want to change the base?
Conversation
@xzz53 Could you show your configuration about After loading the org-noter-integration.el in my config. click the |
@smallzhan, at present I just do PS
|
@xzz53 seems that org-pdftools can't be complied as .elc, now it works, thank you! Your `PS' will be a very great work!
|
I'm getting this issue now suddenly. It's frustrating as hell. Please merge! |
Same here. The package with this bug is unusable. Update: As a work around I installed el-patch and added to my init.el the following code:
|
"click anywhere on the page to add a link to. Do you want to do that?" keeps popping up ! Makes the package in Emacs 27.1 useless |
The author seems to have completely abandoned the package. From my point of view, either you fork and patch the package in your local github repository and instruct emacs to use it, or you install el-patch and patch org-noter every time you start emacs by adding #93 (comment) to your init.el. |
Now if you follow the use-package configuration recommended by the readme of org-pdftools, the fix goes in there. See: fuxialexander/org-pdftools@2335f6a It works well for me. |
Hi!
I'm trying to get
org-noter-integration.el
working. Core functionality seems to be OK, but I've encountered an issue when running withorg-noter-auto-save-last-location
enabled. It results inorg-noter-pdftools--doc-approx-location
being called with'interactive
argument on every page change. That in turn activates interactive branch ("Do you want to create a free pointer annotation for the link?") inorg-pdftools-get-link
. This patch prevents that by changingorg-noter-set-start-location
so that'interactive
is passed toorg-noter-pdftools--doc-approx-location
only when directly called by user, not fromorg-noter--doc-location-change-handler
.