2015-12-02 14:23:39 +00:00
|
|
|
#+TITLE: Evernote layer
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
[[file:img/evernote.png]] with [[file:img/geeknote.png]]
|
|
|
|
|
2016-03-31 02:59:55 +00:00
|
|
|
* Table of Contents :TOC_4_gh:noexport:
|
|
|
|
- [[#description][Description]]
|
|
|
|
- [[#install][Install]]
|
|
|
|
- [[#layer][Layer]]
|
|
|
|
- [[#geeknote][geeknote]]
|
|
|
|
- [[#geeknoteel][geeknote.el]]
|
|
|
|
- [[#key-bindings][Key Bindings]]
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Description
|
2015-06-10 21:16:01 +00:00
|
|
|
This layer groups together packages to work with [[https://evernote.com/][Evernote]].
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2015-06-10 21:16:01 +00:00
|
|
|
It uses the non official Evernote command line tool [[http://www.geeknote.me][geeknote]] which allows users
|
|
|
|
to write notes in markdown, and sync them.
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
[[https://github.com/avendael/emacs-geeknote][geeknote.el]] is a wrapper for some of the most used =geeknote= commands. By
|
|
|
|
default, =geeknote.el= doesn't have key bindings defined. This contribution
|
|
|
|
layer provides key bindings for all of geeknote.el's exposed features.
|
|
|
|
|
|
|
|
* Install
|
|
|
|
** Layer
|
2016-01-06 05:21:55 +00:00
|
|
|
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
|
|
|
|
add =evernote= to the existing =dotspacemacs-configuration-layers= list in this
|
|
|
|
file.
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
** geeknote
|
|
|
|
The command =geeknote= is expected to be present in your =$PATH=. To
|
|
|
|
obtain this utility, please refer to the official geeknote
|
|
|
|
[[http://www.geeknote.me/documentation/][documentation]].
|
|
|
|
|
|
|
|
** geeknote.el
|
|
|
|
=geeknote.el= relies on having a correctly setup geeknote editor. To set
|
|
|
|
this up, run the following command in your terminal after successfully
|
|
|
|
installing =geeknote=:
|
|
|
|
|
|
|
|
#+BEGIN_SRC sh
|
|
|
|
$ geeknote settings --editor "emacsclient"
|
|
|
|
#+END_SRC
|
|
|
|
|
2015-10-27 10:59:05 +00:00
|
|
|
If you would prefer to customize the geeknote command to be used such as
|
|
|
|
specifying the path to the geeknote python script, please refer to the
|
|
|
|
=geeknote.el= [[https://github.com/avendael/emacs-geeknote][documentation]]. For more information about setting up =$PATH=,
|
2015-12-21 13:50:36 +00:00
|
|
|
check out the corresponding section in the FAQ (~SPC h SPC $PATH RET~).
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Key Bindings
|
|
|
|
|
|
|
|
| Key Binding | Description |
|
|
|
|
|-------------+-------------------------------------|
|
|
|
|
| ~SPC a e c~ | create a new note |
|
|
|
|
| ~SPC a e e~ | edit an existing note |
|
|
|
|
| ~SPC a e f~ | find a note using a keyword |
|
|
|
|
| ~SPC a e s~ | show an existing note |
|
|
|
|
| ~SPC a e r~ | remove an existing note |
|
|
|
|
| ~SPC a e m~ | move a note to a different notebook |
|