Change conkeror "command line" position?

View: New views
3 Messages — Rating Filter:   Alert me  

Change conkeror "command line" position?

by Piter_ :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi All.
Is there any way to moveĀ  "conkeror command line" (can't find the correct word for it) from bottom of screen to the top?
Thanks.
Petro

_______________________________________________
Conkeror mailing list
Conkeror@...
https://www.mozdev.org/mailman/listinfo/conkeror

Re: Change conkeror "command line" position?

by Deniz Dogan-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

2009/8/10 Piter_ <x.piter@...>:
> Hi All.
> Is there any way to moveĀ  "conkeror command line" (can't find the correct
> word for it) from bottom of screen to the top?
> Thanks.
> Petro
>

No, today there is no such functionality. I'm not sure exactly how
difficult this would be to implement, given that the completion window
and such would have to support it as well. Either way, I don't think
this is anywhere near the top of any active developer's TODO list at
the moment. But of course, you're very welcome to join in! :)

--
Deniz Dogan
_______________________________________________
Conkeror mailing list
Conkeror@...
https://www.mozdev.org/mailman/listinfo/conkeror

Re: Change conkeror "command line" position?

by Daniel Clemente-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


  Try it, this seems to be rather easy. I changed the order of elements in conkeror.xul (see below) and I have now the mode line above the content bufffer; everything works ok and the autocompletion window shows over the mode line window when needed.
  But I still prefer it below :-)

-- Daniel


diff --git a/content/conkeror.xul b/content/conkeror.xul
index 24b3559..0b0c009 100644
--- a/content/conkeror.xul
+++ b/content/conkeror.xul
@@ -41,15 +41,15 @@ COPYING file.
   <panel id="popup_autocomplete" type="autocomplete" noautofocus="true"/>
 
   <vbox flex="1">
-    <deck flex="1" id="buffer-container">
-      <vbox flex="1">
-        <browser flex="1" type="content-primary" disablehistory="true" autocompletepopup="popup_autocomplete"/>
-      </vbox>
-    </deck>
     <hbox id="minibuffer" minibuffermode="message">
       <label class="minibuffer" id="minibuffer-message" flex="1" crop="right" value=""/>
       <label class="minibuffer" id="minibuffer-prompt" crop="left" value=""/>
       <textbox class="plain" id="minibuffer-input" flex="1"/>
     </hbox>
+    <deck flex="1" id="buffer-container">
+      <vbox flex="1">
+        <browser flex="1" type="content-primary" disablehistory="true" autocompletepopup="popup_autocomplete"/>
+      </vbox>
+    </deck>
   </vbox>
 </window>



_______________________________________________
Conkeror mailing list
Conkeror@...
https://www.mozdev.org/mailman/listinfo/conkeror