> cat /wizhelp/editor

========================================================================
                           File Editor
========================================================================

FILE COMMANDS:
  pwd            - Current directory
  cd <dir>       - Change directory
  ls             - List files
  cat <file>     - View file
  ed <file>      - Edit file
  mkdir <dir>    - Create directory
  rm <file>      - Delete file
  cp <src> <dst> - Copy file
  mv <src> <dst> - Move/rename

EDITOR BASICS:
  a  - Append after current line
  i  - Insert before current line
  c  - Change current line
  d  - Delete current line
  p  - Print current line
  w  - Save file
  q  - Quit editor
  .  - Exit input mode

ACCESS:
  Level 1-2: Your wizroom, /lib/objects, /lib/plugins
  Level 3-4: + /lib/areas
  Level 5: Full /lib access

EXAMPLE:
  cd           (go to your home)
  ed test.py   (create new file)
  a            (append mode)
  from lib.models.entity import Room
  def load():
      return Room(name="test", description="Test room")
  .            (exit input)
  wq           (save and quit)

========================================================================    

> _