diff options
| author | Lars Ingebrigtsen | 2019-08-16 14:39:52 -0700 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-08-16 14:39:52 -0700 |
| commit | e90c2176ea70006f8ab84f5ee3d0315173e96222 (patch) | |
| tree | 045d63b2d00459dbaf380e442df0b23f5abb2543 | |
| parent | 496bab789d55ff20f150dd7a7d1d9bb837fb4534 (diff) | |
| download | emacs-e90c2176ea70006f8ab84f5ee3d0315173e96222.tar.gz emacs-e90c2176ea70006f8ab84f5ee3d0315173e96222.zip | |
Add missing skeleton entries in autotype.texi
* doc/misc/autotype.texi: Add missing entries found in the doc
string to `skeleton-insert' (bug#12563).
| -rw-r--r-- | doc/misc/autotype.texi | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/misc/autotype.texi b/doc/misc/autotype.texi index 5eb45e28343..96262fcb530 100644 --- a/doc/misc/autotype.texi +++ b/doc/misc/autotype.texi | |||
| @@ -240,7 +240,11 @@ alignment. Use @code{"\n"} as the first or last string element of a | |||
| 240 | skeleton to insert a newline unconditionally. | 240 | skeleton to insert a newline unconditionally. |
| 241 | @item @code{_} | 241 | @item @code{_} |
| 242 | Interesting point. When wrapping skeletons around successive regions, they are | 242 | Interesting point. When wrapping skeletons around successive regions, they are |
| 243 | put at these places. Point is left at first @code{_} where nothing is wrapped. | 243 | put at these places. Point is left at first @code{_} where nothing is |
| 244 | wrapped. | ||
| 245 | @item @code{-} | ||
| 246 | Interesting point with no inter-region interaction; overrides | ||
| 247 | interesting point set by @code{_}. | ||
| 244 | @item @code{>} | 248 | @item @code{>} |
| 245 | Indent line according to major mode. When following element is @code{_}, and | 249 | Indent line according to major mode. When following element is @code{_}, and |
| 246 | there is an interregion that will be wrapped here, indent that interregion. | 250 | there is an interregion that will be wrapped here, indent that interregion. |
| @@ -250,6 +254,8 @@ something, do following element. | |||
| 250 | @item @code{|} | 254 | @item @code{|} |
| 251 | Logical xor. If preceding element didn't move point, i.e., usually inserted | 255 | Logical xor. If preceding element didn't move point, i.e., usually inserted |
| 252 | nothing, do following element. | 256 | nothing, do following element. |
| 257 | @item @code{@@} | ||
| 258 | Add position to @code{skeleton-positions}. | ||
| 253 | @item @code{-@var{number}} | 259 | @item @code{-@var{number}} |
| 254 | Delete preceding number characters. Depends on value of | 260 | Delete preceding number characters. Depends on value of |
| 255 | @code{skeleton-untabify}. | 261 | @code{skeleton-untabify}. |
| @@ -275,6 +281,10 @@ prompt is a lisp-expression that returns successive list-elements. | |||
| 275 | @item @code{resume:} | 281 | @item @code{resume:} |
| 276 | Ignored. Execution resumes here if the user quits during skeleton | 282 | Ignored. Execution resumes here if the user quits during skeleton |
| 277 | interpretation. | 283 | interpretation. |
| 284 | @item @code{help} | ||
| 285 | Help form during interaction with the user or @code{nil}. | ||
| 286 | @item @code{input} | ||
| 287 | Initial input (a string or a cons with index) while reading the input. | ||
| 278 | @item @code{quit} | 288 | @item @code{quit} |
| 279 | A constant which is non-@code{nil} when the @code{resume:} section was entered | 289 | A constant which is non-@code{nil} when the @code{resume:} section was entered |
| 280 | because the user quit. | 290 | because the user quit. |