Commit 2e469fb2 authored by Andy Stewart's avatar Andy Stewart
Browse files

Add docs about eaf-setq.

parent 2e6b3cf7
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -205,6 +205,21 @@ If your application will do some long-time operation, you can use below use belo
    def update_progress(self, progress):
```

### Customize variable at Elisp side.
You can use below code set the save patch of camera photo:

```Elisp
(eaf-setq 'eaf-camera-save-path "~/Downloads")
```

On the python side, you can use below code pick up the value of ```eaf-camera-save-path```

```Python
self.emacs_var_dict["eaf-camera-save-path"]
```

Above is an example of ```eaf-camera-save-path```, you can customize any variable on elisp side actually, don't need modify python code to customize EAF application!


## Todolist
[Some works you can hacking ;)](TODOLIST.md)