Work around MinGW mangling of "host:/path"
[msysgit/historical-msysgit.git] / mingw / info / gdb / Commands-For-Text.html
blobd7c372b37afe8ab046530347d95d467895297258
1 <html lang="en">
2 <head>
3 <title>Debugging with GDB</title>
4 <meta http-equiv="Content-Type" content="text/html">
5 <meta name="description" content="Debugging with GDB">
6 <meta name="generator" content="makeinfo 4.3">
7 <link href="http://www.gnu.org/software/texinfo/" rel="generator-home">
8 </head>
9 <body>
10 <div class="node">
11 <p>
12 Node:<a name="Commands%20For%20Text">Commands For Text</a>,
13 Next:<a rel="next" accesskey="n" href="Commands-For-Killing.html#Commands%20For%20Killing">Commands For Killing</a>,
14 Previous:<a rel="previous" accesskey="p" href="Commands-For-History.html#Commands%20For%20History">Commands For History</a>,
15 Up:<a rel="up" accesskey="u" href="Bindable-Readline-Commands.html#Bindable%20Readline%20Commands">Bindable Readline Commands</a>
16 <hr><br>
17 </div>
19 <h4 class="subsection">Commands For Changing Text</h4>
21 <dl>
22 <dt><code>delete-char (C-d)</code>
23 <dd>Delete the character at point. If point is at the
24 beginning of the line, there are no characters in the line, and
25 the last character typed was not bound to <code>delete-char</code>, then
26 return <small>EOF</small>.
28 <br><dt><code>backward-delete-char (Rubout)</code>
29 <dd>Delete the character behind the cursor. A numeric argument means
30 to kill the characters instead of deleting them.
32 <br><dt><code>forward-backward-delete-char ()</code>
33 <dd>Delete the character under the cursor, unless the cursor is at the
34 end of the line, in which case the character behind the cursor is
35 deleted. By default, this is not bound to a key.
37 <br><dt><code>quoted-insert (C-q or C-v)</code>
38 <dd>Add the next character typed to the line verbatim. This is
39 how to insert key sequences like <kbd>C-q</kbd>, for example.
41 <br><dt><code>tab-insert (M-&lt;TAB&gt;)</code>
42 <dd>Insert a tab character.
44 <br><dt><code>self-insert (a, b, A, 1, !, ...)</code>
45 <dd>Insert yourself.
47 <br><dt><code>transpose-chars (C-t)</code>
48 <dd>Drag the character before the cursor forward over
49 the character at the cursor, moving the
50 cursor forward as well. If the insertion point
51 is at the end of the line, then this
52 transposes the last two characters of the line.
53 Negative arguments have no effect.
55 <br><dt><code>transpose-words (M-t)</code>
56 <dd>Drag the word before point past the word after point,
57 moving point past that word as well.
59 <br><dt><code>upcase-word (M-u)</code>
60 <dd>Uppercase the current (or following) word. With a negative argument,
61 uppercase the previous word, but do not move the cursor.
63 <br><dt><code>downcase-word (M-l)</code>
64 <dd>Lowercase the current (or following) word. With a negative argument,
65 lowercase the previous word, but do not move the cursor.
67 <br><dt><code>capitalize-word (M-c)</code>
68 <dd>Capitalize the current (or following) word. With a negative argument,
69 capitalize the previous word, but do not move the cursor.
71 </dl>
73 </body></html>