Difference between revisions of "Keyboard macros"

From WikEmacs
Jump to navigation Jump to search
(Fashionable on line clothing shop,Offers fashion forward clothing,Trends released clothes solutions for sale)
m (undo vandalism once more)
Line 1: Line 1:
Representing a sharp rise in worldwide production of yarn yarn production in the 1st quarter of 2013 worldwide yarn production, which can be the result of Asia, North and South America, greater yields, while yields declined in Europe. Inside a year, determined by worldwide yarn production also rose, which can be the result of Asia, South America and European higher yield, but the yield decreased significantly in North America. The second quarter is a lot more gratifying: Asia rose 7.7%, in particular China, to 9.9%; North and South America are also great, but a slight decline in Europe. Within the initially quarter of 2013, international yarn stocks remained practically unchanged, Asia and Europe to make a lower inventory, inventory increased slightly in South America. Similarly, in a year, based on international yarn stocks remained virtually unchanged. Europe and Brazil yarn orders inside the initially quarter of 2013, a slight raise inside the previous quarter. Year basis, the increase in yarn European orders, but a lesser decline in Brazil. Compared using the similar period last year, worldwide yarn production increased by 7%, like Europe and South America rose 7.6% and 4.6%, respectively, decrease production in North America and Europe. In the initially quarter of 2013, compared using the preceding quarter global fabric inventories decline, which is a outcome of inventory reductions in South America and North America, but Asian stocks larger. Compared using the similar period in 2012, the international fabric inventories fell, that is a outcome of South America, North America and Europe, low inventory, nevertheless it will not be adequate to compensate for high fabric inventory in Asia. Within the 1st quarter of 2013, Brazils fabric orders improved, but European orders fell. South America and Europe have declined year on year fabric orders. 2013 second-quarter international fabric production in the varied regions of your rally was high quality at 4.8% from the increase, specially in Asia, growth of 5.4%. Compared with a year earlier, rising international fabric production continued decent momentum production in Asia up by 9.6% to 4.2% increase in soaring and European markets. But America has ushered within a sharp decline of 20.8%. Outlook forecast for the third quarter of 2013 yarn production, the outlook in Europe, North America, South America remained normal, Europe is more bleak. The identical is anticipated for the production of textiles can also be successful. United states of america, "Textile World" also published a comparable estimate that way more optimistic for the fourth quarter 2013 area continues to be Asia, Europe and North America, mentioned neutral. 2013 Worldwide yarn stocks rose slightly in the second quarter, as a result of greater inventories in Europe, rose four.4%, although Asia rose 1.2%. Inventories in South America decreased by 1.9%. As a result, with the increasing trend regional inventories, total worldwide yarn inventories improved three.5%. Regardless of the enhance within the North American marketplace stocks, international fabric production in the second quarter of 2013 has declined, due to the South American industry stocks fell 7.8%. Compared with the similar period last year, worldwide fabric inventories fell by four.6%, as in North America, Europe and South America stocks are decreased, particularly in South America, fell as significantly as 20%. But on the other hand, Asian stocks was up 1.1%. 2013 second quarter, textile orders from Brazil ferocious rally, up 25.6%, but in Europe fell by 1.7%. And last year, the Brazilian textile stocks rose 1.2 percent in Europe fell 0.3%. As for yarn orders in Europe and Brazil decreased by 5.5% and 1.5%. Compared with all the fourth quarter of yarn orders final year, a decrease of 3.7% in Europe and Brazil reached 15.8%.
+
{{Manual|emacs|Basic-Keyboard-Macro|Basic Keyboard Macro}}
 +
 
 +
'''Keyboard macros''' can be used to automate or repeat tedious editing tasks in Emacs.
 +
 
 +
 
 +
==Basic Use==
 +
 
 +
; {{Keys|F3}}, or {{Keys|C-x (}}
 +
: Start defining a macro.
 +
; {{Keys|F4}}, or {{Keys|C-x )}}
 +
: Stop defining a macro.
 +
; {{Keys|F4}}, or {{Keys|C-x e}}
 +
: Execute a macro
 +
; {{Keys|C-u 37 C-x e}} or {{Keys|C-u 37 F4}}
 +
: Execute a macro multiple times, using [[prefix argument]]
 +
; {{Keys|C-u 0 C-x e}}
 +
: Execute a macro until the end of the buffer
 +
 
 +
==Example usage==
 +
Consider the standard <code>*scratch*</code> buffer:
 +
 
 +
<pre>
 +
;; This buffer is for notes you don't want to save, and for Lisp evaluation.
 +
;; If you want to create a file, visit that file with C-x C-f,
 +
;; then enter the text in that file's own buffer.
 +
</pre>
 +
 
 +
Suppose you want to remove the first occurrence of the letter "a" on every row in that piece of text. You could write a [[regular expression]] to do the job, but let's assume you want to use a keyboard macro this time.
 +
 
 +
# Make sure [[point]] is at the start of the buffer.
 +
# Hit <code>C-x (</code> to start recording your macro. '''Note:''' If you hit <code>C-g</code> or if an error occurs, your keyboard macro recording will stop.
 +
# Hit <code>C-s</code> followed by <code>a</code> to find the first "a". Now, point is right after the first "a" in the text.
 +
# Hit backspace to delete that "a".
 +
 
 +
The first occurrence of "a" of the first line has been deleted. Let's move point to the beginning of the next line and then stop recording.
 +
 
 +
<ol start="5">
 +
<li>Hit <code>C-e C-f</code> to move point to the beginning of the next line.</li>
 +
<li>Hit <code>C-x )</code> to finish the recording of our macro.</li>
 +
</ol>
 +
 
 +
The macro you have just recorded performs the operation of removing the first occurrence of "a" it can find and then moving point to the next line.
 +
 
 +
<ol start="7">
 +
<li>Hit <code>C-x e</code> once to call that macro.</li>
 +
<li>Continue hitting <code>e</code> to call it several times. Hit any other key to get out of the macro repetition.</li>
 +
</ol>
 +
 
 +
==Saving macros==
 +
{{Manual|emacs|Save-Keyboard-Macro|Save Keyboard Macro}}
 +
 
 +
===Binding to a key===
 +
To bind a keyboard macro to a key use <code>C-x C-k b</code>. To avoid problems caused by overriding existing bindings, the key sequences <code>C-x C-k 0</code> through <code>C-x C-k 9</code> and <code>C-x C-k A</code> through <code>C-x C-k Z</code> are reserved for your own keyboard macro bindings. You can, however, bind a keyboard macro to whatever you like.
 +
 
 +
==Variables==
 +
 
 +
Variables can be stored in lisp or in [[registers]]. Here's an example using lisp:
 +
 
 +
<pre>
 +
[M-: (setq x 1)]
 +
<F3>
 +
Line number [C-u M-: x]
 +
[M-: (setq x (+ x 1))]
 +
<F4>
 +
</pre>
 +
 
 +
Now execute the macro four times with the command <code>C-x e e e e</code> and you get:
 +
 
 +
line number 1<br />
 +
line number 2<br />
 +
line number 3<br />
 +
line number 4

Revision as of 04:21, 9 March 2014

Basic Keyboard Macro (`(info "(emacs) Basic Keyboard Macro")')

Keyboard macros can be used to automate or repeat tedious editing tasks in Emacs.


Basic Use

[F3], or [C-x (]
Start defining a macro.
[F4], or [C-x )]
Stop defining a macro.
[F4], or [C-x e]
Execute a macro
[C-u 37 C-x e] or [C-u 37 F4]
Execute a macro multiple times, using prefix argument
[C-u 0 C-x e]
Execute a macro until the end of the buffer

Example usage

Consider the standard *scratch* buffer:

;; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.

Suppose you want to remove the first occurrence of the letter "a" on every row in that piece of text. You could write a regular expression to do the job, but let's assume you want to use a keyboard macro this time.

  1. Make sure point is at the start of the buffer.
  2. Hit C-x ( to start recording your macro. Note: If you hit C-g or if an error occurs, your keyboard macro recording will stop.
  3. Hit C-s followed by a to find the first "a". Now, point is right after the first "a" in the text.
  4. Hit backspace to delete that "a".

The first occurrence of "a" of the first line has been deleted. Let's move point to the beginning of the next line and then stop recording.

  1. Hit C-e C-f to move point to the beginning of the next line.
  2. Hit C-x ) to finish the recording of our macro.

The macro you have just recorded performs the operation of removing the first occurrence of "a" it can find and then moving point to the next line.

  1. Hit C-x e once to call that macro.
  2. Continue hitting e to call it several times. Hit any other key to get out of the macro repetition.

Saving macros

Save Keyboard Macro (`(info "(emacs) Save Keyboard Macro")')

Binding to a key

To bind a keyboard macro to a key use C-x C-k b. To avoid problems caused by overriding existing bindings, the key sequences C-x C-k 0 through C-x C-k 9 and C-x C-k A through C-x C-k Z are reserved for your own keyboard macro bindings. You can, however, bind a keyboard macro to whatever you like.

Variables

Variables can be stored in lisp or in registers. Here's an example using lisp:

[M-: (setq x 1)]
<F3>
Line number [C-u M-: x]
[M-: (setq x (+ x 1))]
<F4>

Now execute the macro four times with the command C-x e e e e and you get:

line number 1
line number 2
line number 3
line number 4