<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Page Hosting &#187; Hosting tools</title>
	<atom:link href="http://ffchapplications.com/category/hosting-tools/feed" rel="self" type="application/rss+xml" />
	<link>http://ffchapplications.com</link>
	<description>Web Hosting &#124; Dedicated Server Hosting&#124; Cpanel Hosting &#124; VPS Hosting &#124; Windows Hosting &#124; Windows Reseller</description>
	<lastBuildDate>Sat, 30 Aug 2008 10:32:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Basic visual editor Command</title>
		<link>http://ffchapplications.com/hosting-tools/basic-visual-editor-command</link>
		<comments>http://ffchapplications.com/hosting-tools/basic-visual-editor-command#comments</comments>
		<pubDate>Thu, 27 Mar 2008 16:45:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting tools]]></category>

		<guid isPermaLink="false">http://ffchapplications.com/?p=5</guid>
		<description><![CDATA[These are the basic of vi editing, you will find quite helpful;
Editing commands
Moving around the file:
h — cursor left
i — cursor right
k — cursor up
j — cursor down
^ &#38; B — Beginning of line
$ — end of line
) — Next sentence
( — Previous sentence
} — Next Paragraph
{ — Previous Paragraph
:$ — end of file
w — [...]]]></description>
			<content:encoded><![CDATA[<p class="entry">These are the basic of vi editing, you will find quite helpful;</p>
<p>Editing commands</p>
<p>Moving around the file:</p>
<p>h — cursor left</p>
<p>i — cursor right</p>
<p>k — cursor up</p>
<p>j — cursor down</p>
<p>^ &amp; B — Beginning of line</p>
<p>$ — end of line</p>
<p>) — Next sentence</p>
<p>( — Previous sentence</p>
<p>} — Next Paragraph</p>
<p>{ — Previous Paragraph</p>
<p>:$ — end of file</p>
<p>w — one character forward</p>
<p>W — one word forward</p>
<p>:20 — go to Line no 20 or whatever number you give</p>
<p>Displaying file info:</p>
<p>^g — give name of the file, current line and total lines of a file at the bottom.</p>
<p>Inserting and appending text :</p>
<p>i — inserts text to the left of cursor</p>
<p>I — inserts in the beginning of line</p>
<p>a — appends text to right of cursor</p>
<p>A — appends to the end of line</p>
<p>Adding new line:</p>
<p>o — add a new line below the current line</p>
<p>O — adds a new line above the current line.</p>
<p>Deleting the text:</p>
<p>x — deletes text above the cursor</p>
<p>X — deletes text character on the right of cursor</p>
<p>20dd — deletes 20</p>
<p>dd — deletes current line</p>
<p>D — delete till end of current line.</p>
<p>d# — delete to where the # (j,k,l,h) specifies.</p>
<p>d/ — delete till pattern is found (forward).</p>
<p>d? — delete till pattern is found (backward).</p>
<p>d’ — delete till mark ‘char’.</p>
<p>Replacing a character &amp; word:</p>
<p>r — replace the character above the cursor.</p>
<p>R — replces characters until Esc is pressed.</p>
<p>cw — replaces the word from cursor to the end indicated by $ sign.</p>
<p>C — replaces till end of line.</p>
<p>Substitute:</p>
<p>s — subistutes current charcater.</p>
<p>S — substitutes entire line.</p>
<p>Repeating last command:</p>
<p>. — repeats the last text.</p>
<p>Undo the last change:</p>
<p>u — undo last change.<br />
U — undo changes to the current line.</p>
<p>Copy and pasting lines:</p>
<p>yy — copies the current line into buffer.<br />
5yy — copies 5 lines from the current line.<br />
p — pastes the current buffer.</p>
<p>Recovering an unsaved vi file:</p>
<p>vi -r — restores a unsaved / crashed file from buffer.</p>
<p>Searching:</p>
<p>:/name — &amp; return searches for the word name in the file</p>
<p>n — continues search forward.</p>
<p>N — searches backwards.</p>
<p>Substitution:</p>
<p>:s///g</p>
<p>Saving:</p>
<p>:w — saves the text does not quit.</p>
<p>:wq — saves &amp; quit the editor.</p>
<p>ZZ — save &amp; quit the editor.</p>
<p>:q! — Quit without saving.</p>
<p>Miscellaneous:</p>
<p>m — mark this location and name it char.</p>
<p>‘ — (quote character) return to “line” named char.</p>
<p>` — (back-quote character) return to “place” named char.</p>
<p>‘’ or “ — (quote quote) return from last movement.</p>
<dl>
<dd>These commands allow  the <tt>vi</tt> editor screen (or window) to move up or down several lines and to be refreshed. </dd>
</dl>
<table border="1">
<tr>
<th></th>
<th align="left" nowrap="nowrap"><tt>^f</tt></th>
<td><em>move forward one screen</em></td>
</tr>
<tr>
<th></th>
<th align="left" nowrap="nowrap"><tt>^b</tt></th>
<td><em>move backward one screen</em></td>
</tr>
<tr>
<th></th>
<th align="left" nowrap="nowrap"><tt>^d</tt></th>
<td><em>move down (forward) one half screen</em></td>
</tr>
<tr>
<th></th>
<th align="left" nowrap="nowrap"><tt>^u</tt></th>
<td><em>move up (back) one half screen</em></td>
</tr>
<tr>
<th></th>
<th align="left" nowrap="nowrap"><tt>^l</tt></th>
<td><em>redraws the screen</em></td>
</tr>
<tr>
<th></th>
<th align="left" nowrap="nowrap"><tt>^r</tt></th>
<td><em>redraws the screen, removing deleted lines</em></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://ffchapplications.com/hosting-tools/basic-visual-editor-command/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
