home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 224b.lha / sprs < prev    next >
Text File  |  1989-04-08  |  2KB  |  58 lines

  1.  
  2. errors in include files hang forth        CLOSED KEL 1/19/89
  3.  
  4. forth does not recognize TAB as a word delimeter
  5.  
  6. need a word like "view" that locates and shows source but
  7. also takes you into the editor
  8.  
  9. fix bugs in vi
  10.  
  11.     : should take you to line editor, not the other screen editor
  12.       (this is sort of a mode problem, it's not that big a deal as
  13.        control-C in that editor takes you to command mode, where you
  14.        can do a v to get to vi, an ed to get to the other screen editor,
  15.        or do polyForth-line-editor-style commands there.  KEL 1/18/89
  16.  
  17.     it's leaving junk on the screen sometimes, because the compare
  18.     buffer needs to be copied into when leaving the screen if anything
  19.     changed   CLOSED 1/18/89 KEL
  20.  
  21.     control chars and stuff don't print as anything.  this makes vi
  22.     look like it's screwing up sometimes.  need a version of 'type'
  23.     shows funny characters in inverse or something
  24.  
  25.     dw doesn't work, other delete commands don't work
  26.  
  27.     search is broken, badly, and slow
  28.  
  29.     need multiscreen search
  30.  
  31. enhance vi
  32.     screen number stack or something?
  33.  
  34.     mark more than one screen, maybe like real vi
  35.  
  36.     zap (z) needs to be harder to do
  37.  
  38.     maybe ZZ to get you out...I'm sure used to it
  39.  
  40.     undo needs to be more consistent, not just undo all disk i/o since
  41.     the last write, as it is now.  perhaps the snap buffer from my
  42.     curses-type screen stuff can be used, a couple of levels, etc
  43.  
  44.     upper/lower case support for different operations; that is,
  45.     o opens below, O opens at
  46.  
  47.     need it to be more clear when we're in VI that we're in VI, since
  48.     there are two screen editors    CLOSED 1/18/89 KEL, it now tells
  49.     you when it's in vi.
  50.  
  51.  
  52. make the error trap take you into vi rather than into the other editor
  53. CLOSED 1/18/89 KEL, it's kind of brain-damaged inside (error?), like
  54. it prints the offending word, then does a call of deferred word 'where',
  55. then prints the abort" text.  When you load vi it makes where into a
  56. no-op.  This way, you get the word and the error message, then do a
  57. 'vw' to be in vi with the cursor ON the offending word
  58.