Changeset 435d6b2 for commands.c


Ignore:
Timestamp:
Jul 17, 2009, 10:42:58 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:
b4ef908
Parents:
2f2a643
Message:
Rename 'editmulti:' commands to 'edit:'.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    r2fc8397 r435d6b2  
    916916                  "", ""),
    917917
    918   OWLCMD_VOID_CTX("editmulti:move-up-line", owl_editwin_key_up,
     918  OWLCMD_VOID_CTX("edit:move-up-line", owl_editwin_key_up,
    919919                  OWL_CTX_EDITMULTI,
    920920                  "moves the cursor up one line",
    921921                  "", ""),
    922922
    923   OWLCMD_VOID_CTX("editmulti:move-down-line", owl_editwin_key_down,
     923  OWLCMD_VOID_CTX("edit:move-down-line", owl_editwin_key_down,
    924924                  OWL_CTX_EDITMULTI,
    925925                  "moves the cursor down one line",
    926926                  "", ""),
    927927
    928   OWLCMD_VOID_CTX("editmulti:done", owl_command_editmulti_done,
     928  OWLCMD_VOID_CTX("edit:done", owl_command_edit_done,
    929929                  OWL_CTX_EDITMULTI,
    930930                  "completes the command (eg, sends message being composed)",
    931931                  "", ""),
    932932
    933   OWLCMD_VOID_CTX("editmulti:done-or-delete", owl_command_editmulti_done_or_delete,
     933  OWLCMD_VOID_CTX("edit:done-or-delete", owl_command_edit_done_or_delete,
    934934                  OWL_CTX_EDITMULTI,
    935935                  "completes the command, but only if at end of message",
    936936                  "",
    937937                  "If only whitespace is to the right of the cursor,\n"
    938                   "runs 'editmulti:done'.\n"\
     938                  "runs 'edit:done'.\n"\
    939939                  "Otherwise runs 'edit:delete-next-char'\n"),
    940940
    941   OWLCMD_VOID_CTX("editmulti:forward-paragraph", owl_editwin_forward_paragraph,
     941  OWLCMD_VOID_CTX("edit:forward-paragraph", owl_editwin_forward_paragraph,
    942942                  OWL_CTX_EDITMULTI,
    943943                  "Move forward to end of paragraph.",
     
    945945                  "Move the point to the end of the current paragraph"),
    946946
    947   OWLCMD_VOID_CTX("editmulti:backward-paragraph", owl_editwin_backward_paragraph,
     947  OWLCMD_VOID_CTX("edit:backward-paragraph", owl_editwin_backward_paragraph,
    948948                  OWL_CTX_EDITMULTI,
    949949                  "Move backward to the start of paragraph.",
     
    27912791
    27922792
    2793 void owl_command_editmulti_done(owl_editwin *e)
     2793void owl_command_edit_done(owl_editwin *e)
    27942794{
    27952795  owl_history *hist=owl_editwin_get_history(e);
     
    28062806}
    28072807
    2808 void owl_command_editmulti_done_or_delete(owl_editwin *e)
     2808void owl_command_edit_done_or_delete(owl_editwin *e)
    28092809{
    28102810  if (owl_editwin_is_at_end(e)) {
    2811     owl_command_editmulti_done(e);
     2811    owl_command_edit_done(e);
    28122812  } else {
    28132813    owl_editwin_delete_char(e);
Note: See TracChangeset for help on using the changeset viewer.