~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/content/xbl/builtin/input-fields-base.inc

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
    <handler event="keypress" keycode="VK_LEFT" command="cmd_charPrevious"/>
 
2
    <handler event="keypress" keycode="VK_RIGHT" command="cmd_charNext"/>
 
3
    <handler event="keypress" keycode="VK_LEFT" modifiers="shift"
 
4
        command="cmd_selectCharPrevious"/>
 
5
    <handler event="keypress" keycode="VK_RIGHT" modifiers="shift"
 
6
        command="cmd_selectCharNext"/>
 
7
 
 
8
    <!-- Cut/copy/paste/undo -->
 
9
    <handler event="keypress" key="c" modifiers="accel" command="cmd_copy"/>
 
10
    <handler event="keypress" key="x" modifiers="accel" command="cmd_cut"/>
 
11
    <handler event="keypress" key="v" modifiers="accel" command="cmd_paste"/>
 
12
    <handler event="keypress" key="z" command="cmd_redo" modifiers="accel,shift" />
 
13
    <handler event="keypress" key="z" modifiers="accel" command="cmd_undo"/>
 
14