aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXue Fuqiao2013-05-25 10:17:54 +0800
committerXue Fuqiao2013-05-25 10:17:54 +0800
commit5f880a3e329133f19b7aa53a47eb615fa77211fd (patch)
tree6691227c11041ee370ab1cafb5417c6a9be57cc3
parentcce6beebb7cb519dc710e15c5e677a671c098fef (diff)
downloademacs-5f880a3e329133f19b7aa53a47eb615fa77211fd.tar.gz
emacs-5f880a3e329133f19b7aa53a47eb615fa77211fd.zip
* refcards/refcard.tex: Refine some entries. (Bug#14087)
-rw-r--r--etc/ChangeLog2
-rw-r--r--etc/refcards/refcard.tex17
2 files changed, 15 insertions, 4 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 41fe18975d3..c92720bccc8 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,5 +1,7 @@
12013-05-25 Xue Fuqiao <xfq.free@gmail.com> 12013-05-25 Xue Fuqiao <xfq.free@gmail.com>
2 2
3 * refcards/refcard.tex: Refine some entries. (Bug#14087)
4
3 * refcards/dired-ref.tex: Refine some entries. (Bug#14072) 5 * refcards/dired-ref.tex: Refine some entries. (Bug#14072)
4 6
52013-05-24 Fabrice Niessen <fni@missioncriticalit.com> 72013-05-24 Fabrice Niessen <fni@missioncriticalit.com>
diff --git a/etc/refcards/refcard.tex b/etc/refcards/refcard.tex
index 84e19b03067..c930eb27e28 100644
--- a/etc/refcards/refcard.tex
+++ b/etc/refcards/refcard.tex
@@ -355,6 +355,7 @@ If Emacs is still searching, \kbd{C-g} cancels only the part not matched.
355\key{scroll current line to center, top, bottom}{C-l} 355\key{scroll current line to center, top, bottom}{C-l}
356 356
357\key{goto line}{M-g g} 357\key{goto line}{M-g g}
358\key{goto char}{M-g c}
358\key{back to indentation}{M-m} 359\key{back to indentation}{M-m}
359 360
360\section{Killing and Deleting} 361\section{Killing and Deleting}
@@ -504,6 +505,7 @@ minibuffer. Type \kbd{F10} to activate menu bar items on text terminals.
504\key{check spelling of current word}{M-\$} 505\key{check spelling of current word}{M-\$}
505\metax{check spelling of all words in region}{M-x ispell-region} 506\metax{check spelling of all words in region}{M-x ispell-region}
506\metax{check spelling of entire buffer}{M-x ispell-buffer} 507\metax{check spelling of entire buffer}{M-x ispell-buffer}
508\metax{toggle on-the-fly spell checking}{M-x flyspell-mode}
507 509
508\section{Tags} 510\section{Tags}
509 511
@@ -518,6 +520,7 @@ minibuffer. Type \kbd{F10} to activate menu bar items on text terminals.
518\section{Shells} 520\section{Shells}
519 521
520\key{execute a shell command}{M-!} 522\key{execute a shell command}{M-!}
523\key{execute a shell command asynchronously}{M-\&}
521\key{run a shell command on the region}{M-|} 524\key{run a shell command on the region}{M-|}
522\key{filter region through a shell command}{C-u M-|} 525\key{filter region through a shell command}{C-u M-|}
523\key{start a shell in window \kbd{*shell*}}{M-x shell} 526\key{start a shell in window \kbd{*shell*}}{M-x shell}
@@ -554,9 +557,12 @@ minibuffer. Type \kbd{F10} to activate menu bar items on text terminals.
554\key{zero or more repeats}{*} 557\key{zero or more repeats}{*}
555\key{one or more repeats}{+} 558\key{one or more repeats}{+}
556\key{zero or one repeat}{?} 559\key{zero or one repeat}{?}
560\key{quote special characters}{\\}
557\key{quote regular expression special character {\it c\/}}{\\{\it c}} 561\key{quote regular expression special character {\it c\/}}{\\{\it c}}
558\key{alternative (``or'')}{\\|} 562\key{alternative (``or'')}{\\|}
559\key{grouping}{\\( {\rm$\ldots$} \\)} 563\key{grouping}{\\( {\rm$\ldots$} \\)}
564\key{shy grouping}{\\(:? {\rm$\ldots$} \\)}
565\key{explicit numbered grouping}{\\(:NUM {\rm$\ldots$} \\)}
560\key{same text as {\it n\/}th group}{\\{\it n}} 566\key{same text as {\it n\/}th group}{\\{\it n}}
561\key{at word break}{\\b} 567\key{at word break}{\\b}
562\key{not at word break}{\\B} 568\key{not at word break}{\\B}
@@ -565,12 +571,15 @@ minibuffer. Type \kbd{F10} to activate menu bar items on text terminals.
565\threecol{{\bf entity}}{{\bf match start}}{{\bf match end}} 571\threecol{{\bf entity}}{{\bf match start}}{{\bf match end}}
566\threecol{line}{^}{\$} 572\threecol{line}{^}{\$}
567\threecol{word}{\\<}{\\>} 573\threecol{word}{\\<}{\\>}
574\threecol{symbol}{\\_<}{\\_>}
568\threecol{buffer}{\\`}{\\'} 575\threecol{buffer}{\\`}{\\'}
576%% FIXME: "`" and "'" isn't displayed correctly in the output PDF file
569 577
570\threecol{{\bf class of characters}}{{\bf match these}}{{\bf match others}} 578\threecol{{\bf class of characters}}{{\bf match these}}{{\bf match others}}
571\threecol{explicit set}{[ {\rm$\ldots$} ]}{[^ {\rm$\ldots$} ]} 579\threecol{explicit set}{[ {\rm$\ldots$} ]}{[^ {\rm$\ldots$} ]}
572\threecol{word-syntax character}{\\w}{\\W} 580\threecol{word-syntax character}{\\w}{\\W}
573\threecol{character with syntax {\it c}}{\\s{\it c}}{\\S{\it c}} 581\threecol{character with syntax {\it c}}{\\s{\it c}}{\\S{\it c}}
582\threecol{character with category {\it c}}{\\c{\it c}}{\\C{\it c}}
574} 583}
575 584
576\section{International Character Sets} 585\section{International Character Sets}
@@ -592,7 +601,7 @@ Moving within a node:
592 601
593\key{scroll forward}{SPC} 602\key{scroll forward}{SPC}
594\key{scroll reverse}{DEL} 603\key{scroll reverse}{DEL}
595\key{beginning of node}{. {\rm (dot)}} 604\key{beginning of node}{b}
596 605
597Moving between nodes: 606Moving between nodes:
598 607
@@ -640,7 +649,7 @@ Other:
640\key{eval current {\bf defun}}{C-M-x} 649\key{eval current {\bf defun}}{C-M-x}
641\metax{eval {\bf region}}{M-x eval-region} 650\metax{eval {\bf region}}{M-x eval-region}
642\key{read and eval minibuffer}{M-:} 651\key{read and eval minibuffer}{M-:}
643\metax{load from standard system directory}{M-x load-library} 652\metax{load a Lisp library from {\bf load-path}}{M-x load-library}
644 653
645\section{Simple Customization} 654\section{Simple Customization}
646 655
@@ -669,7 +678,7 @@ An example:
669\beginexample% 678\beginexample%
670(defun this-line-to-top-of-window (line) 679(defun this-line-to-top-of-window (line)
671 "Reposition current line to top of window. 680 "Reposition current line to top of window.
672With ARG, put point on line ARG." 681With prefix argument LINE, put point on LINE."
673 (interactive "P") 682 (interactive "P")
674 (recenter (if (null line) 683 (recenter (if (null line)
675 0 684 0
@@ -677,7 +686,7 @@ With ARG, put point on line ARG."
677\endexample 686\endexample
678 687
679The \kbd{interactive} spec says how to read arguments interactively. 688The \kbd{interactive} spec says how to read arguments interactively.
680Type \kbd{C-h f interactive} for more details. 689Type \kbd{C-h f interactive RET} for more details.
681 690
682\copyrightnotice 691\copyrightnotice
683 692