Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

vi(1) [bsd man page]

VI(1)							      General Commands Manual							     VI(1)

NAME
vi - screen oriented (visual) display editor based on ex SYNOPSIS
vi [ -t tag ] [ -r ] [ +command ] [ -l ] [ -wn ] name ... DESCRIPTION
Vi (visual) is a display oriented text editor based on ex(1). Ex and vi run the same code; it is possible to get to the command mode of ex from within vi and vice-versa. The Vi Quick Reference card and the Introduction to Display Editing with Vi provide full details on using vi. FILES
See ex(1). SEE ALSO
ex (1), edit (1), ``Vi Quick Reference'' card, ``An Introduction to Display Editing with Vi''. AUTHOR
William Joy Mark Horton added macros to visual mode and is maintaining version 3 BUGS
Software tabs using ^T work only immediately after the autoindent. Left and right shifts on intelligent terminals don't make use of insert and delete character operations in the terminal. The wrapmargin option can be fooled since it looks at output columns when blanks are typed. If a long word passes through the margin and onto the next line without a break, then the line won't be broken. Insert/delete within a line can be slow if tabs are present on intelligent terminals, since the terminals need help in doing this cor- rectly. Saving text on deletes in the named buffers is somewhat inefficient. The source command does not work when executed as :source; there is no way to use the :append, :change, and :insert commands, since it is not possible to give more than one line of input to a : escape. To use these on a :global you must Q to ex command mode, execute them, and then reenter the screen editor with vi or open. 3rd Berkeley Distribution April 29, 1985 VI(1)

Check Out this Related Man Page

view(1) 						      General Commands Manual							   view(1)

Name
       view - displays a file using the vi commands

Syntax
       view [-t tag] [-r] [+command] [-l] [-wn] [-x] name...

Description
       The  command  displays a text file.  The command and the command run almost the same code except that in changes to a file are not allowed.
       It is possible to get to the command mode of from within both.

       The following is a list of some of the commands. See the vi Beginner's Reference Card and the "Introduction to Display Editing with vi"	in
       the Supplementary Documents, Volume 1: General User for more details that can be helpful for using

       Screen Control Commands

	    <CTRL/L>	   Reprints current screen.

	    <CTRL/Y>	   Exposes one more line at top of screen.

	    <CTRL/E>	   Exposes one more line at bottom of screen.

       Paging Commands

	    <CTRL/F>	   Pages forward one screen.

	    <CTRL/B>	   Pages back one screen.

	    <CTRL/D>	   Pages down half screen.

	    <CTRL/U>	   Pages up half screen.

       Cursor Positioning Commands

	    j		   Moves cursor down one line, same column.

	    k		   Moves cursor up one line, same column.

	    h		   Moves cursor back one character.

	    l		   Moves cursor forward one character.

	    <RETURN>	   Moves cursor to beginning of next line.

	    0		   Moves cursor to beginning of current line.

	    $		   Moves cursor to end of current line.

	    <SPACE>	   Moves cursor forward one character.

	    nG		   Moves cursor to beginning of line n.  Default is last line of file.

	    /pattern	   Moves cursor forward to next occurrence of pattern.

	    ?pattern	   Moves cursor backward to next occurrence of pattern.

	    n		   Repeats last / or ? pattern search.

       Exiting view

	    ZZ		   Exits

	    :q		   Quits session.

Options
       -t tag	 Specifies  a  list of tag files. The tag files are preceded by a backslash () and are separated by spaces. The tag option should
		 always be the first entry.

       +command  Tells the editor to begin by executing the specified command.	An example would be +/pattern that would search for a pattern.

       -l	 Sets the showmatch and lisp options for viewing LISP code..

       -r	 Retrieves the last saved version of the name'd file in the event of a system crash. If no file is  specified,	a  list  of  saved
		 files is produced.

       -wn	 Sets  the default window size to n.  This option is useful for starting in a small window on dialups.	The -x option is available
		 only if the Encryption layered product is installed.

       -x	 Causes to prompt for a key.  The key is used to encrypt and decrypt the contents of the file.	If the	file  has  been  encrypted
		 with one key, you must use the same key to decrypt the file.

See Also
       edit(1), ex(1), vi(1)
       The Little Gray Book: An ULTRIX Primer
       The Big Gray Book: The Next Step with ULTRIX
       "An Introduction to Display Editing with vi" in the Supplementary Documents, Volume 1: General User

																	   view(1)
Man Page