home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / tptools.zip / BININST.ZIP / BICMDS.INC next >
Text File  |  1987-12-21  |  3KB  |  89 lines

  1. {                          BICMDS.INC
  2.                            INSTALL 4.0
  3.              Copyright (c) 1985, 87 by Borland International, Inc.            }
  4.  
  5. type
  6.   CommandType =
  7.   (
  8.  
  9.    {Basic cursor movements}
  10.    CmdNewLine, {0. New line in text buffer}
  11.    CmdLeftChar, {1. Left character}
  12.    CmdRightChar, {2. Right character}
  13.    CmdLeftWord, {3. Left lexeme}
  14.    CmdRightWord, {4. Right lexeme}
  15.    CmdUpLine,  {5. Up line}
  16.    CmdDownLine, {6. Down line}
  17.    CmdScrollUp, {7. Scroll up}
  18.    CmdScrollDown, {8. Scroll down}
  19.    CmdUpPage,  {9. Up page}
  20.    CmdDownPage, {10. Down page}
  21.  
  22.    {Quick movements}
  23.    CmdLeftLine, {11. Cursor to left side}
  24.    CmdRightLine, {12. Cursor to right side}
  25.    CmdTopScreen, {13. Top of screen}
  26.    CmdBottomScreen, {14. Bottom of screen}
  27.    CmdWindowTopFile, {15. Top of window}
  28.    CmdWindowBottomFile, {16. Bottom of window}
  29.    CmdUnused1, {17. not used}
  30.    CmdUnused2, {18. not used}
  31.    CmdUnused3, {19. not used}
  32.    CmdUnused4, {20. not used}
  33.    CmdJumpTopOfBlock, {21. Top of block}
  34.    CmdJumpBottomBlock, {22. Bottom of block}
  35.    CmdJumpLastPosition, {23. Previous cursor position}
  36.    CmdJumpMarker0, {24. Jump to marker 0}
  37.    CmdJumpMarker1, {25. Jump to marker 1}
  38.    CmdJumpMarker2, {26. Jump to marker 2}
  39.    CmdJumpMarker3, {27. Jump to marker 3}
  40.  
  41.    {Insertion and deletion}
  42.    CmdToggleInsert, {28. Toggle insert mode}
  43.    CmdInsertLine, {29. Inserting line}
  44.    CmdDeleteLine, {30. Delete line}
  45.    CmdDeleteLineRight, {31. Delete line right of cursor}
  46.    CmdDeleteRightWord, {32. Delete right lexeme}
  47.    CmdDeleteRightChar, {33. Delete current character}
  48.    CmdDeleteLeftChar, {34. Delete left character}
  49.  
  50.    {Blocks}
  51.    CmdBlockBegin, {35. Begin block}
  52.    CmdBlockEnd, {36. End block}
  53.    CmdBlockWord, {37. Mark current word as block}
  54.    CmdBlockHide, {38. Hide/display toggle block}
  55.    CmdSetMarker0, {39. Set marker 0}
  56.    CmdSetMarker1, {40. Set marker 0}
  57.    CmdSetMarker2, {41. Set marker 0}
  58.    CmdSetMarker3, {42. Set marker 0}
  59.    CmdBlockCopy, {43. Copy block}
  60.    CmdBlockMove, {44. Move block}
  61.    CmdBlockDelete, {45. Delete block}
  62.    CmdReadBlock, {46. Read file into window}
  63.    CmdWriteBlock, {47. Write block to file}
  64.    CmdUnused5, {48. Not used}
  65.    CmdPrintBlock, {49. Print block}
  66.    CmdSaveQuit, {50. Save file and exit}
  67.  
  68.    {tabs}
  69.    CmdTab,     {51. Tab, either fixed or "smart"}
  70.    CmdToggleAutoindent, {52. Toggle autoindent mode}
  71.    CmdToggleFixedTabs, {53. Toggle autoindent mode}
  72.  
  73.    CmdUnused6, {54. not used}
  74.    CmdUnused7, {55. not used}
  75.    CmdUnused8, {56. not used}
  76.    CmdUnused9, {57. not used}
  77.  
  78.    CmdRestoreCurrentLine, {58. Restore line as on entry}
  79.  
  80.    {Find and replace}
  81.    CmdFind,    {59. Find pattern}
  82.    CmdFindReplace, {60. Find and replace}
  83.    CmdFindNext, {61. Find next}
  84.  
  85.    CmdInsertCtrlChar, {62. Insert control character}
  86.  
  87.    CmdNull     {dummy command type}
  88.    );
  89.