Merge pull request #88 from MatthewZMD/readme

Customization instruction on README
master
Andy Stewart 6 years ago committed by GitHub
commit 569e85b9de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      README.md
  2. 4
      eaf.el

@ -106,6 +106,13 @@ Please don't run EAF with root user, root user just can access DBus's system bus
## Settings
### Customization
You can easily configure variables that EAF Python side uses with the Emacs Lisp function `eaf-setq`. Check the full list of configurable variables with `C-h v eaf-var-list`.
#### EAF Camera
The default directory to store images taken by EAF Camera is `~/Downloads`. To change it, put the following in your `.emacs`
```Elisp
(eaf-setq 'eaf-camera-save-path "~/Downloads")
```
### Proxy
If you can't access most awesome internet services like me, you perhaps need proxy settings like below:
@ -123,7 +130,7 @@ If you use markdown previewer, you need access to a [Personal access token](http
(setq eaf-grip-token "yourtokencode")
```
Otherwise, github will popup "times limit" error because so many peope use grip. ;)
Otherwise, github will popup "times limit" error because so many people use grip. ;)
## FAQ

@ -7,7 +7,7 @@
;; Copyright (C) 2018, Andy Stewart, all rights reserved.
;; Created: 2018-06-15 14:10:12
;; Version: 0.3
;; Last-Updated: Tue Nov 26 23:50:59 2019 (-0500)
;; Last-Updated: Wed Nov 27 02:49:28 2019 (-0500)
;; By: Mingde (Matthew) Zeng
;; URL: http://www.emacswiki.org/emacs/download/eaf.el
;; Keywords:
@ -135,7 +135,7 @@
'((eaf-camera-save-path . "~/Downloads"))
"The alist storing user-defined variables that's shared with EAF Python side.
Use `eaf-setq' to modify this list.")
Try not to modify this alist directly. Use `eaf-setq' to modify instead.")
(defvar eaf-find-alternate-file-in-dired nil
"If non-nil, when calling `eaf-file-open-in-dired', EAF unrecognizable files will be opened

Loading…
Cancel
Save