Reword command description
This commit is contained in:
parent
019baa35f8
commit
9d5dcc6a53
2 changed files with 12 additions and 13 deletions
|
@ -19,14 +19,14 @@ anki-editor -- an Emacs package that helps you create Anki cards in Org-mode
|
|||
the Anki style
|
||||
4. Command Cheat Sheet
|
||||
| Command | Keybinding | Description |
|
||||
|-----------------------------------------------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|-----------------------------------------------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| =anki-editor-setup-default-keybindings= | N/A | Set up default keybindings. |
|
||||
| =anki-editor-submit= | C-c a s | Send notes in current buffer to Anki. |
|
||||
| =anki-editor-insert-deck= | C-c a i d | Insert a deck heading with the same level as current heading. With prefix, only insert the deck name. |
|
||||
| =anki-editor-insert-note= | C-c a i n | Insert a note heading that's one level lower to current heading. The inserted heading will be structured with the property drawer and subheadings that correspond to the fields of the selected note type. |
|
||||
| =anki-editor-insert-note= | C-c a i n | Insert the skeleton of a note, which is structured with a note heading one level lower to the current one as well as subheadings that correspond to fields. |
|
||||
| =anki-editor-export-heading-contents-to-html= | C-c a e | Export the contents of the heading at point to HTML. |
|
||||
| =anki-editor-convert-region-to-html= | N/A | Convert and replace region to HTML. |
|
||||
| =anki-editor-anki-connect-upgrade= | N/A | Upgrade anki-connect to the latest version. This will display a confirmation dialog box in Anki asking if you want to continue. The upgrading is done by downloading the latest code in the master branch of its Github repo. This is useful when new version of this package depends on the bugfixes or new features of anki-connect. |
|
||||
| =anki-editor-anki-connect-upgrade= | N/A | Upgrade anki-connect to the latest version. This will display a confirmation dialog box in Anki asking if you want to continue. |
|
||||
|
||||
*Not a native speaker, hope this README is clear enough. Happy hacking :)*
|
||||
|
||||
|
|
|
@ -89,10 +89,9 @@ With prefix, only insert the deck name."
|
|||
|
||||
;;;###autoload
|
||||
(defun anki-editor-insert-note ()
|
||||
"Insert a note heading that's one level lower to current heading.
|
||||
The inserted heading will be structured with the property drawer
|
||||
and subheadings that correspond to the fields of the selected
|
||||
note type."
|
||||
"Insert the skeleton of a note, which is structured with a note
|
||||
heading one level lower to the current one as well as subheadings
|
||||
that correspond to fields."
|
||||
(interactive)
|
||||
(message "Fetching note types...")
|
||||
(let* ((response (anki-editor--anki-connect-invoke "modelNames" 5))
|
||||
|
|
Loading…
Reference in a new issue