diff --git a/core/browser.py b/core/browser.py index 3338ee5..2ddec8d 100644 --- a/core/browser.py +++ b/core/browser.py @@ -541,7 +541,7 @@ class BrowserBuffer(Buffer): aria2_args = ["aria2c"] aria2_args.append("-d") - aria2_args.append(os.path.expanduser(str(self.emacs_var_dict["eaf-browser-aria2-download-path"]))) + aria2_args.append(os.path.expanduser(str(self.emacs_var_dict["eaf-browser-download-path"]))) aria2_proxy_host = str(self.emacs_var_dict["eaf-browser-aria2-proxy-host"]) aria2_proxy_port = str(self.emacs_var_dict["eaf-browser-aria2-proxy-port"]) diff --git a/eaf.el b/eaf.el index d8da542..02875c1 100644 --- a/eaf.el +++ b/eaf.el @@ -223,9 +223,9 @@ It must defined at `eaf-browser-search-engines'." (eaf-browser-blank-page-url . "https://www.google.com") (eaf-browser-dark-mode . "false") (eaf-browser-scroll-behavior . "auto") + (eaf-browser-download-path . "~/Downloads") (eaf-browser-aria2-proxy-host . "") (eaf-browser-aria2-proxy-port . "") - (eaf-browser-aria2-download-path . "~/Downloads") (eaf-marker-letters . "ASDFHJKLWEOPCNM") ) "The alist storing user-defined variables that's shared with EAF Python side.