ELVIS.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:5k
源码类别:

操作系统开发

开发平台:

C/C++

  1. ELVIS(1)                  Minix Programmer's Manual                   ELVIS(1)
  2. NAME
  3.      elvis, ex, vi - The editor
  4. SYNOPSIS
  5.      elvis [flags] [+cmd] [files...]
  6. DESCRIPTION
  7.      Elvis is a text editor which emulates vi/ex.
  8.      On systems which pass the program name as an argument, such as  Unix  and
  9.      Minix, you may also install elvis under the names "ex", "vi", "view", and
  10.      "input".  These extra names would normally be links  to  elvis;  see  the
  11.      "ln" shell command.
  12.      When elvis is invoked as "vi",  it  behaves  exactly  as  though  it  was
  13.      invoked  as  "elvis".   However,  if you invoke elvis as "view", then the
  14.      readonly option is set as though you had given it the "-R" flag.  If  you
  15.      invoke  elvis as "ex", then elvis will start up in the colon command mode
  16.      instead of the visual command mode, as though you had given it  the  "-e"
  17.      flag.  If you invoke elvis as "input" or "edit", then elvis will start up
  18.      in input mode, as though the "-i" flag was given.
  19. OPTIONS
  20.      -r   To the real vi, this flag means  that  a  previous  edit  should  be
  21.           recovered.  Elvis, though, has a separate program, called elvrec(1),
  22.           for recovering files.  When you invoke elvis  with  -r,  elvis  will
  23.           tell you to run elvrec.
  24.      -R   This sets the "readonly" option, so you won't accidentally overwrite
  25.           a file.
  26.      -t tag
  27.           This causes elvis to start editing at the given tag.
  28.      -m [file]
  29.           Elvis will search through file for  something  that  looks  like  an
  30.           error  message  from  a  compiler.   It  will then begin editing the
  31.           source file that caused the error, with the cursor  sitting  on  the
  32.           line  where  the error was detected.  If you don't explicitly name a
  33.           file, then "errlist" is assumed.
  34.      -e   Elvis will start up in colon command mode.
  35.      -v   Elvis will start up in visual command mode.
  36.      -i   Elvis will start up in input mode.
  37.                                                                              1
  38. ELVIS(1)                  Minix Programmer's Manual                   ELVIS(1)
  39.      -w winsize
  40.           Sets the "window" option's value to winsize.
  41.      +command or -c command
  42.           If you use the +command parameter, then  after  the  first  file  is
  43.           loaded  command  is  executed  as  an EX command.  A typical example
  44.           would be "elvis +237 foo", which would cause elvis to start  editing
  45.           foo  and  then  move directly to line 237.  The "-c command" variant
  46.           was added for UNIX SysV compatibility.
  47. FILES
  48.      /tmp/elv*
  49.           During editing, elvis stores text in a temporary  file.   For  UNIX,
  50.           this  file  will  usually  be  stored in the /tmp directory, and the
  51.           first three characters  will  be  "elv".   For  other  systems,  the
  52.           temporary  files  may  be  stored  someplace  else; see the version-
  53.           specific section of the documentation.
  54.      tags This is the database used by the :tags command and  the  -t  option.
  55.           It is usually created by the ctags(1) program.
  56.      .exrc or elvis.rc
  57.           On UNIX-like systems, a file called ".exrc" in your  home  directory
  58.           is executed as a series of ex commands.  A file by the same name may
  59.           be executed in the current directory,  too.   On  non-UNIX  systems,
  60.           ".exrc"  is  usually an invalid file name; there, the initialization
  61.           file is called "elvis.rc" instead.
  62. SEE ALSO
  63.      ctags(1), ref(1), virec(1), elvis(9).
  64.      Elvis - A Clone of Vi/Ex, the complete elvis documentation.
  65. BUGS
  66.      There is no LISP support.  Certain other features are missing, too.
  67.      Auto-indent mode is not quite compatible with the real vi.   Among  other
  68.      things, 0^D and ^^D don't do what you might expect.
  69.      Long lines are displayed differently.  The real vi wraps long lines  onto
  70.      multiple rows of the screen, but elvis scrolls sideways.
  71. AUTHOR
  72.      Steve Kirkendall
  73.      kirkenda@cs.pdx.edu
  74.                                                                              2
  75. ELVIS(1)                  Minix Programmer's Manual                   ELVIS(1)
  76.      Many other people have worked to port elvis to various operating systems.
  77.      To  see  who deserves credit, run the :version command from within elvis,
  78.      or look in the system-specific section of the complete documentation.
  79.                                                                              3