minibuffer.user.js が Shift+Space を認識するようになるパッチ by Constellation

http://utatane.tumblr.com/post/114868232/minibuffer-shift-space

--- minibuffer.user.js	2009-05-30 00:08:45.000000000 +0900
+++ minibuffer.patched.user.js	2009-05-30 00:07:38.000000000 +0900
@@ -147,9 +147,9 @@
 	  if(!this.capture &&
 	     this.through_input_elements &&
 	     /^(?:input|textarea)$/.test(aEvent.target.nodeName.toLowerCase())) return;
-	  var ch = (!aEvent.shiftKey && this.keyCodeStr[aEvent.keyCode]) ||
-	           (!aEvent.shiftKey && this.whichStr[aEvent.which]) ||
-	           String.fromCharCode(aEvent.which);
+    var ch = ((aEvent.keyCode in this.keyCodeStr) && (aEvent.shiftKey? 'SHIFT-' + this.keyCodeStr[aEvent.keyCode] : this.keyCodeStr[aEvent.keyCode])) ||
+             ((aEvent.which in this.whichStr) && (aEvent.shiftKey? 'SHIFT-' + this.whichStr[aEvent.which] : this.whichStr[aEvent.which])) ||
+             String.fromCharCode(aEvent.which);
 	  var kf = this.findByEvent(aEvent, ch);
 	  var preventDefault = this.prevent_event;
 //	  log(aEvent.keyCode, aEvent.which, ch,kf, aEvent.shiftKey);

coderepos 弄れるかた、はやく本家の minibuffer.user.js に取り込んでください。お願いシマス!