Use Evernote in Emacs
If you are not particularly out, you must have tried Evernote. Maybe you are still using the Evernote browser plug-in to collect this article (pai_^ ).
Evernote is a set of software and services used to take notes and query notes. evernote can be a text, a webpage or webpage clip, an image, sound, or hand-painted ink, and the notes can contain attachments such as PDF. the following search methods are supported for existing Notes: folders, tags, attachments, images, emails, and todo. It is said that searching also supports searching text in images. it is powerful and easy to use. It is an essential tool for home travel and reading and learning. evernote is available in both the free and professional versions. the free version of Evernote provides 60 MB of upload traffic each month (that is, the total size of uploaded notes cannot exceed 60 MB). If you need more upload traffic, consider the paid version.
In addition to the various clients officially provided by Evernote, you can also use Evernote in Emacs. This is Evernote-mode.
Table of contents
- 1 Installation
- 2. Use
- 3 Evernote-Browser
- 4. Text and XHTML Modes
- Insufficient 5
1 Install
The installation of Evernote-mode differs from other Emacs plug-ins, including Ruby scripts and. El files. After checkout from the http://emacs-evernote-mode.googlecode.com/svn/trunk/, first install the gdbm library and then install Evernote-mode:
$ Sudo gem install gdbm $ sudo Ruby/setup. Rb
Although optional, w3m is usually installed.
Finally, put the evernote-mode.el in the load path of Emacs and configure it:
(Setq Evernote-enml-formatter-command '("w3m" "-dump" "-I" "utf8" "-o" "utf8 ")) (add-to-list 'Load-path "<your load path>") (require 'evernote-mode) (Global-set-key "\ c-CEC" 'evernote-create-note) (Global-set-key "\ c-CEO" 'evernote-open-note) (Global-set-key "\ c-ces" 'evernote-search-notes) (Global-set-key "\ c-ces" 'evernote-do-saved-search) (Global-set-key "\ c-cew" 'evernote-Write-note) (Global-set-key "\ c-CEP" 'evernote-post-Region) (Global-set-key "\ c-CEB" 'evernote-browser)
In addition to loading Evernote-mode, the above configuration also defines some shortcut keys.
2 Use
Shortcut Key |
Command |
Description |
C-c e c |
Evernote-create-Note |
Create note |
C-c e o |
Evernote-open-Note |
Open notes |
C-x C-S |
Evernote-save-Note |
Save notes |
C-C E W |
Evernote-Write-Note |
Create a new note from the current Buffer |
C-C E P |
Evernote-post-region |
Create notes using the content of the selected area |
C-c e t |
Evernote-edit-tags |
Modify the label of the current note |
C-c e |
Evernote-change-edit-Mode |
Change the editing mode (optional for text and XHTML) |
C-C E R |
Evernote-Rename-Note |
Rename current note |
C-c e d |
Evernote-delete-Note |
Delete current note |
C-C E S |
Evernote-search-notes |
Search |
C-C E S |
Evernote-do-saved-Search |
Use saved search conditions to search for notes |
|
Evernote-create-Search |
Allocate a name for a search for future use |
|
Evernote-edit-Search |
Edit Saved Search Conditions |
C-x C-Q |
Evernote-toggle-read-only |
Set read-only attributes of notes |
|
Evernote-enml-formatter-command |
Format XHTML Notes |
C-c e B |
Evernote-Browser |
Open Evernote-Browser |
3 Evernote-Browser
The most common feature is Evernote-broswer. You can open four views:
- Notebook list: the notebook list page shows the list of all laptops created on Evernote.
- Note list: the note list page contains the notes that match a search condition.
- Tag Tree: lists the tags in the Evernote service in the form of a hierarchical list of all tag charts. On the tag name, C-M will open the note list page that matches the tag.
- Search list: Saved Search is a series of search conditions that have been created in Evernote. If you press C-m on a search, the notes that match the search results are displayed.
Shortcut Keys available in Evernote-Browser:
B |
Move to previous page |
F |
Move to the next page |
T |
Create a tag list page and display it. If the tag page already exists, open it directly. |
S |
Create a search list page and display it. if it already exists, open it. |
S |
Enter the search criteria and display the list of notes that match the search results. |
N |
Create a notebook list page. If the notebook list already exists, open it. |
O |
It is equivalent to \ c-M, but the cursor does not move to the opened note buffer. |
N |
If you are in the note list, open the current note and move it to the next line. |
P |
If you are in the note list, open the current note and move it to the previous line |
D |
Delete the current page from Evernote browser. |
4 Text and XHTML Modes
For Evernote default notes, in Evernote-mode, the notes are considered to be in XHTML format. You must install w3m to enable them.
If you create notes in Emacs, for example, using org-mode, you can save the notes in text format.
5 Insufficient
- No local cache is available, and all operations need to be performed online. If the network speed is not high, it will be uncomfortable to use it.
Date: 22:30:04 CST
Author: Holbrook Wong
Org version 7.8.08 with Emacs Version 23