-
Notifications
You must be signed in to change notification settings - Fork 9
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
dropbox.el does not work with Helm #7
Comments
It sounds like this is a configuration issue, though I'm not sure why. Make sure you call (You can do that by opening up the |
file-name-handler-alist is a variable defined in ‘C source code’.
Its value is
(#1=("\\`/db:" . dropbox-handler)
("\\(?:\\.tzst\\|\\.zst\\|\\.dz\\|\\.txz\\|\\.xz\\|\\.lzma\\|\\.lz\\|\\.g?z\\|\\.\\(?:tgz\\|svgz\\|sifz\\)\\|\\.tbz2?\\|\\.bz2\\|\\.Z\\)\\(?:~\\|\\.~[-[:alnum:]:#@^._]+\\(?:~[[:digit:]]+\\)?~\\)?\\'" . jka-compr-handler)
("\\.gpg\\(~\\|\\.~[0-9]+~\\)?\\'" . epa-file-handler)
("\\`/\\(\\([^/|:]+:[^/|:]*|\\)*[^/|:]+\\(:[^/|:]*\\)?\\)?\\'" . tramp-completion-file-name-handler)
("^/\\(\\(?:\\([a-zA-Z0-9-]+\\):\\(?:\\([^/|: ]+\\)@\\)?\\(\\(?:[a-zA-Z0-9_.%-]+\\|\\[\\(?:\\(?:\\(?:[a-zA-Z0-9]+\\)?:\\)+[a-zA-Z0-9.]+\\)?]\\)\\(?:#[0-9]+\\)?\\)?|\\)+\\)?\\([a-zA-Z0-9-]+\\):\\(?:\\([^/|: ]+\\)@\\)?\\(\\(?:[a-zA-Z0-9_.%-]+\\|\\[\\(?:\\(?:\\(?:[a-zA-Z0-9]+\\)?:\\)+[a-zA-Z0-9.]+\\)?]\\)\\(?:#[0-9]+\\)?\\)?:\\(.*$\\)" . tramp-file-name-handler)
#1#
("\\`/:" . file-name-non-special)) This looks alright (at least to my untrained eyes) About the automated running of (use-package dropbox
:ensure t
:after (request password-store)
:custom
(dropbox-access-token (password-store--run-show "cloud/dropbox-token"))
(dropbox-verbose t)
:config
(dropbox-connect)
:demand t) |
Yep, that The first of these is an Emacs function which should call the second if the Dropbox file name handler is set up correctly. If the first fails and the second succeeds, something is going wrong in the handler configuration. If the first succeeds, then it seems the handler is set up correctly, and there's some bad interaction with some higher-up component (possibly due to some package you're using—we'll have to debug further). If both fail, there's some problem in dropbox.el. |
Ok, so the problem seems to be in combination with Is that a bug or an incompatability that should be documented? However |
Hmm, OK, I will have to look into what's up with Helm. (I use Ivy.) I'll document Helm as an incompatibility for now, and perhaps look into it later. Please file a bug for |
After setting up dropbox.el (configuring access-token and calling
dropbox-connect
) I can list contents in my dropbox usingdropbox--list
but trying to access files with the documented prefix/db:
only results in the following error:Is this a bug or a configuration issue?
The text was updated successfully, but these errors were encountered: