LimeChat パッチ

  • keyeventhandler.rb
    • ショートカットキーをセット
--- appcontroller.rb.org	2009-02-04 13:41:15.000000000 +0900
+++ appcontroller.rb	2009-02-04 13:41:44.000000000 +0900
@@ -610,7 +610,9 @@
     handler(:enter, :ctrl) { sendText(:notice); true }
     handler(:enter, :alt) { @menu.onPasteDialog(nil); true }
     handler(:up, :ctrl) { move(:up); true }
+    handler(:";", :ctrl) { move(:up); true }
     handler(:down, :ctrl) { move(:down); true }
+    handler(:"'", :ctrl) { move(:down); true }
     handler(:left, :ctrl) { move(:left); true }
     handler(:right, :ctrl) { move(:right); true }
     handler(:up, :cmd) { move(:up, :active); true }