Changeset a60edf2 for commands.c


Ignore:
Timestamp:
Jul 11, 2009, 1:14:35 PM (15 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
2da7348
Parents:
7f0c26f
git-author:
Nelson Elhage <nelhage@mit.edu> (07/07/09 22:49:21)
git-committer:
Nelson Elhage <nelhage@mit.edu> (07/11/09 13:14:35)
Message:
Implement kill-region, copy-region-as-kill, and yank.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    r7f0c26f ra60edf2  
    889889                  OWL_CTX_EDIT,
    890890                  "exchanges the point and the mark",
     891                  "", ""),
     892
     893  OWLCMD_VOID_CTX("edit:copy-region-as-kill", owl_editwin_copy_region_as_kill,
     894                  OWL_CTX_EDIT,
     895                  "copy the text between the point and the mark",
     896                  "", ""),
     897
     898  OWLCMD_VOID_CTX("edit:kill-region", owl_editwin_kill_region,
     899                  OWL_CTX_EDIT,
     900                  "kill text between the point and the mark",
     901                  "", ""),
     902
     903  OWLCMD_VOID_CTX("edit:yank", owl_editwin_yank,
     904                  OWL_CTX_EDIT,
     905                  "insert the current text from the kill buffer",
    891906                  "", ""),
    892907
Note: See TracChangeset for help on using the changeset viewer.