Doc备忘录
Table of Contents
1 Emacs-lisp
章节 | 完成时间 | 功能 |
---|---|---|
Mode Line Format etc. | 2018-10-31 | Mode Line Format's %-construct & Mode Line Format Constructed Measures |
20.7 Yes-or-No Queries | 2018-11-03 | Intro About Yes-or-No Marco |
25.9.1 File Name Components | 2018-11-04 | File Name Components and the way to control it |
8.1.4 The progn Special Form | 2018-11-06 | Intro About progn Marco |
14.7.1 The append Function | 2018-11-06 | Intro About Append Function |
25.9 File Names | 2018-11-06 | Intro All About File Names |
25.10 Contents of Directories | 2018-11-11 | Intro Contents of Dir..About how to contrl the contents in dir. |
13.2.3 Other Features of Argument Lists | 2018-11-15 | Option Argument & Rest Argument |
40.5 Time of Day | 2018-11-15 | the formula: high * 2**16 + low + micro * 10**−6 + pico * 10**−12. |
11.1 Sequencing | 2018-11-15 | progn prog1 prog2 |
13.5 Calling Functions | 2018-11-15 | funcall & apply |
13.11 Advising Emacs Lisp Functions | 2018-11-15 | advice-add & advice-remove & add-function & remove-function |
23.2.7 Tabulated List mode | 2018-11-16 | Tabulated List mode is a major mode for displaying tabulated data |
4.5 Comparison of Characters and Strings | 2018-12-26 | Characters and Strings comparing module. |
11 Loops and Recursion | 2019-01-03 | while、dolist、recursion |
7.5 setcar | 2019-01-04 | setcar is set the car of a list to a new value. |
7.6 setcdr | 2019-01-04 | setcdr is set the cdr of a list to a new value. |
5. Lists | 2019-01-04 | A list represents a sequence of zero or more elements (which may be any Lisp objects). |
6. Sequences, Arrays, and Vectors | 2019-01-04 | The sequence type is the union of two other Lisp types: lists and arrays. In other words, any list is a sequence, and any array is a sequence. The common property that all sequences have is that each is an ordered collection of elements. |
2.3.6 Cons Cell and List Types | 2019-01-04 | A cons cell is an object that consists of two slots, called the car slot and the cdr slot. |
(required-vars... [&optional optional-vars...] [&rest rest-var])
20.7 If either of these functions is called in a command that was invoked using the mouse—more precisely,
if last-nonmenu-event (see Command Loop Info) is either nil or a list—then it uses a dialog box or pop-up menu to ask the question.
Otherwise, it uses keyboard input. You can force use either of the mouse or of keyboard input by binding last-nonmenu-event to a suitable value around the call.
When/why should I use progn? – 日常被沙雕网友坑..
It is worth noting that using progn works in both cases, while omitting it only works if the macro accepts multiple forms.
As a result of this, some people prefer to simply always use progn,because it will always work.
2 Org
topic | date | contents |
---|---|---|
11.5 Literal examples | 2018-11-22 | dont'knoe |
11.1 Paragraphs, line breaks, and quoting | 2018-11-22 | VERSE, QUOTE, CENTER |
11.2 Emphasis and monospace | 2018-11-22 | bold, italic, underlined, verbatim and code , and, if you must, ‘+strike-through+’. |
11.3 Horizontal rules | 2018-11-22 | A line consisting of only dashes, and at least 5 of them, will be exported as a horizontal line. |
11.5Literal examples | 2018-11-22 | In literal examples, Org will interpret strings like as labels, and use them as targets for special hyperlinks like |
15.2 Easy templates | 2018-11-22 | Easy templates use an expansion mechanism, which is native to Org, in a process similar to yasnippet and other Emacs template expansion packages. |
Python Babel | 2018-11-25 | Python source code blocks in Org Mode |