From mahefa.randimbisoa at gmail.com Fri Aug 1 01:26:38 2008 From: mahefa.randimbisoa at gmail.com (mahefa randimbisoa) Date: Fri, 1 Aug 2008 11:26:38 +0300 Subject: [Vimperator] How to maximize Vimperator window. Message-ID: <2ba1fac40808010126n54681382oca32b1f72037a0f3@mail.gmail.com> When I view some sites that use popups, sometimes, Fx opens popups in a new tab, and my Fx window is then resized. I tried to resize Firefox with keyboard, but I didn't find how. :se lines or columns don't work :se fullscreen gives me a fullscreen, but I don't quite like it: my TwitterFox icon status is hidden. Is there simple commands to resize a Firefox Window, or to maximize it like when you use the menu Maximize in the window? (I'm on Win) -- Mahefa From Thomas.Svensen at fast.no Fri Aug 1 03:18:14 2008 From: Thomas.Svensen at fast.no (Thomas Svensen) Date: Fri, 1 Aug 2008 12:18:14 +0200 Subject: [Vimperator] How to maximize Vimperator window. In-Reply-To: <2ba1fac40808010126n54681382oca32b1f72037a0f3@mail.gmail.com> References: <2ba1fac40808010126n54681382oca32b1f72037a0f3@mail.gmail.com> Message-ID: Hi, My solution is to use Hoekey (http://www.bcheck.net/apps/hoekey.htm#MoveRel%3C) and configure Win+, to maximize. I also have Win+Shift+, to restore. This solution will then work for _all_ windows, not only Firefox. VERY useful. Thomas Svensen -----Original Message----- From: vimperator-bounces at mozdev.org [mailto:vimperator-bounces at mozdev.org] On Behalf Of mahefa randimbisoa Sent: 1. august 2008 10:27 To: vimperator at mozdev.org Subject: [Vimperator] How to maximize Vimperator window. When I view some sites that use popups, sometimes, Fx opens popups in a new tab, and my Fx window is then resized. I tried to resize Firefox with keyboard, but I didn't find how. :se lines or columns don't work :se fullscreen gives me a fullscreen, but I don't quite like it: my TwitterFox icon status is hidden. Is there simple commands to resize a Firefox Window, or to maximize it like when you use the menu Maximize in the window? (I'm on Win) -- Mahefa _______________________________________________ Vimperator mailing list Vimperator at mozdev.org https://www.mozdev.org/mailman/listinfo/vimperator From lars.kindler at stud.uni-goettingen.de Fri Aug 1 12:19:14 2008 From: lars.kindler at stud.uni-goettingen.de (Lars Kindler) Date: Fri, 1 Aug 2008 21:19:14 +0200 Subject: [Vimperator] How to maximize Vimperator window. In-Reply-To: References: <2ba1fac40808010126n54681382oca32b1f72037a0f3@mail.gmail.com> Message-ID: <245b3c3e0808011219u4a85edf4i657d437d1f1a7faa@mail.gmail.com> Hi, for me "Alt+Space, x" works fine. Lars On Fri, Aug 1, 2008 at 12:18 PM, Thomas Svensen wrote: > Hi, > > My solution is to use Hoekey > (http://www.bcheck.net/apps/hoekey.htm#MoveRel%3C) > and configure Win+, to maximize. I also have Win+Shift+, to restore. > This solution > will then work for _all_ windows, not only Firefox. VERY useful. > > Thomas Svensen > > > -----Original Message----- > From: vimperator-bounces at mozdev.org > [mailto:vimperator-bounces at mozdev.org] On Behalf Of mahefa randimbisoa > Sent: 1. august 2008 10:27 > To: vimperator at mozdev.org > Subject: [Vimperator] How to maximize Vimperator window. > > When I view some sites that use popups, sometimes, Fx opens popups in > a new tab, and my Fx window is then resized. > I tried to resize Firefox with keyboard, but I didn't find how. > :se lines or columns don't work > :se fullscreen gives me a fullscreen, but I don't quite like it: my > TwitterFox icon status is hidden. > > Is there simple commands to resize a Firefox Window, or to maximize it > like when you use the menu Maximize in the window? (I'm on Win) > > -- > Mahefa > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > From jhdl at gmx.net Tue Aug 5 06:24:11 2008 From: jhdl at gmx.net (Juergen Descher) Date: Tue, 5 Aug 2008 15:24:11 +0200 Subject: [Vimperator] [patch] first try Message-ID: <20080805132411.GB8589@case.a42.local> Hi, as I said on irc (to maxauthority )I have some ideas for handling bookmarks. First I want to know if the format of the patches I'll create is useful. So don't care if the patch as a patch isn't useful at all :) This patch will raise a little more detailed error message if :bmarks can't find bookmarks. cu Juergen -------------- next part -------------- diff --git src/content/bookmarks.js src/content/bookmarks.js index b74f17f..1bd12fa 100644 --- src/content/bookmarks.js +++ src/content/bookmarks.js @@ -413,8 +413,12 @@ liberator.Bookmarks = function () //{{{ var items = this.get(filter, tags, false); if (items.length == 0) { - if (filter.length > 0 || tags.length > 0) - liberator.echoerr("E283: No bookmarks matching \"" + filter + "\""); + if (filter.length > 0 && tags.length > 0) + liberator.echoerr("E283: No bookmarks matching tags: \"" + tags + "\" and string: \"" + filter + "\""); + else if (filter.length > 0 ) + liberator.echoerr("E283: No bookmarks matching string: \"" + filter + "\""); + else if ( tags.length > 0) + liberator.echoerr("E283: No bookmarks matching tags: \"" + tags + "\""); else liberator.echoerr("No bookmarks set"); From dpb at driftaway.org Tue Aug 5 06:42:10 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Tue, 5 Aug 2008 16:42:10 +0300 Subject: [Vimperator] [patch] first try In-Reply-To: <20080805132411.GB8589@case.a42.local> References: <20080805132411.GB8589@case.a42.local> Message-ID: 2008/8/5 Juergen Descher : > Hi, > > as I said on irc (to maxauthority )I have some ideas for handling > bookmarks. > > First I want to know if the format of the patches I'll create is > useful. So don't care if the patch as a patch isn't useful at all :) > > This patch will raise a little more detailed error message if :bmarks > can't find bookmarks. > > cu > Juergen Hi! The format of the patch is just right, we all want unified diffs. I committed the patch, though it had a couple of unnecessary spaces in the if expressions (that I fixed before committing). Thanks for the patch! And write more of them! :) -- Daniel From milezv at yandex.ru Tue Aug 5 07:04:11 2008 From: milezv at yandex.ru (Konstantin) Date: Tue, 05 Aug 2008 17:04:11 +0300 Subject: [Vimperator] :setlocal / :setglobal implementation patch In-Reply-To: <488E3408.7070102@gmx.net> References: <48809C25.4080004@yandex.ru> <488789C0.5070501@yandex.ru> <4887B231.7010608@gmx.net> <488860C0.6030604@yandex.ru> <488BA032.3030604@gmx.net> <488C56A1.1000408@yandex.ru> <488E3408.7070102@gmx.net> Message-ID: <48985DDB.9030909@yandex.ru> Hi, Martin, Sorry it took so long to fix things you pointed out, I had little to none free time last days. Martin Stubenschrott wrote: > Konstantin wrote: > >> Hm, I consider it's bug. I'll look at it closer. > >> :setlocal should be completed with local vars only >> and :setglobal with global ones. >> Any behavior except for the described is a bug. >> Thank's for the catch. > > Great, once you have that, i think it's nearly ready to be commited. I fixed this issue, :setlocal/:setglobal are completed with local/global vars only. > Although I think it probably should have one additional feature, although I am open for discussion about this: > > Let's say you do :setlocal noonline (which has a special setter), it should probably be called when you switch > to that tab, and the global "online" setter should be called, when you move away from this :setlocal'ized tab. > > Of course one could do such things with autocommands as well, but i think :setlocal works better for these > kind of use cases. > > What do you think? I have already answered this question in my last letter. Just to refresh things: Generally, I'm agree with you on the point, but I think making options linked to firefox preferences local (like "online" option) will be very difficult and buggy (esp. regarding these values for background tabs, if we choose to implement it by handling tab switch event). So I think we should make such options local only if it is implemented as "local" in Firefox internally. > -- > Martin > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- Konstantin Stepanov Web Developer -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: patch.txt URL: From tristan at cassowary.org Tue Aug 5 18:46:19 2008 From: tristan at cassowary.org (Tristan McLeay) Date: Wed, 06 Aug 2008 11:46:19 +1000 Subject: [Vimperator] :set stal Message-ID: <4899026B.9060703@cassowary.org> Vimperator is excellent and is almost enough to convert me to Firefox/Iceweasel. I do however have one problem with it --- :set stal=1 to show the tab bar only when necessary (and the equivalent gui preference) only works for the current window. Whenever you open a new window, you've suddenly got the tab bar back again even though you've asked six million times to get rid of the bloody thing! Is there some way to make this setting permanent? Thanks, -- Tristan. From stubenschrott at gmx.net Wed Aug 6 00:25:49 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Wed, 06 Aug 2008 09:25:49 +0200 Subject: [Vimperator] :set stal In-Reply-To: <4899026B.9060703@cassowary.org> References: <4899026B.9060703@cassowary.org> Message-ID: <489951FD.7010607@gmx.net> Tristan McLeay wrote: > Vimperator is excellent and is almost enough to convert me to > Firefox/Iceweasel. I do however have one problem with it --- :set stal=1 > to show the tab bar only when necessary (and the equivalent gui > preference) only works for the current window. Whenever you open a new > window, you've suddenly got the tab bar back again even though you've > asked six million times to get rid of the bloody thing! Is there some > way to make this setting permanent? short answer: :help initialization long answer: it would be nice, if vimperator was just loaded once for all windows, so settings could be shared. Conkeror found some way to make the extension run in application scope, not window scope, we should look into how they do it. From tristan at cassowary.org Wed Aug 6 00:32:56 2008 From: tristan at cassowary.org (Tristan McLeay) Date: Wed, 06 Aug 2008 17:32:56 +1000 Subject: [Vimperator] :set stal In-Reply-To: <489951FD.7010607@gmx.net> References: <4899026B.9060703@cassowary.org> <489951FD.7010607@gmx.net> Message-ID: <489953A8.5090108@cassowary.org> Martin Stubenschrott wrote: >>Is there some >> way to make this setting permanent? > > short answer: :help initialization Thanks a million! I have to admit I thought the idea of a vim mode for a web browser was a bit weird at first, but now I have it running it's very nice indeed. > long answer: it would be nice, if vimperator was just loaded once for > all windows, so settings could be shared. Conkeror found some way to > make the extension run in application scope, not window scope, we should > look into how they do it. -- Tristan. From jeff at joedog.org Wed Aug 6 03:32:35 2008 From: jeff at joedog.org (Jeff Fulmer) Date: Wed, 6 Aug 2008 06:32:35 -0400 (EDT) Subject: [Vimperator] pasting Message-ID: <1064.10.38.32.107.1218018755.squirrel@mail.tmorton.com> I posted this earlier but I've not been able to solve this to my satisfaction. I'm running the latest version of vimperator on FF3. When I have something on the clipboard and I want to paste it into a text field, I have to ctrl-v twice. Once, apparently to enter edit mode and the second time to paste it. Earlier versions didn't have this feature. Short of reverting back to FF2 and an earlier vimperator, how can I configure it so that I can click in a text field and paste once? Cheers, Jeff From mahefa.randimbisoa at gmail.com Wed Aug 6 06:45:13 2008 From: mahefa.randimbisoa at gmail.com (mahefa randimbisoa) Date: Wed, 6 Aug 2008 16:45:13 +0300 Subject: [Vimperator] pasting In-Reply-To: <1064.10.38.32.107.1218018755.squirrel@mail.tmorton.com> References: <1064.10.38.32.107.1218018755.squirrel@mail.tmorton.com> Message-ID: <2ba1fac40808060645l4f95c591l88174684e993c1f2@mail.gmail.com> On Wed, Aug 6, 2008 at 1:32 PM, Jeff Fulmer wrote: > I posted this earlier but I've not been able to solve this to my > satisfaction. I'm running the latest version of vimperator on FF3. When I > have something on the clipboard and I want to paste it into a text field, > I have to ctrl-v twice. Once, apparently to enter edit mode and the second > time to paste it. Earlier versions didn't have this feature. Short of > reverting back to FF2 and an earlier vimperator, how can I configure it so > that I can click in a text field and paste once? > > Cheers, > Jeff > :imap From dotancohen at gmail.com Wed Aug 6 06:48:13 2008 From: dotancohen at gmail.com (Dotan Cohen) Date: Wed, 6 Aug 2008 16:48:13 +0300 Subject: [Vimperator] pasting In-Reply-To: <2ba1fac40808060645l4f95c591l88174684e993c1f2@mail.gmail.com> References: <1064.10.38.32.107.1218018755.squirrel@mail.tmorton.com> <2ba1fac40808060645l4f95c591l88174684e993c1f2@mail.gmail.com> Message-ID: <880dece00808060648s322e5f3cu84982936b02d4df1@mail.gmail.com> 2008/8/6 mahefa randimbisoa : > On Wed, Aug 6, 2008 at 1:32 PM, Jeff Fulmer wrote: >> I posted this earlier but I've not been able to solve this to my >> satisfaction. I'm running the latest version of vimperator on FF3. When I >> have something on the clipboard and I want to paste it into a text field, >> I have to ctrl-v twice. Once, apparently to enter edit mode and the second >> time to paste it. Earlier versions didn't have this feature. Short of >> reverting back to FF2 and an earlier vimperator, how can I configure it so >> that I can click in a text field and paste once? >> >> Cheers, >> Jeff >> > > :imap Nice, thanks! I am not the OP, but I was wondering about this as well. -- Dotan Cohen http://what-is-what.com http://gibberish.co.il ?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-? A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? From jeff at joedog.org Wed Aug 6 10:12:05 2008 From: jeff at joedog.org (Jeff Fulmer) Date: Wed, 6 Aug 2008 13:12:05 -0400 (EDT) Subject: [Vimperator] pasting In-Reply-To: <880dece00808060648s322e5f3cu84982936b02d4df1@mail.gmail.com> References: <1064.10.38.32.107.1218018755.squirrel@mail.tmorton.com> <2ba1fac40808060645l4f95c591l88174684e993c1f2@mail.gmail.com> <880dece00808060648s322e5f3cu84982936b02d4df1@mail.gmail.com> Message-ID: <1092.10.38.32.107.1218042725.squirrel@mail.tmorton.com> > 2008/8/6 mahefa randimbisoa : >> On Wed, Aug 6, 2008 at 1:32 PM, Jeff Fulmer wrote: >>> I posted this earlier but I've not been able to solve this to my >>> satisfaction. I'm running the latest version of vimperator on FF3. When >>> I >>> have something on the clipboard and I want to paste it into a text >>> field, >>> I have to ctrl-v twice. Once, apparently to enter edit mode and the >>> second >>> time to paste it. Earlier versions didn't have this feature. Short of >>> reverting back to FF2 and an earlier vimperator, how can I configure it >>> so >>> that I can click in a text field and paste once? >>> >>> Cheers, >>> Jeff >>> >> >> :imap > > Nice, thanks! I am not the OP, but I was wondering about this as well. > I'm the OP and that works for me. I suppose I'll press my luck. Here's another problem I have: Sometimes I highlight text in a text field with the intent to delete it. After it's highlighted, no keyboard events seem to work. If I highlight it a second time, I can delete the text. This sometimes happens when I just click into a field. If I click once, nothing happens. But if I click a second time, then I can start typing. How do I correct this? Jeff From schlachthausfunf at gmail.com Thu Aug 7 00:45:03 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Thu, 7 Aug 2008 03:45:03 -0400 Subject: [Vimperator] Vimperatorrc file and Spell Checking Message-ID: This Vimperator works perfectly for me in all ways. I wish there was a Vim version of everything. You should put :set stal=1 in your vimperatorrc configuration file if you like it without tabs. Strangely the tab bar doesnt bother me, though I did get rid of the address bar, menu bar, and bookmarks bar. I have the Web developer bar and I made a new toolbar to put short cuts on and the search engine thingie field. I generally only use it as a reference though. Maybe I'll try it without tab bar and use :buffer! I don't use the mouse so much anyway. they are just visual reference points. I made them colorful. Now that I think of it, Vimperator has no way of checking/correcting spelling without using the mouse does it? > Message: 1 > Date: Wed, 06 Aug 2008 11:46:19 +1000 > From: Tristan McLeay > Subject: [Vimperator] :set stal > To: vimperator at mozdev.org > Message-ID: <4899026B.9060703 at cassowary.org> > Content-Type: text/plain; charset=ISO-8859-1 > > Vimperator is excellent and is almost enough to convert me to > Firefox/Iceweasel. I do however have one problem with it --- :set stal=1 > to show the tab bar only when necessary (and the equivalent gui > preference) only works for the current window. Whenever you open a new > window, you've suddenly got the tab bar back again even though you've > asked six million times to get rid of the bloody thing! Is there some > way to make this setting permanent? > > Thanks, > -- > Tristan. From schlachthausfunf at gmail.com Thu Aug 7 00:46:16 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Thu, 7 Aug 2008 03:46:16 -0400 Subject: [Vimperator] Vimperatorrc and Spell Checking Message-ID: This Vimperator works perfectly for me in all ways. I wish there was a Vim version of everything. You should put :set stal=1 in your vimperatorrc configuration file if you like it without tabs. Strangely the tab bar doesnt bother me, though I did get rid of the address bar, menu bar, and bookmarks bar. I have the Web developer bar and I made a new toolbar to put short cuts on and the search engine thingie field. I generally only use it as a reference though. Maybe I'll try it without tab bar and use :buffer! I don't use the mouse so much anyway. they are just visual reference points. I made them colorful. Now that I think of it, Vimperator has no way of checking/correcting spelling without using the mouse does it? > Message: 1 > Date: Wed, 06 Aug 2008 11:46:19 +1000 > From: Tristan McLeay > Subject: [Vimperator] :set stal > To: vimperator at mozdev.org > Message-ID: <4899026B.9060703 at cassowary.org> > Content-Type: text/plain; charset=ISO-8859-1 > > Vimperator is excellent and is almost enough to convert me to > Firefox/Iceweasel. I do however have one problem with it --- :set stal=1 > to show the tab bar only when necessary (and the equivalent gui > preference) only works for the current window. Whenever you open a new > window, you've suddenly got the tab bar back again even though you've > asked six million times to get rid of the bloody thing! Is there some > way to make this setting permanent? > > Thanks, > -- > Tristan. From gabriel.horner at gmail.com Thu Aug 7 02:21:45 2008 From: gabriel.horner at gmail.com (Gabriel Horner) Date: Thu, 7 Aug 2008 05:21:45 -0400 Subject: [Vimperator] default namespace for :javascript Message-ID: Hi All, First off, thanks to all who have helped vimperator become a badass plugin that's making web navigation frighteningly easy. My question: How hard would it be to change the default namespace (locally) for the :javascript command? The reason I ask is because I have a good number of bookmarklets I'm converting to js files. I've noticed previous posts that mention the default namespace 'content'. I've applied the prefix successfully for most bookmarklets but still have a few that are quirky or broken. I'm willing to tackle some JS if pointed in the right direction. Changing the namespace would be a nice feature for users who use bookmarklets often and don't want to have to make vimperator-specific bookmarklets. Thanks, Gabriel -------------- next part -------------- An HTML attachment was scrubbed... URL: From ltdonny at gmail.com Wed Aug 6 23:50:03 2008 From: ltdonny at gmail.com (Minozake R) Date: Thu, 7 Aug 2008 01:50:03 -0500 Subject: [Vimperator] Insert/textarea mode disabled after page loads Message-ID: <2a9324370808062350m436b6529p22711ebd16a76f1d@mail.gmail.com> This is really annoying me a lot. When I load a page, I tend to hit the insert box I want and just start typing before it is loaded completely, but then it gets disabled after the page finished loading and all my keypresses go to closing tabs, scrolling, reloading pages, et al. It'd be really nice if it was possible to either hit 'dd' to close a tab or if insert mode is broken, I would have to press escape to get back to normal mode if the text mode is broken. Or if I have missed anything in my quest to find a workaround besides patience, a solution would be good. Danke, Minozake From moneylcj at foxmail.com Thu Aug 7 06:38:06 2008 From: moneylcj at foxmail.com (=?ISO-8859-1?B?bW9uZXlsY2o=?=) Date: Thu, 7 Aug 2008 21:38:6 +0800 Subject: [Vimperator] [SPAM] how can i startup vim to edit google doc in vimoperator? Message-ID: hello: I want to startup vim to edit my google docs by press ctrl+i,but i am failed,How can do it ? Thank you ! vimoperator is a good work ,thank you! vimoperator user 08.08.07 -------------- next part -------------- An HTML attachment was scrubbed... URL: From stubenschrott at gmx.net Thu Aug 7 11:25:45 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Thu, 07 Aug 2008 20:25:45 +0200 Subject: [Vimperator] pasting In-Reply-To: <1092.10.38.32.107.1218042725.squirrel@mail.tmorton.com> References: <1064.10.38.32.107.1218018755.squirrel@mail.tmorton.com> <2ba1fac40808060645l4f95c591l88174684e993c1f2@mail.gmail.com> <880dece00808060648s322e5f3cu84982936b02d4df1@mail.gmail.com> <1092.10.38.32.107.1218042725.squirrel@mail.tmorton.com> Message-ID: <489B3E29.20805@gmx.net> Jeff Fulmer wrote: > Sometimes I highlight text in a text field with the intent to delete it. > After it's highlighted, no keyboard events seem to work. If I highlight it > a second time, I can delete the text. This sometimes happens when I just > click into a field. If I click once, nothing happens. But if I click a > second time, then I can start typing. How do I correct this? I think that might be due to a mode handling problem. Sometimes when clicking inside a textarea, you are not in -- INSERT -- mode, then obviously doesn't work. I haven't had the time to investigate that further for now. From stubenschrott at gmx.net Thu Aug 7 11:27:01 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Thu, 07 Aug 2008 20:27:01 +0200 Subject: [Vimperator] Insert/textarea mode disabled after page loads In-Reply-To: <2a9324370808062350m436b6529p22711ebd16a76f1d@mail.gmail.com> References: <2a9324370808062350m436b6529p22711ebd16a76f1d@mail.gmail.com> Message-ID: <489B3E75.4080300@gmx.net> Minozake R wrote: > This is really annoying me a lot. When I load a page, I tend to hit the insert > box I want and just start typing before it is loaded completely, but then it > gets disabled after the page finished loading and all my keypresses go to > closing tabs, scrolling, reloading pages, et al. > > It'd be really nice if it was possible to either hit 'dd' to close a tab or if > insert mode is broken, I would have to press escape to get back to normal mode > if the text mode is broken. Or if I have missed anything in my quest to find a > workaround besides patience, a solution would be good. Will be fixed "automatically" in the next version 1.2, because there is a new :set nofocuscontent option (set to "no" by default). From stubenschrott at gmx.net Thu Aug 7 11:27:44 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Thu, 07 Aug 2008 20:27:44 +0200 Subject: [Vimperator] Vimperatorrc and Spell Checking In-Reply-To: References: Message-ID: <489B3EA0.5060003@gmx.net> Jan Snyder wrote: > This Vimperator works perfectly for me in all ways. I wish there was a > Now that I think of it, Vimperator has no way of checking/correcting > spelling without using the mouse does it? No, but would be nice, added to the TODO From stubenschrott at gmx.net Thu Aug 7 11:35:12 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Thu, 07 Aug 2008 20:35:12 +0200 Subject: [Vimperator] default namespace for :javascript In-Reply-To: References: Message-ID: <489B4060.3000608@gmx.net> Gabriel Horner wrote: > Hi All, > First off, thanks to all who have helped vimperator become a badass plugin > that's making web navigation frighteningly easy. > My question: How hard would it be to change the default namespace > (locally) for the :javascript command? > The reason I ask is because I have a good number of bookmarklets I'm > converting to js files. I've noticed > previous posts that mention the default namespace 'content'. I've > applied the prefix successfully for most bookmarklets but > still have a few that are quirky or broken. > I'm willing to tackle some JS if pointed in the right direction. > Changing the namespace would be a nice feature for users who use > bookmarklets > often and don't want to have to make vimperator-specific bookmarklets. Right now, the default namespace is "liberator" (as in with("liberator") { ...} ). The correct way would be to implement: :let b:javascript_context and then replace all with("liberator") { ... } calls with a new function liberator.evalJS(string) which uses the value of b;javascript_context or falls back to "liberator", if it does not exist. Basic :let support is already available, but only globally, so you probably would need to add per-buffer or per-tab variables. So it's certainly doable, if you have a look at the :setlocal/:setglobal patch which was posted recently on this mailinglist (and which I will probably apply now), which might help you how to implemented buffer local variables. Let me know, if you need more help in writing this patch. -- Martin From stubenschrott at gmx.net Thu Aug 7 13:31:59 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Thu, 07 Aug 2008 22:31:59 +0200 Subject: [Vimperator] :setlocal / :setglobal implementation patch In-Reply-To: <48985DDB.9030909@yandex.ru> References: <48809C25.4080004@yandex.ru> <488789C0.5070501@yandex.ru> <4887B231.7010608@gmx.net> <488860C0.6030604@yandex.ru> <488BA032.3030604@gmx.net> <488C56A1.1000408@yandex.ru> <488E3408.7070102@gmx.net> <48985DDB.9030909@yandex.ru> Message-ID: <489B5BBF.9030704@gmx.net> Konstantin wrote: > Sorry it took so long to fix things you pointed out, > I had little to none free time last days. Same for me, so sorry it took a little longer. I finally applied your patch, because it seems to at least doesn't do something terrible :) However, I think the docs (and news entry) are a little misleading, as :setlocal talks about tab-centered options. buffer.js: get options() { if (!window.content.document.liberatorOptions) window.content.document.liberatorOptions = {}; return window.content.document.liberatorOptions; }, looks like it's per document rather. So I would propose the following: :setlocal foo sets the option on the current tab object :setlocal! foo sets it really on the current document, which may change when the user switches the URL within a tab. Maybe that's too difficult? But i don't know if setting on per-tab or per-document really is better for more use cases. -- Martin From mahefa.randimbisoa at gmail.com Thu Aug 7 22:36:56 2008 From: mahefa.randimbisoa at gmail.com (mahefa randimbisoa) Date: Fri, 8 Aug 2008 08:36:56 +0300 Subject: [Vimperator] Insert/textarea mode disabled after page loads In-Reply-To: <489B3E75.4080300@gmx.net> References: <2a9324370808062350m436b6529p22711ebd16a76f1d@mail.gmail.com> <489B3E75.4080300@gmx.net> Message-ID: <2ba1fac40808072236m7c138e1ene9c76a68ac36bfda@mail.gmail.com> On Thu, Aug 7, 2008 at 9:27 PM, Martin Stubenschrott wrote: > Minozake R wrote: > >> This is really annoying me a lot. When I load a page, I tend to hit the insert >> box I want and just start typing before it is loaded completely, but then it >> gets disabled after the page finished loading and all my keypresses go to >> closing tabs, scrolling, reloading pages, et al. >> >> It'd be really nice if it was possible to either hit 'dd' to close a tab or if >> insert mode is broken, I would have to press escape to get back to normal mode >> if the text mode is broken. Or if I have missed anything in my quest to find a >> workaround besides patience, a solution would be good. > > Will be fixed "automatically" in the next version 1.2, because there is > a new :set nofocuscontent option (set to "no" by default). > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > The most annoying figures are the tab closing (d) and page refreshing (r), until 1.2 comes out, you could try :map d :map r :map R then, hit :q to close a tab, to refresh. From milezv at yandex.ru Fri Aug 8 09:49:39 2008 From: milezv at yandex.ru (Konstantin) Date: Fri, 08 Aug 2008 19:49:39 +0300 Subject: [Vimperator] [SPAM] how can i startup vim to edit google doc in vimoperator? In-Reply-To: References: Message-ID: <489C7923.8050506@yandex.ru> Is it happens only on google docs? What's the value of your "editor" option? What's your OS? Maybe Firefox can't find vim? moneylcj wrote: > hello: > I want to startup vim to edit my google docs by press ctrl+i,but i > am failed,How can do it ? Thank you ! > vimoperator is a good work ,thank you! > > > vimoperator user > > 08.08.07 > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator -- Konstantin Stepanov Web Developer From schlachthausfunf at gmail.com Sun Aug 10 10:41:30 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Sun, 10 Aug 2008 13:41:30 -0400 Subject: [Vimperator] Vimbox Message-ID: It would be interesting to see a full vim desktop environment. Maybe like a combo of vim and fluxbox or gnome. Fluxbox would definitely be more interesting with a vim command line. I've been using vim to do webdesign so vimperator is very cool. From stubenschrott at gmx.net Sun Aug 10 10:58:37 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Sun, 10 Aug 2008 19:58:37 +0200 Subject: [Vimperator] Vimbox In-Reply-To: References: Message-ID: <489F2C4D.9010808@gmx.net> Jan Snyder wrote: > It would be interesting to see a full vim desktop environment. Maybe > like a combo of vim and fluxbox or gnome. Fluxbox would definitely be > more interesting with a vim command line. I've been using vim to do > webdesign so vimperator is very cool. Well, most vimperator users use tiling window managers, which make much more sense than using Fluxbox or the like. Most popular are: * awesome * wmii * dwm some users also still use ion3 afaik. All of the above alread feature vim-like keybindings out of the box, so try any of these. And also make sure to check-out muttator.mozdev.org, which is just like Vimperator but for handling mail and rss. -- Martin From violazoli at gmail.com Sun Aug 10 11:18:38 2008 From: violazoli at gmail.com (=?ISO-8859-1?Q?Viola_Zolt=E1n?=) Date: Sun, 10 Aug 2008 20:18:38 +0200 Subject: [Vimperator] Vimbox In-Reply-To: <489F2C4D.9010808@gmx.net> References: <489F2C4D.9010808@gmx.net> Message-ID: I use SithWM. This is a very-very simple and minimal Window Manager. Not tiling, but only 29 kilobyte! I use it with Xbindkeys, and very cool and geek! Try it! Homepage: http://sithwm.darkside.no/sithwm.html Zoli 2008/8/10 Martin Stubenschrott > Jan Snyder wrote: > > > It would be interesting to see a full vim desktop environment. Maybe > > like a combo of vim and fluxbox or gnome. Fluxbox would definitely be > > more interesting with a vim command line. I've been using vim to do > > webdesign so vimperator is very cool. > > Well, most vimperator users use tiling window managers, which make much > more sense than using Fluxbox or the like. > > Most popular are: > * awesome > * wmii > * dwm > some users also still use ion3 afaik. > > All of the above alread feature vim-like keybindings out of the box, so > try any of these. > > And also make sure to check-out muttator.mozdev.org, which is just like > Vimperator but for handling mail and rss. > > -- > Martin > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- -------- Reg?nyeim: http://adlibrum.hu/Poliverzum/ http://www.novumverlag.hu/novitaeten/8/?product_id=22&detail=1 -------- A #86-os sorsz?m? hivatalosan bejegyzett GoboLinux felhaszn?l? The #86 official GoboLinux-user -------------- next part -------------- An HTML attachment was scrubbed... URL: From milezv at yandex.ru Sun Aug 10 14:23:27 2008 From: milezv at yandex.ru (Konstantin) Date: Mon, 11 Aug 2008 00:23:27 +0300 Subject: [Vimperator] Vimbox In-Reply-To: <489F2C4D.9010808@gmx.net> References: <489F2C4D.9010808@gmx.net> Message-ID: <489F5C4F.3080900@yandex.ru> I'm using awesome, and participate in it's development. Awesome 3.0RC2 is already out, so you can try it now. The main feature of the Awesome 3 is possibility to configure it with Lua scripting. Actually I have small prototype of vimwm.lua module for Awesome3, but it's a secret :) Not sure if I'll be able to finish it, as I need time to develop Awesome itself, not to tell I have some ideas for Vimperator... + my main work I'm paid for. Anyway, I'll try to make some kind of VimWM out of Awesome3. Can't promise although... Martin Stubenschrott wrote: > Jan Snyder wrote: > >> It would be interesting to see a full vim desktop environment. Maybe >> like a combo of vim and fluxbox or gnome. Fluxbox would definitely be >> more interesting with a vim command line. I've been using vim to do >> webdesign so vimperator is very cool. > > Well, most vimperator users use tiling window managers, which make much > more sense than using Fluxbox or the like. > > Most popular are: > * awesome > * wmii > * dwm > some users also still use ion3 afaik. > > All of the above alread feature vim-like keybindings out of the box, so > try any of these. > > And also make sure to check-out muttator.mozdev.org, which is just like > Vimperator but for handling mail and rss. > > -- > Martin > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- Konstantin Stepanov Web Developer From stubenschrott at gmx.net Sun Aug 10 14:38:43 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Sun, 10 Aug 2008 23:38:43 +0200 Subject: [Vimperator] Vimbox In-Reply-To: <489F5C4F.3080900@yandex.ru> References: <489F2C4D.9010808@gmx.net> <489F5C4F.3080900@yandex.ru> Message-ID: <489F5FE3.2010208@gmx.net> Konstantin wrote: > I'm using awesome, and participate in it's development. Yeah, I know :) Amazing, to how many cool projects you contribute :) > Awesome 3.0RC2 is already out, so you can try it now. I use the git version and update every few days, although keeping up with config changes is quite boring. > Actually I have small prototype of vimwm.lua module for Awesome3, > but it's a secret :) Not sure if I'll be able to finish it, > as I need time to develop Awesome itself, not to tell > I have some ideas for Vimperator... + my main work I'm paid for. Cool @vimp ideas :) (actually i am really excited what plans you have for it but well, i understand if you don't want to share too much without having any code). What paid work do you actually have? Since i started a fulltime paid job 6 weeks ago, it's so hard for me to find time for vimperator so I am still wondering how you manage to do all that open source work in your freetime :) > Anyway, I'll try to make some kind of VimWM out of Awesome3. > Can't promise although... Wow, I am really excited about the vimwm.lua module. Although to be honest, I would not know which WM features would really benefit from a modal design. Anyway, since I am on the awesome ML as well, I'll hear about it anyway when it's in a releasable state. -- Martin From dave.a.tapley at gmail.com Sun Aug 10 14:51:21 2008 From: dave.a.tapley at gmail.com (Dave Tapley) Date: Sun, 10 Aug 2008 22:51:21 +0100 Subject: [Vimperator] Vimbox In-Reply-To: <489F5FE3.2010208@gmx.net> References: <489F2C4D.9010808@gmx.net> <489F5C4F.3080900@yandex.ru> <489F5FE3.2010208@gmx.net> Message-ID: Jan You might also be interested in http://xmonad.org/ Dave, On 10/08/2008, Martin Stubenschrott wrote: > Konstantin wrote: > > > I'm using awesome, and participate in it's development. > > > Yeah, I know :) Amazing, to how many cool projects you contribute :) > > > > Awesome 3.0RC2 is already out, so you can try it now. > > > I use the git version and update every few days, although keeping up > with config changes is quite boring. > > > > Actually I have small prototype of vimwm.lua module for Awesome3, > > but it's a secret :) Not sure if I'll be able to finish it, > > as I need time to develop Awesome itself, not to tell > > I have some ideas for Vimperator... + my main work I'm paid for. > > > Cool @vimp ideas :) (actually i am really excited what plans you have > for it but well, i understand if you don't want to share too much > without having any code). > > What paid work do you actually have? Since i started a fulltime paid job > 6 weeks ago, it's so hard for me to find time for vimperator so I am > still wondering how you manage to do all that open source work in your > freetime :) > > > > Anyway, I'll try to make some kind of VimWM out of Awesome3. > > Can't promise although... > > > Wow, I am really excited about the vimwm.lua module. Although to be > honest, I would not know which WM features would really benefit from > a modal design. > > Anyway, since I am on the awesome ML as well, I'll hear about it > anyway when it's in a releasable state. > > > -- > Martin > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > From stubenschrott at gmx.net Sun Aug 10 15:09:10 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Mon, 11 Aug 2008 00:09:10 +0200 Subject: [Vimperator] nextpattern to trigger prefetch? In-Reply-To: References: Message-ID: <489F6706.3030604@gmx.net> Daniel Schaffrath wrote: > As the nextpattern seems to work that great I thought it might be a > "ethical" idea to prefetch the according links (as firefox already > prefetches links which are explicitly attributed as prefetch/next). I > just tried it like below -- by augmenting followDocumentRelationship > with a mode to really follow or just prefetch a relationship. > > Unfortunately wireshark shows me that firefox never fires any prefetch > requests. Although (from my understanding) all conditions from [1] > hold. Maybe you have any pointers? Besides, how can one make these > mozilla LOG message visible to be found in [1]? That would probably > help a lot! > > Thank you, > Daniel > > [1] http://lxr.mozilla.org/mozilla/source/uriloader/prefetch/nsPrefetchService.cpp#753 Sorry for replying so late, I just saw that nobody replied to it yet. Did anybody try the patch or does somebody have a strong opinion on this thing? Since the patch is not that short, I'll probably need some additional days to review/test unless somebody else, like Doug, has a clear opinion whether this patch is a good thing in general or not. -- Martin PS: For the patch to be applied, it certainly would need some short documentation in options.txt, but that's surely not the problem here. From milezv at yandex.ru Sun Aug 10 15:54:50 2008 From: milezv at yandex.ru (Konstantin) Date: Mon, 11 Aug 2008 01:54:50 +0300 Subject: [Vimperator] Vimbox In-Reply-To: References: <489F2C4D.9010808@gmx.net> <489F5C4F.3080900@yandex.ru> <489F5FE3.2010208@gmx.net> Message-ID: <489F71BA.2020102@yandex.ru> Good thing, but too heavy for me: I don't want to install whole programming language package (Haskel) just to setup window manager. I'm not a Haskel programmer, so I don't need it installed all the time. But it's just me :) As not for my point the project looks really good and I wish good luck to their developers team! Dave Tapley wrote: > Jan > > You might also be interested in http://xmonad.org/ > > Dave, > > On 10/08/2008, Martin Stubenschrott wrote: >> Konstantin wrote: >> >> > I'm using awesome, and participate in it's development. >> >> >> Yeah, I know :) Amazing, to how many cool projects you contribute :) >> >> >> > Awesome 3.0RC2 is already out, so you can try it now. >> >> >> I use the git version and update every few days, although keeping up >> with config changes is quite boring. >> >> >> > Actually I have small prototype of vimwm.lua module for Awesome3, >> > but it's a secret :) Not sure if I'll be able to finish it, >> > as I need time to develop Awesome itself, not to tell >> > I have some ideas for Vimperator... + my main work I'm paid for. >> >> >> Cool @vimp ideas :) (actually i am really excited what plans you have >> for it but well, i understand if you don't want to share too much >> without having any code). >> >> What paid work do you actually have? Since i started a fulltime paid job >> 6 weeks ago, it's so hard for me to find time for vimperator so I am >> still wondering how you manage to do all that open source work in your >> freetime :) >> >> >> > Anyway, I'll try to make some kind of VimWM out of Awesome3. >> > Can't promise although... >> >> >> Wow, I am really excited about the vimwm.lua module. Although to be >> honest, I would not know which WM features would really benefit from >> a modal design. >> >> Anyway, since I am on the awesome ML as well, I'll hear about it >> anyway when it's in a releasable state. >> >> >> -- >> Martin >> _______________________________________________ >> Vimperator mailing list >> Vimperator at mozdev.org >> https://www.mozdev.org/mailman/listinfo/vimperator >> > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- Konstantin Stepanov Web Developer From schlachthausfunf at gmail.com Sun Aug 10 19:55:52 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Sun, 10 Aug 2008 22:55:52 -0400 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 7 In-Reply-To: References: Message-ID: My operating system is Fedora Linux these days. I configure it an all and know the keybindings, like I mess with the .bachrc file and make up my own alias's, but mainly I use the Gnome desktop just because at one point I was on fluxbox and it seemed okay, but the menu system was kind of not all together. I have the terminal emulator embedded in my desktop with Tilda so I always have access to some sort of commands, but on the other hand, the command line at the bottom of the screen with Vim is quite unique and is always there. I just thought it be fun to have it down there. Might try wmii or something. Those look good. > Message: 2 > Date: Sun, 10 Aug 2008 19:58:37 +0200 > From: Martin Stubenschrott > Subject: Re: [Vimperator] Vimbox > To: vimperator at mozdev.org > Message-ID: <489F2C4D.9010808 at gmx.net> > Content-Type: text/plain; charset=ISO-8859-1 > > Jan Snyder wrote: > >> It would be interesting to see a full vim desktop environment. Maybe >> like a combo of vim and fluxbox or gnome. Fluxbox would definitely be >> more interesting with a vim command line. I've been using vim to do >> webdesign so vimperator is very cool. > > Well, most vimperator users use tiling window managers, which make much > more sense than using Fluxbox or the like. > > Most popular are: > * awesome > * wmii > * dwm > some users also still use ion3 afaik. > > All of the above alread feature vim-like keybindings out of the box, so > try any of these. > > And also make sure to check-out muttator.mozdev.org, which is just like > Vimperator but for handling mail and rss. > > -- > Martin > From stubenschrott at gmx.net Mon Aug 11 00:23:17 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Mon, 11 Aug 2008 09:23:17 +0200 Subject: [Vimperator] Vimbox In-Reply-To: <489F71BA.2020102@yandex.ru> References: <489F2C4D.9010808@gmx.net> <489F5C4F.3080900@yandex.ru> <489F5FE3.2010208@gmx.net> <489F71BA.2020102@yandex.ru> Message-ID: <489FE8E5.1010808@gmx.net> Konstantin wrote: > Good thing, but too heavy for me: I don't want to install whole programming > language package (Haskel) just to setup window manager. Aeh, and what's Lua? Not a whole programming language ;) -- Martin From daniel.schaffrath at mac.com Mon Aug 11 01:04:37 2008 From: daniel.schaffrath at mac.com (Daniel Schaffrath) Date: Mon, 11 Aug 2008 10:04:37 +0200 Subject: [Vimperator] nextpattern to trigger prefetch? In-Reply-To: <489F6706.3030604@gmx.net> References: <489F6706.3030604@gmx.net> Message-ID: <8F2BF701-4E4A-496D-A5CC-80CF0D32F5B4@mac.com> On 2008/08/11 , at 00:09, Martin Stubenschrott wrote: > Daniel Schaffrath wrote: >> As the nextpattern seems to work that great I thought it might be a >> "ethical" idea to prefetch the according links (as firefox already >> prefetches links which are explicitly attributed as prefetch/next). I >> just tried it like below -- by augmenting followDocumentRelationship >> with a mode to really follow or just prefetch a relationship. >> >> Unfortunately wireshark shows me that firefox never fires any >> prefetch >> requests. Although (from my understanding) all conditions from [1] >> hold. Maybe you have any pointers? Besides, how can one make these >> mozilla LOG message visible to be found in [1]? That would probably >> help a lot! >> >> Thank you, >> Daniel >> >> [1] http://lxr.mozilla.org/mozilla/source/uriloader/prefetch/nsPrefetchService.cpp#753 > > Sorry for replying so late, I just saw that nobody replied to it yet. > Did anybody try the patch or does somebody have a strong opinion on > this > thing? > > > Since the patch is not that short, I'll probably need some additional > days to review/test unless somebody else, like Doug, has a clear > opinion > whether this patch is a good thing in general or not. One might argue that this "features" is somewhat orthogonal to what vimperator is about :) Btw: in the meantime I found autopager [1] which does exactly what I had in mind. Still, I feel that many plugins is not a good thing, so having it in vimperator would be nice. > -- > Martin > > PS: For the patch to be applied, it certainly would need some short > documentation in options.txt, but that's surely not the problem here. Yes, the main problem with this patch is that it does not make FF to really prefetch. But that's probably more a FF internal problem, as FF does not even prefetch when it finds pages with LINKs which are explicitly attributed as "prefetch". And yes, I have "network.prefetch- next" set to true. But maybe someone of you could figure this out easily as he/she has a debug version of FF running which dumps these "interesting" LOG messages to be found in [2]. Or is there a way to make these message visible in a out-of-the-box FF? Thanks again, Daniel [1] https://addons.mozilla.org/en-US/firefox/addon/4925 [2] http://lxr.mozilla.org/mozilla/source/uriloader/prefetch/nsPrefetchService.cpp#753 From chm.duquesne at gmail.com Mon Aug 11 01:53:23 2008 From: chm.duquesne at gmail.com (Christophe-Marie Duquesne) Date: Mon, 11 Aug 2008 10:53:23 +0200 Subject: [Vimperator] Vimbox In-Reply-To: <489FE8E5.1010808@gmx.net> References: <489F2C4D.9010808@gmx.net> <489F5C4F.3080900@yandex.ru> <489F5FE3.2010208@gmx.net> <489F71BA.2020102@yandex.ru> <489FE8E5.1010808@gmx.net> Message-ID: <8ccc3510808110153q36ebc8a4gdc3dc092d00787a7@mail.gmail.com> That is really, really good to learn that. I'm hacking my .awesomerc all the time, to make awesome react like vim. Let us know if you don't have the time to finish your vimwm.lua, I'm sure a lot of people would be glad to help you... On Mon, Aug 11, 2008 at 9:23 AM, Martin Stubenschrott wrote: > Konstantin wrote: > > > Good thing, but too heavy for me: I don't want to install whole > programming > > language package (Haskel) just to setup window manager. > > Aeh, and what's Lua? Not a whole programming language ;) > > -- > Martin > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- Christophe-Marie Duquesne -------------- next part -------------- An HTML attachment was scrubbed... URL: From milezv at yandex.ru Mon Aug 11 04:18:18 2008 From: milezv at yandex.ru (Konstantin) Date: Mon, 11 Aug 2008 14:18:18 +0300 Subject: [Vimperator] Vimbox In-Reply-To: <489FE8E5.1010808@gmx.net> References: <489F2C4D.9010808@gmx.net> <489F5C4F.3080900@yandex.ru> <489F5FE3.2010208@gmx.net> <489F71BA.2020102@yandex.ru> <489FE8E5.1010808@gmx.net> Message-ID: <48A01FFA.4050505@yandex.ru> Lua is really small and, well, awesome, language. It's indented to be small, it's embedded language. While when I tried to install XMonad via ports, it required a huge number of heavy Haskel packages by depends. I consider Lua is lesser evil :) Besides I already have a number of hand-made modules to it to access sysctl nodes, mixer status etc, so creating Awesome widgets with it is really simple for me. Martin Stubenschrott wrote: > Konstantin wrote: > >> Good thing, but too heavy for me: I don't want to install whole programming >> language package (Haskel) just to setup window manager. > > Aeh, and what's Lua? Not a whole programming language ;) > > -- > Martin > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- Konstantin Stepanov Web Developer From vim at rutschle.net Mon Aug 11 05:43:19 2008 From: vim at rutschle.net (Yves Rutschle) Date: Mon, 11 Aug 2008 14:43:19 +0200 Subject: [Vimperator] Vimbox In-Reply-To: <48A01FFA.4050505@yandex.ru> References: <489F2C4D.9010808@gmx.net> <489F5C4F.3080900@yandex.ru> <489F5FE3.2010208@gmx.net> <489F71BA.2020102@yandex.ru> <489FE8E5.1010808@gmx.net> <48A01FFA.4050505@yandex.ru> Message-ID: <20080811124319.GR14261@naryves.com> On Mon, Aug 11, 2008 at 02:18:18PM +0300, Konstantin wrote: > Lua is really small and, well, awesome, language. > It's indented to be small, it's embedded language. FWIW Lua is also used to configure and script ION. Awesome looks interesting -- is there anyone here with both ION and Awesome experience that could compare both? Y. From softeditor at softpedia.com Mon Aug 11 05:54:33 2008 From: softeditor at softpedia.com (Softpedia Editorial Team) Date: Mon, 11 Aug 2008 08:54:33 -0400 (EDT) Subject: [Vimperator] Vimperator 1.1 - 2 file mirrors provided by Softpedia Message-ID: <20080811125433.3F066BEE3D0@ipdmjg0034atl2.pubip.peer1.net> Hello, We are sending you this email to let you know that we are now providing two mirrors for the installation files of your product "Vimperator 1.1". Both mirrors are on dedicated servers, of which one is located in Florida, USA (Softpedia US mirror) and the other in Bucharest, Romania (Softpedia RO mirror). You can see this on the Softpedia download page for your product at: http://www.softpedia.com/progDownload/Vimperator-Download-83044.html The full review page for your product is: http://www.softpedia.com/get/Tweak/Browser-Tweak/Vimperator.shtml If you want to link to the download page providing these mirrors for your files, please do so by using the URL below: http://www.softpedia.com/progDownload/Vimperator-Download-83044.html We also provide some buttons (GIF format) if you want to provide an image-based link to that page instead of a text-based one. You can download a small ZIP archive (16KB) that contains various size formats of these buttons at the address below: http://www.softpedia.com/files/softpedia_download_buttons.zip "Vimperator 1.1" has also been granted the Softpedia 100% CLEAN Award, which is shown on the full product review page as well as on a special page (see URL below): http://www.softpedia.com/progClean/Vimperator-Clean-83044.html Sincerely, The Softpedia Team --------------------------------------------------------------------------------------- Softpedia is a library of over 70,000 free and free-to-try software programs for Windows and Unix/Linux, games, Mac software, Windows drivers, mobile devices and IT-related articles. We review and categorize these products in order to allow the visitor/user to find the exact product they and their system needs. We strive to deliver only the best products to the visitor/user together with self-made evaluation and review notes. --------------------------------------------------------------------------------------- Softpedia - the encyclopedia of free software downloads http://www.softpedia.com/ From softeditor at softpedia.com Mon Aug 11 05:54:32 2008 From: softeditor at softpedia.com (Softpedia Editorial Team) Date: Mon, 11 Aug 2008 08:54:32 -0400 (EDT) Subject: [Vimperator] Vimperator - included in the Softpedia software database Message-ID: <20080811125433.188C2BEE3CD@ipdmjg0034atl2.pubip.peer1.net> Hello, As you probably already know, Vimperator, one of your products, is part of Softpedia's database of software programs for the Windows operating system. It is featured with a detailed description, screenshots, download links and technical details on this page: http://www.softpedia.com/get/Tweak/Browser-Tweak/Vimperator.shtml Please note that the above page contains a description created by our team of experienced editors, using sources such as text from your product's homepage, information from its help system, the PAD file (if available) and the editor's own opinions on the program itself. If you feel that having your product listed on Softpedia is not a benefit for you or simply need something changed or updated, please contact us via email at webmaster at softpedia.com and we will work with you to fix any problem you may have found with the product's listing. "Vimperator" has been tested in the Softpedia labs using several industry-leading security solutions and found to be completely clean of adware/spyware components. We are impressed with the quality of your product and encourage you to keep these high standards in the future. To assure our visitors that "Vimperator" is clean, we have granted it with the "100% CLEAN" Softpedia award. Moreover, to let your users know about this certification, you may display this award on your website, on software boxes or inside your product. "Vimperator" was tested on 11 August 2008 by Adrian Arsene. More information about your product's certification and the award is available on this page: http://www.softpedia.com/progClean/Vimperator-Clean-83044.html Please feel free to link to us using the URL above. If you choose to link to the award page for your product, you may use the award graphic or a text link such as: "100% CLEAN award granted by Softpedia" -- Sincerely, The Softpedia Team ----------------------------------------------------------------------- Softpedia is a library of over 300,000 free and free-to-try software programs for Windows and Unix/Linux, games, Mac software, Windows drivers, mobile devices and IT-related articles. We review and categorize these products in order to allow the visitor/user to find the exact product they and their system needs. We strive to deliver only the best products to the visitor/user together with self-made evaluation and review notes. ----------------------------------------------------------------------- Softpedia - the encyclopedia of free software downloads http://www.softpedia.com/ From schlachthausfunf at gmail.com Mon Aug 11 08:13:01 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Mon, 11 Aug 2008 11:13:01 -0400 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 8 In-Reply-To: References: Message-ID: I just downloaded Awesome. Seems best. I suppose it will just compile normally and be as a desktop environment I can choose at login. Fedora doesn't seem to have any tiling window managers in its repositories. I'm interested in vim incorporation, because in the terminal emulator you can set it to vi-mode and use some vi commands, but the cursor space is really limited. I always want to go backward and select text from say a directory I just opened or listed but am forced to use a mouse to copy paste or type it out. Maybe there is some way in terminal to move the cursor back in a kind of visual or super caret mode that allows keyboard browsing across the terminal buffer history. I don't know... On Mon, Aug 11, 2008 at 4:04 AM, wrote: > Message: 1 > Date: Mon, 11 Aug 2008 00:23:27 +0300 > From: Konstantin > Subject: Re: [Vimperator] Vimbox > To: vimperator at mozdev.org > Message-ID: <489F5C4F.3080900 at yandex.ru> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > I'm using awesome, and participate in it's development. > Awesome 3.0RC2 is already out, so you can try it now. > > The main feature of the Awesome 3 is possibility to configure > it with Lua scripting. > > Actually I have small prototype of vimwm.lua module for Awesome3, > but it's a secret :) Not sure if I'll be able to finish it, > as I need time to develop Awesome itself, not to tell > I have some ideas for Vimperator... + my main work I'm paid for. > > Anyway, I'll try to make some kind of VimWM out of Awesome3. > Can't promise although... From stanio at cs.tu-berlin.de Mon Aug 11 08:28:34 2008 From: stanio at cs.tu-berlin.de (stanio at cs.tu-berlin.de) Date: Mon, 11 Aug 2008 17:28:34 +0200 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 8 In-Reply-To: References: Message-ID: <20080811152834.GA1630@fiesta.cs.tu-berlin.de> * Jan Snyder [2008-08-11 17:13]: > Maybe there is some way in > terminal to move the cursor back in a kind of visual or super caret > mode that allows keyboard browsing across the terminal buffer history. > I don't know... sounds exactly what screen features: C-a ESC enters visual mode, where you move around like in vim: C-d, C-u, j,k,l,h. SPACE/Enter starts the selection and SPACE/ENTER ends the selection. -- cheers stanio_ From aronaxis at gmail.com Mon Aug 11 11:58:54 2008 From: aronaxis at gmail.com (Alexey Trofimenko) Date: Mon, 11 Aug 2008 22:58:54 +0400 Subject: [Vimperator] change commandline background color when focused Message-ID: vimperator is great, really. I have only one point of frustration: losing cursor :) When i press / or : (maybe accidentally) it is really hard to see, if command line is focused. Most obvious way would be to change background color of focused command line. Is there a way to do this? From stubenschrott at gmx.net Mon Aug 11 15:49:52 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Tue, 12 Aug 2008 00:49:52 +0200 Subject: [Vimperator] change commandline background color when focused In-Reply-To: References: Message-ID: <48A0C210.5050509@gmx.net> Alexey Trofimenko wrote: > Most obvious way would be to change background color of focused command line. > Is there a way to do this? I am quite sure, with some CSS and a :focus (pseudo-)class it should be possible. However, somebody tried that and ran into some problems, but i still think a real CSS guru (not me ;)) could probably find a way. -- Martin From dpb at driftaway.org Tue Aug 12 02:48:33 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Tue, 12 Aug 2008 12:48:33 +0300 Subject: [Vimperator] Insert/textarea mode disabled after page loads In-Reply-To: <2a9324370808062350m436b6529p22711ebd16a76f1d@mail.gmail.com> References: <2a9324370808062350m436b6529p22711ebd16a76f1d@mail.gmail.com> Message-ID: 2008/8/7 Minozake R : > This is really annoying me a lot. When I load a page, I tend to hit the insert > box I want and just start typing before it is loaded completely, but then it > gets disabled after the page finished loading and all my keypresses go to > closing tabs, scrolling, reloading pages, et al. One workaround would be to stop loading the page (ctrl-c) before hitting the insert box (if the page has already loaded everything you need). That way the keypresses will go to the right place. -- Daniel From milezv at yandex.ru Tue Aug 12 04:51:15 2008 From: milezv at yandex.ru (Konstantin Stepanov) Date: Tue, 12 Aug 2008 15:51:15 +0400 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <48A0C210.5050509@gmx.net> References: <48A0C210.5050509@gmx.net> Message-ID: <52211218541875@webmail34.yandex.ru> An HTML attachment was scrubbed... URL: From milezv at yandex.ru Tue Aug 12 08:08:55 2008 From: milezv at yandex.ru (Konstantin Stepanov) Date: Tue, 12 Aug 2008 19:08:55 +0400 Subject: [Vimperator] :setlocal / :setglobal implementation patch Message-ID: <36601218553735@webmail24.yandex.ru> An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: tab_local_options_buffer.patch Type: application/octet-stream Size: 573 bytes Desc: not available URL: From casey.manion at gmail.com Tue Aug 12 08:23:44 2008 From: casey.manion at gmail.com (Casey Manion) Date: Tue, 12 Aug 2008 08:23:44 -0700 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <52211218541875@webmail34.yandex.ru> References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> Message-ID: <66dd0ce40808120823p39b84b8fh4cf5f78a7f4a23fb@mail.gmail.com> Could you use cssrule for this and put it in your vimperatorrc file ? 2008/8/12 Konstantin Stepanov : > No problem! :) > > Put this code into your userChrome.css: > > #liberator-commandline .textbox-input:focus { > background-color: yellow !important; > } > > and you will get yellow command line when it's focused :) > > Enjoy! > > 12.08.08, 02:49, "Martin Stubenschrott" : > >> Alexey Trofimenko wrote: >> > Most obvious way would be to change background color of focused command >> > line. >> > Is there a way to do this? >> I am quite sure, with some CSS and a :focus (pseudo-)class it should be >> possible. However, somebody tried that and ran into some problems, but i >> still think a real CSS guru (not me ;)) could probably find a way. >> -- >> Martin >> _______________________________________________ >> Vimperator mailing list >> Vimperator at mozdev.org >> https://www.mozdev.org/mailman/listinfo/vimperator > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > > From fb at intoxicatedmind.net Tue Aug 12 15:18:04 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Wed, 13 Aug 2008 00:18:04 +0200 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <52211218541875@webmail34.yandex.ru> References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> Message-ID: <20080812221804.GC23943@intoxicatedmind.net> Hi. Konstantin Stepanov enlightened the world by writing these words of wisdom: > Put this code into your userChrome.css: > > #liberator-commandline .textbox-input:focus { > background-color: yellow !important; > } > > and you will get yellow command line when it's focused :) This does not work for me. I also tried without the ``:focus''. I'm using: Vimperator 1.2pre (created: 2008/08/08 00:41:51) running on: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.2pre) Gecko/2008070420 Firefox/3.0.2pre (Swiftfox) Any ideas? Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From dpb at driftaway.org Wed Aug 13 02:29:41 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Wed, 13 Aug 2008 12:29:41 +0300 Subject: [Vimperator] [Fwd: Mozilla Add-ons: Vimperator 1.1] In-Reply-To: <488E3F7C.70402@gmx.net> References: <488E3F7C.70402@gmx.net> Message-ID: 2008/7/29 Martin Stubenschrott : > Hi all, > > can somebody here confirm these things below and maybe give a hint, > when they do occur? > > I can't see them on Linux at least with the "normal" JavaScript Console. > > best regards, > > Martin > > -------- Original Message -------- > Subject: Mozilla Add-ons: Vimperator 1.1 > Date: Sun, 20 Jul 2008 04:22:15 -0700 > From: Mozilla Add-ons > Reply-To: Mozilla Add-ons > To: stubenschrott at gmx.net, dougkearns at gmail.com > > The following files of Vimperator 1.1 have been made public by a Mozilla Add-ons editor: > > Vimperator 1.1 - ALL > > Review Information: > Reviewer: Oliver Saier > Tested on Linux with Fx3 > Comments: Thanks for the update. Several errors were thrown to Console? though, please try to fix them for the next update if you can see them.
> Error: win is null
> Source file: chrome://vimperator/content/buffer.js
> Line: 108
> ----------
> Error: win is null
> Source file: chrome://vimperator/content/ui.js
> Line: 1379
> ----------
> Error: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMXULCommandDispatcher.advanceFocus]
> Source file: chrome://vimperator/content/events.js
> Line: 544 > > If you have questions about this review, please e-mail amo-editors at mozilla.org or join #addons on irc.mozilla.org. > > Mozilla Add-ons > http://addons.mozilla.org Hi, I did get one of those win is null errors. I'm not sure when they come though. I added some checks in CVS to check if it's null or not, so shouldn't give those errors anymore. I can't see that component failure in console? though. I do get another failure though, which seems to be unrelated to Vimperator. Error: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIWebNavigation.sessionHistory]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: chrome://global/content/bindings/browser.xml :: :: line 644" data: no] Source file: chrome://global/content/bindings/browser.xml Line: 650 -- Daniel From milezv at yandex.ru Wed Aug 13 13:08:23 2008 From: milezv at yandex.ru (Konstantin) Date: Wed, 13 Aug 2008 23:08:23 +0300 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <20080812221804.GC23943@intoxicatedmind.net> References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> Message-ID: <48A33F37.2050708@yandex.ru> Hm... It works for me. Mozilla/5.0 (X11; U; FreeBSD i386; ru-RU; rv:1.9.0.1) Gecko/2008080612 Firefox/3.0.1 FreeBSD 7.0-STABLE #12: Wed Aug 6 17:22:12 EEST 2008 I just fetched the latest version of Vimperator 1.2pre from CVS and installed it. Where did you put this code? It should be in your ~/.mozilla/firefox//chrome/userChrome.css file. Frank Blendinger wrote: > Hi. > > Konstantin Stepanov enlightened the world by writing > these words of wisdom: >> Put this code into your userChrome.css: >> >> #liberator-commandline .textbox-input:focus { >> background-color: yellow !important; >> } >> >> and you will get yellow command line when it's focused :) > > This does not work for me. I also tried without the ``:focus''. > > I'm using: > Vimperator 1.2pre (created: 2008/08/08 00:41:51) running on: Mozilla/5.0 > (X11; U; Linux i686; en-US; rv:1.9.0.2pre) Gecko/2008070420 Firefox/3.0.2pre (Swiftfox) > > Any ideas? > > > Greetings, > Frank > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator -- Konstantin Stepanov Web Developer From stubenschrott at gmx.net Wed Aug 13 14:45:24 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Wed, 13 Aug 2008 23:45:24 +0200 Subject: [Vimperator] :setlocal / :setglobal implementation patch In-Reply-To: <36601218553735@webmail24.yandex.ru> References: <36601218553735@webmail24.yandex.ru> Message-ID: <48A355F4.1040303@gmx.net> Konstantin Stepanov wrote: > Thanks for the catch! > Here's a short patch to make options really tab centered. Thanks, applied. I put get options() in tabs.js, however, hope it still works, please test. > Ah, well, we can implement it in both ways and use methods to > set/get in some implicit scope via methods, and set/get > via getter/setter mechanics in default scope for the option. > > What would you say? Yeah, I think this dual-mode would work best. -- Martin From milezv at yandex.ru Wed Aug 13 15:34:02 2008 From: milezv at yandex.ru (Konstantin) Date: Thu, 14 Aug 2008 01:34:02 +0300 Subject: [Vimperator] :setlocal / :setglobal implementation patch In-Reply-To: <48A355F4.1040303@gmx.net> References: <36601218553735@webmail24.yandex.ru> <48A355F4.1040303@gmx.net> Message-ID: <48A3615A.6070209@yandex.ru> Ok, done. New methods added: Option.get([scope]) returns current option's value in given scope (if set). Option.set(newValue[, scope]) sets option to new value in given scope (if set). If scope is omitted, works in default option's scope. If user tries to get/set option in incompatible scope (e.g. tries to set global only option in local scope or get local only option from global scope) nothing happens and "null" is returned. getter & setter of Option is defined as call to new .get & .set methods with scope unset. Tested on my machine. Seems to work. You can test it with colortab.js plugin: I updated it to define its "tabcolor" option to exist in local scope only, so tabcolor is visible/settable via :set & :setlocal commands, but not :setglobal. This plugin is also an example of new options framework usage: just define "scope" field in extraInfo parameter when defining new option and you are done! P.S. Next task in my ToDo list for Vimperator: implement really local autocommands execution. Martin Stubenschrott wrote: > Konstantin Stepanov wrote: > >> Thanks for the catch! >> Here's a short patch to make options really tab centered. > > Thanks, applied. I put get options() in tabs.js, however, hope it still > works, please test. > >> Ah, well, we can implement it in both ways and use methods to >> set/get in some implicit scope via methods, and set/get >> via getter/setter mechanics in default scope for the option. >> >> What would you say? > > Yeah, I think this dual-mode would work best. > > -- > Martin > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- Konstantin Stepanov Web Developer -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: options.scope.patch URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: colortab.js Type: application/x-javascript Size: 2114 bytes Desc: not available URL: From stubenschrott at gmx.net Wed Aug 13 16:12:03 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Thu, 14 Aug 2008 01:12:03 +0200 Subject: [Vimperator] :setlocal / :setglobal implementation patch In-Reply-To: <48A3615A.6070209@yandex.ru> References: <36601218553735@webmail24.yandex.ru> <48A355F4.1040303@gmx.net> <48A3615A.6070209@yandex.ru> Message-ID: <48A36A43.6080401@gmx.net> Konstantin wrote: > Ok, done. Well done, commited. > You can test it with colortab.js plugin: > I updated it to define its "tabcolor" option > to exist in local scope only, so tabcolor > is visible/settable via :set & :setlocal commands, > but not :setglobal. While it seems to generally work, on my theme, it does not change the tab color when I do manually :setlocal tabcolor=yellow Maybe it's a problem with the default GTK+ theme which firefox3 uses. > This plugin is also an example of new options framework > usage: just define "scope" field in extraInfo parameter > when defining new option and you are done! Yeah, sounds like the correct way to go. > P.S. Next task in my ToDo list for Vimperator: > implement really local autocommands execution. I can't imagine what you mean with that, but I am excited :) -- Martin From fb at intoxicatedmind.net Thu Aug 14 00:41:18 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Thu, 14 Aug 2008 09:41:18 +0200 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <48A33F37.2050708@yandex.ru> References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> Message-ID: <20080814074118.GM23943@intoxicatedmind.net> Hi. Konstantin enlightened the world by writing these words of wisdom: > Hm... It works for me. > > Mozilla/5.0 (X11; U; FreeBSD i386; ru-RU; rv:1.9.0.1) Gecko/2008080612 > Firefox/3.0.1 > FreeBSD 7.0-STABLE #12: Wed Aug 6 17:22:12 EEST 2008 > > I just fetched the latest version of Vimperator 1.2pre from CVS and > installed it. > Where did you put this code? It should be in your > ~/.mozilla/firefox//chrome/userChrome.css > file. For me it is ~/.firefox/default//chrome/userChrome.css - I checked that this is the correct file by making some other modifications and they worked as expected. But those do not: #liberator-commandline .textbox-input { background-color: green !important; } #liberator-commandline .textbox-input:focus { background-color: yellow !important; } I both tried Vimperator 1.1 and a curreny 1.2pre CVS versoin. Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From dougkearns at gmail.com Thu Aug 14 03:41:23 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Thu, 14 Aug 2008 20:41:23 +1000 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <48A33F37.2050708@yandex.ru> References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> Message-ID: <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> On Thu, Aug 14, 2008 at 6:08 AM, Konstantin wrote: > Hm... It works for me. FWIW, this doesn't work for me either. The :focus pseudo class seems to be completely ignored in the command line. Given all the 'funky' focus event firing going on there I'm not exactly surprised. :) Regards, Doug From teramako at gmail.com Thu Aug 14 04:46:07 2008 From: teramako at gmail.com (M.Terada) Date: Thu, 14 Aug 2008 20:46:07 +0900 Subject: [Vimperator] [PATCH] optimize liverator.events.feedkeys Message-ID: <6eebba490808140446l738e564g9721bc0b8f498541@mail.gmail.com> Hi Now, completions list has been to opened dualing "wildoptions" is setted to "auto" when we type a map which is seted like ":echo 'OK'" This patch fixes that. Best regards. -- teramako http://d.hatena.ne.jp/teramako/ -------------- next part -------------- A non-text attachment was scrubbed... Name: optimize_feedkeys.patch Type: text/x-patch Size: 7038 bytes Desc: not available URL: From milezv at yandex.ru Thu Aug 14 05:18:56 2008 From: milezv at yandex.ru (Konstantin Stepanov) Date: Thu, 14 Aug 2008 16:18:56 +0400 Subject: [Vimperator] :setlocal / :setglobal implementation patch Message-ID: <300301218716336@webmail65.yandex.ru> An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: colortab.js Type: application/x-javascript Size: 2319 bytes Desc: not available URL: From milezv at yandex.ru Thu Aug 14 05:53:20 2008 From: milezv at yandex.ru (Konstantin Stepanov) Date: Thu, 14 Aug 2008 16:53:20 +0400 Subject: [Vimperator] [PATCH] optimize liverator.events.feedkeys In-Reply-To: <6eebba490808140446l738e564g9721bc0b8f498541@mail.gmail.com> References: <6eebba490808140446l738e564g9721bc0b8f498541@mail.gmail.com> Message-ID: <291621218718400@webmail50.yandex.ru> An HTML attachment was scrubbed... URL: From milezv at yandex.ru Thu Aug 14 05:56:09 2008 From: milezv at yandex.ru (Konstantin Stepanov) Date: Thu, 14 Aug 2008 16:56:09 +0400 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> Message-ID: <556621218718569@webmail9.yandex.ru> An HTML attachment was scrubbed... URL: From teramako at gmail.com Thu Aug 14 06:06:22 2008 From: teramako at gmail.com (M.Terada) Date: Thu, 14 Aug 2008 22:06:22 +0900 Subject: [Vimperator] [PATCH] optimize liverator.events.feedkeys In-Reply-To: <291621218718400@webmail50.yandex.ru> References: <6eebba490808140446l738e564g9721bc0b8f498541@mail.gmail.com> <291621218718400@webmail50.yandex.ru> Message-ID: <6eebba490808140606m75a62bc4uf0813de9ab419eec@mail.gmail.com> Thanks for review. > Is it necessary to have two "" srtings in regexp here? > > + var keyStrings = keys.split(/||/i); Thiis is a mistake Best regards. On Thu, Aug 14, 2008 at 9:53 PM, Konstantin Stepanov wrote: > Is it necessary to have two "" srtings in regexp here? > > + var keyStrings = keys.split(/||/i); > > > 14.08.08, 15:46, "M.Terada" : > >> Hi >> Now, completions list has been to opened dualing "wildoptions" is >> setted to "auto" >> when we type a map which is seted like ":echo 'OK'" >> This patch fixes that. >> Best regards. >> -- >> teramako >> http://d.hatena.ne.jp/teramako/ > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > > -- teramako http://d.hatena.ne.jp/teramako/ -------------- next part -------------- A non-text attachment was scrubbed... Name: optimize_feedkeys.patch Type: text/x-patch Size: 7037 bytes Desc: not available URL: From schlachthausfunf at gmail.com Thu Aug 14 06:40:29 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Thu, 14 Aug 2008 09:40:29 -0400 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 11 In-Reply-To: References: Message-ID: This worked for me using Stylish: https://addons.mozilla.org/en-US/firefox/addon/2108 And I changed the color to light green: #86e586. On Wed, Aug 13, 2008 at 3:00 PM, wrote: > Message: 1 > Date: Wed, 13 Aug 2008 00:18:04 +0200 > From: Frank Blendinger > Subject: Re: [Vimperator] change commandline background color when > focused > To: vimperator at mozdev.org > Message-ID: <20080812221804.GC23943 at intoxicatedmind.net> > Content-Type: text/plain; charset="us-ascii" > > Hi. > > Konstantin Stepanov enlightened the world by writing > these words of wisdom: >> Put this code into your userChrome.css: >> >> #liberator-commandline .textbox-input:focus { >> background-color: yellow !important; >> } >> >> and you will get yellow command line when it's focused :) > > This does not work for me. I also tried without the ``:focus''. > > I'm using: > Vimperator 1.2pre (created: 2008/08/08 00:41:51) running on: Mozilla/5.0 > (X11; U; Linux i686; en-US; rv:1.9.0.2pre) Gecko/2008070420 Firefox/3.0.2pre (Swiftfox) > > Any ideas? > > > Greetings, > Frank > From fb at intoxicatedmind.net Thu Aug 14 07:55:14 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Thu, 14 Aug 2008 16:55:14 +0200 Subject: [Vimperator] change commandline background color when focused In-Reply-To: References: Message-ID: <20080814145514.GN23943@intoxicatedmind.net> Hi. Jan Snyder enlightened the world by writing these words of wisdom: > This worked for me using Stylish: > > https://addons.mozilla.org/en-US/firefox/addon/2108 > > And I changed the color to light green: #86e586. I have Stylish installed, too. So did you put the css snippet in the Stylish options instead of userChrome.css? Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From schlachthausfunf at gmail.com Thu Aug 14 20:22:42 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Thu, 14 Aug 2008 23:22:42 -0400 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 14 In-Reply-To: References: Message-ID: Yes, I put that css to change the command line green on focus into stylish and it worked good! I installed Stylish originally trying to get rid of scrollbars and titlebar. I wanted to get rid of that chrome titlebar but not fullscreen mode and go totally minimal. I have it now without anything at the top no toolbars or titlebar. This is how I got rid of title. https://addons.mozilla.org/en-US/firefox/addon/5737 I've been into this minimalism lately. I tried RatpoisonWM. Colon Commands are cool. But Rat Poison doesn't support GIMP. I finally switched my brain away from ADOBE and there's no way I'm quitting Gimp now just for Ratpoison. On Thu, Aug 14, 2008 at 3:00 PM, wrote: > I have Stylish installed, too. So did you put the css snippet in the > Stylish options instead of userChrome.css? > > > Greetings, > Frank > From k at bijna.net Thu Aug 14 21:55:13 2008 From: k at bijna.net (k at bijna.net) Date: Fri, 15 Aug 2008 04:55:13 +0000 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 14 In-Reply-To: References: Message-ID: <53f7fc100808142155qeb8860eqb1a4b4018119704a@mail.gmail.com> > I've been into this minimalism lately. I tried RatpoisonWM. Colon > Commands are cool. But Rat Poison doesn't support GIMP. I finally > switched my brain away from ADOBE and there's no way I'm quitting Gimp > now just for Ratpoison. I use ratpoison and GIMP. I understand it may seem a bit tricky to get them to cooperate--everyone seems to be saying it's impossible--but it's really quite simple. You can create a frame layout that works well (using fdump/frestore or a script of "vsplit 1/4" type commands) and ":dedicate" the frame with the canvas so things like rotate/scale don't hide your image. This is probably somewhere in the ratpoison mailing list archives or wiki. What does seem to be impossible with ratpoison is FontForge. A horrible interface even with a cooperative window manager but I haven't figured out how to make it even usable in Ratpoison (granted I haven't used it for quite some time). From penryu at gmail.com Thu Aug 14 23:04:48 2008 From: penryu at gmail.com (Tim Hammerquist) Date: Thu, 14 Aug 2008 23:04:48 -0700 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <556621218718569@webmail9.yandex.ru> References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> <556621218718569@webmail9.yandex.ru> Message-ID: Konstantin Stepanov wrote: > Well, uh, sorry then. > > Seems like I'm the only man who benefits from this code. > No, this rule works for me. It's come in pretty handy already, too! I only have Vimperator, NoScript, and Firebug enabled right now. Thanks for this, Konstantin! Tim -------------- next part -------------- An HTML attachment was scrubbed... URL: From dougkearns at gmail.com Thu Aug 14 23:40:45 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Fri, 15 Aug 2008 16:40:45 +1000 Subject: [Vimperator] change commandline background color when focused In-Reply-To: References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> <556621218718569@webmail9.yandex.ru> Message-ID: <644fc65e0808142340s27d61e4bl9c1fb25604ae6a74@mail.gmail.com> On Fri, Aug 15, 2008 at 4:04 PM, Tim Hammerquist wrote: > No, this rule works for me. It's come in pretty handy already, too! > > I only have Vimperator, NoScript, and Firebug enabled right now. This still doesn't work for me even with a clean profile. This might be connected with the visual bell not working for me either. Frank, does the visual bell work for you? Regards, Doug From fb at intoxicatedmind.net Fri Aug 15 00:17:57 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Fri, 15 Aug 2008 09:17:57 +0200 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <644fc65e0808142340s27d61e4bl9c1fb25604ae6a74@mail.gmail.com> References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> <556621218718569@webmail9.yandex.ru> <644fc65e0808142340s27d61e4bl9c1fb25604ae6a74@mail.gmail.com> Message-ID: <20080815071757.GO23943@intoxicatedmind.net> Hi. Doug Kearns enlightened the world by writing these words of wisdom: > On Fri, Aug 15, 2008 at 4:04 PM, Tim Hammerquist wrote: > > > > > No, this rule works for me. It's come in pretty handy already, too! > > > > I only have Vimperator, NoScript, and Firebug enabled right now. > > This still doesn't work for me even with a clean profile. This might be > connected with the visual bell not working for me either. > > Frank, does the visual bell work for you? Yes. Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From fb at intoxicatedmind.net Fri Aug 15 00:29:25 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Fri, 15 Aug 2008 09:29:25 +0200 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 14 In-Reply-To: References: Message-ID: <20080815072925.GP23943@intoxicatedmind.net> Hi. Jan Snyder enlightened the world by writing these words of wisdom: > Yes, I put that css to change the command line green on focus into > stylish and it worked good! Indeed, it does. Very nice to have it working, but I'd really like to know why it does not work when I just put it in my userChrome.css directly. Other modifications I made there work just fine. Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From teramako at gmail.com Fri Aug 15 06:08:46 2008 From: teramako at gmail.com (M.Terada) Date: Fri, 15 Aug 2008 22:08:46 +0900 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <20080815071757.GO23943@intoxicatedmind.net> References: <48A0C210.5050509@gmx.net> <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> <556621218718569@webmail9.yandex.ru> <644fc65e0808142340s27d61e4bl9c1fb25604ae6a74@mail.gmail.com> <20080815071757.GO23943@intoxicatedmind.net> Message-ID: <6eebba490808150608icbeb081qa8aeb875649ec30b@mail.gmail.com> Hi The other way is that write the below into .vimperatorrc javascript < References: <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> <556621218718569@webmail9.yandex.ru> <644fc65e0808142340s27d61e4bl9c1fb25604ae6a74@mail.gmail.com> <20080815071757.GO23943@intoxicatedmind.net> <6eebba490808150608icbeb081qa8aeb875649ec30b@mail.gmail.com> Message-ID: <4b315f820808150627k5804a336n2ceb193e9bee473@mail.gmail.com> This works for me, thanks. And, vimperatorrc is a better place for this anyway. On Fri, Aug 15, 2008 at 10:08 AM, M. Terada wrote: > Hi > > The other way is that > write the below into .vimperatorrc > > javascript < (function(){ > var inputElm = document.getElementById('liberator-commandline-command'); > function swapBGColor(event){ > inputElm.parentNode.style.backgroundColor = event.type=="focus" ? > "yellow" : ""; > } > inputElm.addEventListener('focus',swapBGColor,false); > inputElm.addEventListener('blur', swapBGColor,false); > })(); > EOM > > -- > teramako > http://d.hatena.ne.jp/teramako/ > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > From stubenschrott at gmx.net Fri Aug 15 06:31:38 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Fri, 15 Aug 2008 15:31:38 +0200 Subject: [Vimperator] [PATCH] optimize liverator.events.feedkeys In-Reply-To: <291621218718400@webmail50.yandex.ru> References: <6eebba490808140446l738e564g9721bc0b8f498541@mail.gmail.com> <291621218718400@webmail50.yandex.ru> Message-ID: <48A5853A.1040009@gmx.net> Konstantin Stepanov wrote: > Is it necessary to have two "" srtings in regexp here? Good catch, I think I'll request cvs write access for you, so you could also help me applying patches if you want, and also update your scripts like colortab.js yourself. Unless you don't think, that's worth it, I'll ask for an account for you in the next days. -- Martin PS: Does anybody know, how good Mercurial support in mozdev is now? So, whether it's worth to switch to it now. From stubenschrott at gmx.net Fri Aug 15 07:47:12 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Fri, 15 Aug 2008 16:47:12 +0200 Subject: [Vimperator] [PATCH] optimize liverator.events.feedkeys In-Reply-To: <6eebba490808140606m75a62bc4uf0813de9ab419eec@mail.gmail.com> References: <6eebba490808140446l738e564g9721bc0b8f498541@mail.gmail.com> <291621218718400@webmail50.yandex.ru> <6eebba490808140606m75a62bc4uf0813de9ab419eec@mail.gmail.com> Message-ID: <48A596F0.7060202@gmx.net> Hi, while i'd love to have such a patch, i was reluctant to write one myself because unfortunatly it's much harder your patch. While your's works faily well in standard cases, it fails for more advanced uses which all work in vim: 1.) Command line mappings do not work anymore with "optimized" mappings: :map x :echo or: :map x :echo bla 2.) Crazy manual mappings like: :cmap y :map x :echo "bla"y 3.) Commandline abbreviations like: :cabbr a aaa :map y :echo a While all these cases are surely not very common, I think correctness must be valued over speed in this case. The way to go would be to check each character for a (command line-) mapping/abbreviation, and only add it to the command line string if there is no mapping, otherwise execute it. Now, that i think of it, probably wouldn't be toooo much work. Hope you manage to do it (in a clean way). best regards and thanks for looking into this, as that's actually my main reason i have disabled wildoptions=auto myself for now :) -- Martin From schlachthausfunf at gmail.com Fri Aug 15 09:19:56 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Fri, 15 Aug 2008 12:19:56 -0400 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 15 In-Reply-To: References: Message-ID: > Message: 6 > Date: Fri, 15 Aug 2008 09:29:25 +0200 > From: Frank Blendinger > Subject: Re: [Vimperator] Vimperator Digest, Vol 17, Issue 14 > To: vimperator at mozdev.org > Message-ID: <20080815072925.GP23943 at intoxicatedmind.net> > Content-Type: text/plain; charset="us-ascii" > > Hi. > > Jan Snyder enlightened the world by writing > these words of wisdom: >> Yes, I put that css to change the command line green on focus into >> stylish and it worked good! > > Indeed, it does. Very nice to have it working, but I'd really like to > know why it does not work when I just put it in my userChrome.css > directly. Other modifications I made there work just fine. > > > Greetings, > Frank > Hmm..well, maybe you have installed Firefox from a Linux repo? It seems that downloading firefox from the Mozilla website provides all the jar files and whatnot. I haven't had much success modifying that userChrome.css file in the past either, like when I tried to remove the title bar. -Jan From ted at tedpavlic.com Fri Aug 15 11:54:13 2008 From: ted at tedpavlic.com (Ted Pavlic) Date: Fri, 15 Aug 2008 14:54:13 -0400 Subject: [Vimperator] Vimbox In-Reply-To: References: Message-ID: <48A5D0D5.4060909@tedpavlic.com> As discussed in this thread, there are evidently several projects that are aiming to do exactly this. I don't think anyone's mentioned it, but there's Yzis: http://www.yzis.org/wiki/index.php?title=Main_Page ==== Yzis a vi-like editor inspired by vim. Yzis aims to be a powerful, fast editor with all of Vim's features and hopefully, at some point, more. In Yzis, the core editing engine is placed in a library that does not depend on any GUI library. On top of it, GUI frontends are developed. The goal is to make vi-like editing capabilities available to many graphical applications. ==== I guess there's also a "vimpart" package that imparts Vi editing within KDE applications. Now that Qt/KDE4 runs natively on OS X, these solutions not only let you have a Vimbox, but they let you run your Vimbox on any OS. --Ted Jan Snyder wrote: > It would be interesting to see a full vim desktop environment. Maybe > like a combo of vim and fluxbox or gnome. Fluxbox would definitely be > more interesting with a vim command line. I've been using vim to do > webdesign so vimperator is very cool. > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- Ted Pavlic From schlachthausfunf at gmail.com Fri Aug 15 12:14:53 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Fri, 15 Aug 2008 15:14:53 -0400 Subject: [Vimperator] Vimbox Message-ID: > Message: 4 > Date: Fri, 15 Aug 2008 14:54:13 -0400 > From: Ted Pavlic > Subject: Re: [Vimperator] Vimbox > To: vimperator > Message-ID: <48A5D0D5.4060909 at tedpavlic.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > As discussed in this thread, there are evidently several projects that > are aiming to do exactly this. > > I don't think anyone's mentioned it, but there's Yzis: > > http://www.yzis.org/wiki/index.php?title=Main_Page > ==== > Yzis a vi-like editor inspired by vim. Yzis aims to be a powerful, fast > editor with all of Vim's features and hopefully, at some point, more. > > In Yzis, the core editing engine is placed in a library that does not > depend on any GUI library. On top of it, GUI frontends are developed. > The goal is to make vi-like editing capabilities available to many > graphical applications. > ==== > > I guess there's also a "vimpart" package that imparts Vi editing within > KDE applications. > > Now that Qt/KDE4 runs natively on OS X, these solutions not only let you > have a Vimbox, but they let you run your Vimbox on any OS. > > --Ted > Could be interesting that Yzis. Today I answered one of the main reasons for this for back buffer scrollback and copy-paste in Terminal Emulator with Gnu-Screen, which allows free backward cursor movement. Also ratpoison is based on this so I probably give ratpoison another shot since it does the colon commands I like. http://www.kuro5hin.org/story/2004/3/9/16838/14935 From javier at cozybit.com Fri Aug 15 17:20:54 2008 From: javier at cozybit.com (Javier Cardona) Date: Fri, 15 Aug 2008 17:20:54 -0700 Subject: [Vimperator] Navigation question Message-ID: <445f43ac0808151720u1449063bnc435aeb6f28e38e4@mail.gmail.com> Hi, Is there a way to edit the currently open url in place? e.g. Say I'm at http://dev.laptop.org/ticket/4000 and want to navigate to http://dev.laptop.org/ticket/3000 Is there an easy way to do this without re-typing the URL? Thanks, From k at bijna.net Fri Aug 15 17:53:04 2008 From: k at bijna.net (Kipling Inscore) Date: Sat, 16 Aug 2008 00:53:04 +0000 Subject: [Vimperator] Navigation question In-Reply-To: <445f43ac0808151720u1449063bnc435aeb6f28e38e4@mail.gmail.com> References: <445f43ac0808151720u1449063bnc435aeb6f28e38e4@mail.gmail.com> Message-ID: <53f7fc100808151753l388c2035q45c393b7620d2409@mail.gmail.com> On Sat, Aug 16, 2008 at 12:20 AM, Javier Cardona wrote: > Is there a way to edit the currently open url in place? > > e.g. > > Say I'm at http://dev.laptop.org/ticket/4000 > and want to navigate to http://dev.laptop.org/ticket/3000 > > Is there an easy way to do this without re-typing the URL? O (shift-o). From fb at intoxicatedmind.net Sat Aug 16 02:00:46 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Sat, 16 Aug 2008 11:00:46 +0200 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <4b315f820808150627k5804a336n2ceb193e9bee473@mail.gmail.com> References: <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> <556621218718569@webmail9.yandex.ru> <644fc65e0808142340s27d61e4bl9c1fb25604ae6a74@mail.gmail.com> <20080815071757.GO23943@intoxicatedmind.net> <6eebba490808150608icbeb081qa8aeb875649ec30b@mail.gmail.com> <4b315f820808150627k5804a336n2ceb193e9bee473@mail.gmail.com> Message-ID: <20080816090046.GS23943@intoxicatedmind.net> Hi. Rodolfo Borges enlightened the world by writing these words of wisdom: > On Fri, Aug 15, 2008 at 10:08 AM, M. Terada wrote: > > The other way is that > > write the below into .vimperatorrc > > > > javascript < > (function(){ > > var inputElm = document.getElementById('liberator-commandline-command'); > > function swapBGColor(event){ > > inputElm.parentNode.style.backgroundColor = event.type=="focus" ? > > "yellow" : ""; > > } > > inputElm.addEventListener('focus',swapBGColor,false); > > inputElm.addEventListener('blur', swapBGColor,false); > > })(); > > EOM > > > This works for me, thanks. > And, vimperatorrc is a better place for this anyway. Works nice for me too. Even better then the CSS version, which left the space behind the leading `:' in the command line uncolored. I also like having it in my vimperatorrc instead of some other plugin's config or the userChrome.css. Since I find this so useful, I was wondering if a similar thing was possible to make pass-through mode more noticable - i.e. make the commandline green. I'm not familiar with the vimperator source code, so I have no idea if this would as easy as the solution above. Any suggestions on what events one would have to take care of to do that? Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From stubenschrott at gmx.net Sat Aug 16 02:38:24 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Sat, 16 Aug 2008 11:38:24 +0200 Subject: [Vimperator] Navigation question In-Reply-To: <53f7fc100808151753l388c2035q45c393b7620d2409@mail.gmail.com> References: <445f43ac0808151720u1449063bnc435aeb6f28e38e4@mail.gmail.com> <53f7fc100808151753l388c2035q45c393b7620d2409@mail.gmail.com> Message-ID: <48A6A010.3010700@gmx.net> Kipling Inscore wrote: > O (shift-o). Or in this particular case 1000 :) From stubenschrott at gmx.net Sat Aug 16 02:40:50 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Sat, 16 Aug 2008 11:40:50 +0200 Subject: [Vimperator] change commandline background color when focused In-Reply-To: <20080816090046.GS23943@intoxicatedmind.net> References: <52211218541875@webmail34.yandex.ru> <20080812221804.GC23943@intoxicatedmind.net> <48A33F37.2050708@yandex.ru> <644fc65e0808140341u24ad1850u7ab893c708845365@mail.gmail.com> <556621218718569@webmail9.yandex.ru> <644fc65e0808142340s27d61e4bl9c1fb25604ae6a74@mail.gmail.com> <20080815071757.GO23943@intoxicatedmind.net> <6eebba490808150608icbeb081qa8aeb875649ec30b@mail.gmail.com> <4b315f820808150627k5804a336n2ceb193e9bee473@mail.gmail.com> <20080816090046.GS23943@intoxicatedmind.net> Message-ID: <48A6A0A2.7030603@gmx.net> Frank Blendinger wrote: > Since I find this so useful, I was wondering if a similar thing was > possible to make pass-through mode more noticable - i.e. make the > commandline green. I'm not familiar with the vimperator source code, so > I have no idea if this would as easy as the solution above. Any > suggestions on what events one would have to take care of to do that? I don't think it's (easily) possible now, but I think something like an ":autocmd ModeChange" would make sense. Although again, there should be a way to access some information in an :autocmd, in this case the new AND old mode should be able to be accessed somehow. -- Martin From krasnal at 2-0.pl Sat Aug 16 13:47:36 2008 From: krasnal at 2-0.pl (Andrzej Ostruszka) Date: Sat, 16 Aug 2008 22:47:36 +0200 Subject: [Vimperator] Nextpattern suggestion Message-ID: Hi I've got a little suggestion for nextpattern functionality (I think it is easy to add so I hope for it before next release :)). Sometimes it happens that instead of the text in the links leading to next/previous page there is some fancy picture (usually kind of arrow) so the ]] and [[ does not work but it could if the text in "alt" was scanned also. Would somebody be so kind and implement it (unfortunately I do not know javascript - if I knew I'd be sending patch instead of this email :)). Best regards Andrzej From aalinovi at panix.com Sat Aug 16 13:56:37 2008 From: aalinovi at panix.com (Arthur Alinovi) Date: Sat, 16 Aug 2008 16:56:37 -0400 (EDT) Subject: [Vimperator] vimperator.vim Message-ID: <60770.24.164.143.207.1218920197.squirrel@mail.panix.com> Basic newbie question - where does the vimperator.vim file go? Should it be included in the ~/.vimperatorrc file? Or should it be in the ~/.vimperator directory or in ~/vimperator/plugins? Thanks From milezv at yandex.ru Sat Aug 16 14:41:15 2008 From: milezv at yandex.ru (Konstantin) Date: Sun, 17 Aug 2008 00:41:15 +0300 Subject: [Vimperator] vimperator.vim In-Reply-To: <60770.24.164.143.207.1218920197.squirrel@mail.panix.com> References: <60770.24.164.143.207.1218920197.squirrel@mail.panix.com> Message-ID: <48A7497B.6060104@yandex.ru> This file is for Vim, not for Vimperator. It's syntax highlighting definitions for .vimperatorrc editiing in Vim. Place it into ~/.vim/syntax/ directory. If it doesn't exist, create it. Arthur Alinovi wrote: > Basic newbie question - where does the vimperator.vim file go? Should it > be included in the ~/.vimperatorrc file? Or should it be in the > ~/.vimperator directory or in ~/vimperator/plugins? > > Thanks > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- Konstantin Stepanov Web Developer From aalinovi at panix.com Sat Aug 16 17:05:22 2008 From: aalinovi at panix.com (Arthur Alinovi) Date: Sat, 16 Aug 2008 20:05:22 -0400 (EDT) Subject: [Vimperator] bookmarks manager key combination Message-ID: <42885.24.164.143.207.1218931522.squirrel@mail.panix.com> I've accidentally stumbled upon something of which I was unaware. Hitting Alt - Shift - b - o opens the Firefox bookmark manager. Is this key combination documented anywhere? Thanks From dougkearns at gmail.com Sat Aug 16 22:32:00 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Sun, 17 Aug 2008 15:32:00 +1000 Subject: [Vimperator] Nextpattern suggestion In-Reply-To: References: Message-ID: <644fc65e0808162232m610ed20ai1159834e9e682842@mail.gmail.com> On Sun, Aug 17, 2008 at 6:47 AM, Andrzej Ostruszka wrote: > Hi > > I've got a little suggestion for nextpattern functionality (I think it > is easy to add so I hope for it before next release :)). > Sometimes it happens that instead of the text in the links leading to > next/previous page there is some fancy picture (usually kind of arrow) > so the ]] and [[ does not work but it could if the text in "alt" was > scanned also. This is the way it currently works. What page is it failing on for you? Regards, Doug From now at bitwi.se Sun Aug 17 04:36:57 2008 From: now at bitwi.se (Nikolai Weibull) Date: Sun, 17 Aug 2008 13:36:57 +0200 Subject: [Vimperator] Ctrl+Q keybinding and other Firefox keybindings that get activated accidentally Message-ID: So after killing Firefox three times with Ctrl+Q after upgrading to 1.2 I finally checked the ChangeLog and found that Ctrl+Q has been replaced by Ctrl+Z for that exact reason. Ignoring the irony of it all, isn't it time we disable all of Firefox's built in keybindings? I wrote an add-on long ago that let you redefine Firefox's keybindings and it must be possible to simply remove them. Has anyone looked into this and found that it's impossible? Otherwise I could consider spending an hour or two working on this. From stubenschrott at gmx.net Sun Aug 17 05:19:21 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Sun, 17 Aug 2008 14:19:21 +0200 Subject: [Vimperator] Ctrl+Q keybinding and other Firefox keybindings that get activated accidentally In-Reply-To: References: Message-ID: <48A81749.1000502@gmx.net> Nikolai Weibull wrote: > So after killing Firefox three times with Ctrl+Q after upgrading to > 1.2 I finally checked the ChangeLog and found that Ctrl+Q has been > replaced by Ctrl+Z for that exact reason. Ignoring the irony of it > all, isn't it time we disable all of Firefox's built in keybindings? > I wrote an add-on long ago that let you redefine Firefox's keybindings > and it must be possible to simply remove them. Has anyone looked into > this and found that it's impossible? Otherwise I could consider > spending an hour or two working on this. Well, you could just set // allow key to be passed to firefox if we can't handle it stop = false; to true, if you want that behavior, but I don't see the advantage. Some (Vimperator) users still use things like F6 to focus the address bar or F11 to switch to fullscreen, unless we have a use for those keys, i don't see the benefit of disabling those keys. -- Martin From fb at intoxicatedmind.net Sun Aug 17 05:26:06 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Sun, 17 Aug 2008 14:26:06 +0200 Subject: [Vimperator] Ctrl+Q keybinding and other Firefox keybindings that get activated accidentally In-Reply-To: References: Message-ID: <20080817122606.GU23943@intoxicatedmind.net> Hi. Nikolai Weibull enlightened the world by writing these words of wisdom: > So after killing Firefox three times with Ctrl+Q after upgrading to > 1.2 I finally checked the ChangeLog and found that Ctrl+Q has been > replaced by Ctrl+Z for that exact reason. Ignoring the irony of it > all, isn't it time we disable all of Firefox's built in keybindings? > I wrote an add-on long ago that let you redefine Firefox's keybindings > and it must be possible to simply remove them. Has anyone looked into > this and found that it's impossible? Otherwise I could consider > spending an hour or two working on this. I agree very much with your idea. I would really like to have no more Firefox keybindings - I always hit those accidentally in pass-through mode or when some input field has focus. The ^Q to ^Z change was a blessing, now at least I don't kill the whole browser anymore, but I often get the print dialog in my way, as I have ^N/^P bindings to change tabs, but they don't work all the time. Having Firefox no more react to any keybindings at all and instead letting Vimperator do all input handling would just be consistent. If one wants something to be accessible fast, he can make a keybinding. With the new :emenu that has become even simpler then before. You would only have the Vimperator default keys plus the settings from the vimperatorrc instead of a confusing mix of Firefox + Vimperator + some other Plugins. Just a single place to do all the configuration. Unfortunately I can't provide any help, I have never done any Firefox development. I suppose removing the Firefox bindings should not be that hard, but it might be difficult to disable the bindings of any other plugins - but that is just a wild guess. Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From dougkearns at gmail.com Sun Aug 17 06:46:19 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Sun, 17 Aug 2008 23:46:19 +1000 Subject: [Vimperator] Ctrl+Q keybinding and other Firefox keybindings that get activated accidentally In-Reply-To: <48A81749.1000502@gmx.net> References: <48A81749.1000502@gmx.net> Message-ID: <644fc65e0808170646s75b69862t9ff22c4a43051ef7@mail.gmail.com> On Sun, Aug 17, 2008 at 10:19 PM, Martin Stubenschrott wrote: > Some > (Vimperator) users still use things like F6 to focus the address bar or > F11 to switch to fullscreen, unless we have a use for those keys, i > don't see the benefit of disabling those keys. Some? Can I smell another option in the air... Actually the one area where this really annoys me is in the command line. Regards, Doug From daniel.schaffrath at mac.com Sun Aug 17 09:40:17 2008 From: daniel.schaffrath at mac.com (Daniel Schaffrath) Date: Sun, 17 Aug 2008 18:40:17 +0200 Subject: [Vimperator] Open link in background tab from within extended hint mode Message-ID: <2CF23A0E-8921-4E80-9C19-D13747106B15@mac.com> Hello everybody, Attached you find a patch to add support for opening a link in a background tab from within extended hint mode. It as well updates the char-hints.js script and documentation. Yours, Daniel -------------- next part -------------- A non-text attachment was scrubbed... Name: AddOpenBackgroundTabExtendetHintMode.patch Type: application/octet-stream Size: 3364 bytes Desc: not available URL: From stubenschrott at gmx.net Sun Aug 17 10:26:51 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Sun, 17 Aug 2008 19:26:51 +0200 Subject: [Vimperator] Open link in background tab from within extended hint mode In-Reply-To: <2CF23A0E-8921-4E80-9C19-D13747106B15@mac.com> References: <2CF23A0E-8921-4E80-9C19-D13747106B15@mac.com> Message-ID: <48A85F5B.6040904@gmx.net> Hi Daniel, Daniel Schaffrath wrote: > Attached you find a patch to add support for opening a link in a > background tab from within extended hint mode. It as well updates the > char-hints.js script and documentation. Thanks applied. Very well done patch, even thought about the documentation. You are now also in src/AUTHORS :) best regards, Martin From stubenschrott at gmx.net Sun Aug 17 10:42:03 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Sun, 17 Aug 2008 19:42:03 +0200 Subject: [Vimperator] Ctrl+Q keybinding and other Firefox keybindings that get activated accidentally In-Reply-To: <644fc65e0808170646s75b69862t9ff22c4a43051ef7@mail.gmail.com> References: <48A81749.1000502@gmx.net> <644fc65e0808170646s75b69862t9ff22c4a43051ef7@mail.gmail.com> Message-ID: <48A862EB.2060006@gmx.net> Doug Kearns wrote: > On Sun, Aug 17, 2008 at 10:19 PM, Martin Stubenschrott > wrote: > > >> Some >> (Vimperator) users still use things like F6 to focus the address bar or >> F11 to switch to fullscreen, unless we have a use for those keys, i >> don't see the benefit of disabling those keys. The problem is, not all vimperator users are so hardcore vim users as we are. And I have seen a lot (well 2 ;)) users using ctrl-t in vimperator. The difference is, new (non-hardcore) users will probably have more problems to :map than us doing :map :imap :cmap Actually it would be easy to write a plugin, which disables all keys which are not taken by vimperator. The problem is, you can never know which other extensions the user has, and he things, vimperator does not work with extension abc, just because it does not pass ctrl-shift-x further. > Some? Can I smell another option in the air... To be honest, I even thought about this although I am not too much of a fan of "useless" options, but i just fear we can't find a solution which matches everyone, so a :set [no]swallowkeys (or similar) option (with default=no) would proably make sense. > Actually the one area where this really annoys me is in the command > line. Hmm, what's the problem there? Which keys do you use in the command line which would make sense to hit there but aren handled by Firefox? The problem is, it would require rewriting lots of functionality (even more in the textarea than in single-line edit fields), like shift-home, Ctrl-shift-end, etc. So IF you do all the work to make sure, that default functionality works (for all platforms - macos has some different keybindings) we can talk about stopping to pass keys in the command line to firefox :) Actually editor.js has: // insert mode mappings liberator.mappings.add(modes, ["", "", "", "", ""], "Ignore certain " + liberator.config.hostApplication + " key bindings", function () { /*liberator.beep();*/ }); I think the better way would be to extend this list for unwanted keys. -- Martin From informationeagle at gmail.com Sun Aug 17 12:32:00 2008 From: informationeagle at gmail.com (Edward Gomez) Date: Sun, 17 Aug 2008 12:32:00 -0700 Subject: [Vimperator] Making it Easier to Escape Message-ID: <9917f4490808171232g38f7f813tadb4f6cbf40e0509@mail.gmail.com> With it being such a tradition in vi, I don't know if anyone will take me seriously when I say that it would be nice if we had an alternative to the Escape Key in Vimperator. On Vim, I have had it mapped to ;i for years because with today's keyboards, going over touchpads all the way to Escape, seems such a *looong* distance to travel :-). I asked once before about this but, at that time, there was no alternative. Has anything changed? Short of a remapping alternative for Esc, on a related note, I was wondering whether it would be feasible when in "Pass Through" mode for a mouse/touchpad click to the command line to release Vimperator into command mode? I haven't thought this one through very well but it might be useful. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From iveqy at iveqy.com Sun Aug 17 12:46:22 2008 From: iveqy at iveqy.com (Fredrik Gustafsson) Date: Sun, 17 Aug 2008 21:46:22 +0200 Subject: [Vimperator] Making it Easier to Escape In-Reply-To: <9917f4490808171232g38f7f813tadb4f6cbf40e0509@mail.gmail.com> References: <9917f4490808171232g38f7f813tadb4f6cbf40e0509@mail.gmail.com> Message-ID: <20080817194622.GA26001@paksenarrion.gulon> On Sun, Aug 17, 2008 at 12:32:00PM -0700, Edward Gomez wrote: > With it being such a tradition in vi, I don't know if anyone will take me > seriously when I say that it would be nice if we had an alternative to the > Escape Key in Vimperator. On Vim, I have had it mapped to ;i for years > because with today's keyboards, going over touchpads all the way to Escape, > seems such a *looong* distance to travel :-). I asked once before about this > but, at that time, there was no alternative. Has anything changed? > > Short of a remapping alternative for Esc, on a related note, I was wondering > whether it would be feasible when in "Pass Through" mode for a mouse/touchpad > click to the command line to release Vimperator into command mode? I haven't > thought this one through very well but it might be useful. > > Thanks > > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator Not an answear to your question really, but the orginal vi keyboard had escape on the same place that holds caps lock today. The usual way to deal with this is to simply on an OS-level (or more specific, on an input device level) switch place on esc and caps lock. There are many examples how you do this just for your OS at vim.org. -- Med v?nliga h?lsningar Fredrik Gustafsson From harish.varanasi at gmail.com Sun Aug 17 13:02:11 2008 From: harish.varanasi at gmail.com (Harish Varanasi) Date: Sun, 17 Aug 2008 13:02:11 -0700 Subject: [Vimperator] Trouble with Awesomebar integration Message-ID: <75afefdd0808171302q2a25b67ek8b6947c25a91e645@mail.gmail.com> Hi, I was happy to see the integration with Awesomebar. Though, when I tried to test it out, I found a few rough edges. 1) Text inputted before selecting a link is not fed back to Awesomebar 2) Competion order is always placing "s" or the suggestions before the awesomebar results regardless of the "complete" value Details: 1) Suppose I type ":open sl" and get a list of options. I then select Slashdot from the list. Next time I enter "sl", I should see slashdot at the very top of the list per Awesomebar behavior. However, when I do this via vimperator, I do not get the expected behavior. When I use the Awesomebar GUI to do the same, only then is "Slasdot" becoming the first link in the list. This new ordering remains in vimperator thereafter. 2) Have :set complete="ls". Then when type ":open test", I see suggestions coming before the rest of the choices, which should not be the case per my ordering choice. Awesomebar is a great feature and I am glad that you are integrating these into Vimperator. Regards, Harish From stubenschrott at gmx.net Sun Aug 17 13:48:47 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Sun, 17 Aug 2008 22:48:47 +0200 Subject: [Vimperator] Trouble with Awesomebar integration In-Reply-To: <75afefdd0808171302q2a25b67ek8b6947c25a91e645@mail.gmail.com> References: <75afefdd0808171302q2a25b67ek8b6947c25a91e645@mail.gmail.com> Message-ID: <48A88EAF.1010708@gmx.net> Harish Varanasi wrote: > Hi, > > I was happy to see the integration with Awesomebar. Though, when I > tried to test it out, I found a few rough edges. > > 1) Text inputted before selecting a link is not fed back to Awesomebar > 2) Competion order is always placing "s" or the suggestions before the > awesomebar results regardless of the "complete" value > > > Details: > 1) Suppose I type ":open sl" and get a list of options. I then select > Slashdot from the list. Next time I enter "sl", I should see slashdot > at the very top of the list per Awesomebar behavior. However, when I > do this via vimperator, I do not get the expected behavior. When I > use the Awesomebar GUI to do the same, only then is "Slasdot" becoming > the first link in the list. This new ordering remains in vimperator > thereafter. > > 2) Have :set complete="ls". Then when type ":open test", I see > suggestions coming before the rest of the choices, which should not be > the case per my ordering choice. > > > Awesomebar is a great feature and I am glad that you are integrating > these into Vimperator. The problem with all your points is, that awesomebar results are generated asynchronously which is much harder to integrate than synchronous results. (While the first few results might come in within a few milliseconds, results 7-15 e.g. could take some seconds, so it's nearly impossible to get the ordering right). I am planning to rewrite the completion system for vimperator 2.0, *maybe* it works better then, but no promises. And yeah, i know of these rough parts, that's why that option is disabled by default for now, and i don't even use it myself, although i'd like to. -- Martin From fduddx at gmail.com Mon Aug 18 02:31:25 2008 From: fduddx at gmail.com (Darren Duan) Date: Mon, 18 Aug 2008 17:31:25 +0800 Subject: [Vimperator] Making it Easier to Escape In-Reply-To: <9917f4490808171232g38f7f813tadb4f6cbf40e0509@mail.gmail.com> References: <9917f4490808171232g38f7f813tadb4f6cbf40e0509@mail.gmail.com> Message-ID: I had the exact problem and now I am using AutoHotkey (btw, it's free on Windows) to solve it. It allows you to remap keys for specific applications, Firefox here of coz. On Mon, Aug 18, 2008 at 3:32 AM, Edward Gomez wrote: > With it being such a tradition in vi, I don't know if anyone will take me > seriously when I say that it would be nice if we had an alternative to the > Escape Key in Vimperator. On Vim, I have had it mapped to ;i for years > because with today's keyboards, going over touchpads all the way to Escape, > seems such a *looong* distance to travel :-). I asked once before about > this but, at that time, there was no alternative. Has anything changed? > > Short of a remapping alternative for Esc, on a related note, I was > wondering whether it would be feasible when in "Pass Through" mode for a > mouse/touchpad click to the command line to release Vimperator into command > mode? I haven't thought this one through very well but it might be useful. > > Thanks > > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dpb at driftaway.org Mon Aug 18 02:55:24 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Mon, 18 Aug 2008 12:55:24 +0300 Subject: [Vimperator] [plugin] gvimail: make gmail accessible by vimperator. In-Reply-To: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> Message-ID: 2008/4/18 mahefa randimbisoa : > http://vimperator.mozdev.org/scripts.html said: >> If you have written a plugin yourself, send it to the mailing list for a review, so it can be added here. > > Just to let you know that I've written a vimperator plugin that > enables almost all links in gmail. > Users of Gmail should have noticed 3 annoying problems: > when they type f, not all links gets hinted. Mouse is required in most cases. > when they use the keyboard, sometimes, the keys j,k,l, no longer respond. > the WISYWIG is not usable. > > This plugin fixes the first 2 issues. It works with the older and > newer versions of GMail. > > The plugin is available at > http://code.google.com/p/gvimail/ > and stable versions will be also submitted to the vimperator-plugin repository > http://coderepos.org/share/browser/lang/javascript/vimperator-plugins/trunk/gvimail.js > > The plugin suggest using stylechanger > http://coderepos.org/share/browser/lang/javascript/vimperator-plugins/trunk/stylechanger.js This plugin seems to be broken. The mail hints don't show. It looks a bit like the class names have changed in GMail, but I haven't had time to do anything about it. Is it broken for others too? -- Daniel From fb at intoxicatedmind.net Mon Aug 18 06:08:14 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Mon, 18 Aug 2008 15:08:14 +0200 Subject: [Vimperator] Making it Easier to Escape In-Reply-To: <20080817194622.GA26001@paksenarrion.gulon> References: <9917f4490808171232g38f7f813tadb4f6cbf40e0509@mail.gmail.com> <20080817194622.GA26001@paksenarrion.gulon> Message-ID: <20080818130814.GV23943@intoxicatedmind.net> Hi. Fredrik Gustafsson enlightened the world by writing these words of wisdom: > Not an answear to your question really, but the orginal vi keyboard had > escape on the same place that holds caps lock today. > > The usual way to deal with this is to simply on an OS-level (or more > specific, on an input device level) switch place on esc and caps lock. > There are many examples how you do this just for your OS at vim.org. I have done this for under Linux (very simple with xmodmap) and Windows (ugly registry hack, but what else to expect), but I never found a way to make CapsLock behave like ESC under Mac OS (I'm using 10.4). I would love to hear of any tips. Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From mahefa.randimbisoa at gmail.com Mon Aug 18 06:37:04 2008 From: mahefa.randimbisoa at gmail.com (mahefa randimbisoa) Date: Mon, 18 Aug 2008 16:37:04 +0300 Subject: [Vimperator] [plugin] gvimail: make gmail accessible by vimperator. In-Reply-To: References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> Message-ID: <2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> On Mon, Aug 18, 2008 at 12:55 PM, Daniel Bainton wrote: > This plugin seems to be broken. The mail hints don't show. It looks a > bit like the class names have changed in GMail, but I haven't had time > to do anything about it. > > Is it broken for others too? > Still working fine for me. From Thomas.Svensen at fast.no Tue Aug 19 01:55:34 2008 From: Thomas.Svensen at fast.no (Thomas Svensen) Date: Tue, 19 Aug 2008 10:55:34 +0200 Subject: [Vimperator] [plugin] gvimail: make gmail accessible byvimperator. In-Reply-To: <2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> <2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> Message-ID: Hi, I see that it stopped working with one of the later Vimperator builds. Going back to http://vimperator.driftaway.org/vimperator_1.2pre_2008-08-01.xpi makes the mail hints re-appear in Gmail. Sorry for not specifying the exact version where it stops working, but restarting Firefox is so slow on my Vista box at work :-( -- Regards, Thomas Svensen -----Original Message----- From: vimperator-bounces at mozdev.org [mailto:vimperator-bounces at mozdev.org] On Behalf Of mahefa randimbisoa Sent: 18. august 2008 15:37 To: vimperator at mozdev.org Subject: Re: [Vimperator] [plugin] gvimail: make gmail accessible byvimperator. On Mon, Aug 18, 2008 at 12:55 PM, Daniel Bainton wrote: > This plugin seems to be broken. The mail hints don't show. It looks a > bit like the class names have changed in GMail, but I haven't had time > to do anything about it. > > Is it broken for others too? > Still working fine for me. _______________________________________________ Vimperator mailing list Vimperator at mozdev.org https://www.mozdev.org/mailman/listinfo/vimperator From andrzej.ostruszka at gmail.com Tue Aug 19 03:58:59 2008 From: andrzej.ostruszka at gmail.com (Andrzej Ostruszka) Date: Tue, 19 Aug 2008 12:58:59 +0200 Subject: [Vimperator] Nextpattern suggestion In-Reply-To: <644fc65e0808162232m610ed20ai1159834e9e682842@mail.gmail.com> References: <644fc65e0808162232m610ed20ai1159834e9e682842@mail.gmail.com> Message-ID: On Sun, Aug 17, 2008 at 07:32, Doug Kearns wrote: [...] >> Sometimes it happens that instead of the text in the links leading to >> next/previous page there is some fancy picture (usually kind of arrow) >> so the ]] and [[ does not work but it could if the text in "alt" was >> scanned also. > > This is the way it currently works. What page is it failing on for you? Ohh my. It is working!!! It was fault on my part - I had a spelling error in regexp for Polish version of "next" and it was not working. Sorry for the noise - but that allowed me to spot my error. Thank you Best regards Andrzej From tshort at epri.com Mon Aug 18 14:11:33 2008 From: tshort at epri.com (T.Short) Date: Mon, 18 Aug 2008 21:11:33 +0000 (UTC) Subject: [Vimperator] Multiple selections with extended hints Message-ID: I like the idea of the extended hints, but in practice, it doesn't work well for me (or I'm missing something). Say I want to open links 11, 14, and 19 in tabs. I can do ;F111419, and it works fine, but after I do ;F11 the link indicators all disappear, so unless I remember the number, I don't know what to type next. Am I missing something? Is there a way to make the numbering remain when in extended hints mode? Vimperator 1.1 on FF 3.0.1 on WinXP - TS From daniel.schaffrath at mac.com Tue Aug 19 10:25:27 2008 From: daniel.schaffrath at mac.com (Daniel Schaffrath) Date: Tue, 19 Aug 2008 19:25:27 +0200 Subject: [Vimperator] Multiple selections with extended hints In-Reply-To: References: Message-ID: On 2008/08/18 , at 23:11, T.Short wrote: > I like the idea of the extended hints, but in practice, it doesn't > work well for > me (or I'm missing something). > > Say I want to open links 11, 14, and 19 in tabs. I can do ;F111419, > and it works > fine, but after I do ;F11 the link indicators all disappear, so > unless I > remember the number, I don't know what to type next. Am I missing > something? Is > there a way to make the numbering remain when in extended hints mode? > I don't know how the extended hint mode is supposed to work in this regard. Especially in the case of ';f' -- which for me does not make sense at all. This is why I hacked the hint mode to support a background always hint mode. This is: you once type ;'B' and then you type all the hints you want one after another which you want to open in a background tab. Attached you find the according patch. It works for char-hints only and and needs to applied to the current CVS version. Maybe you can use this as a start. I consider polishing it as soon as possible. Thank you, Daniel -------------- next part -------------- A non-text attachment was scrubbed... Name: AddBackgroundTabOpenAlwaysHintMode.patch Type: application/octet-stream Size: 4167 bytes Desc: not available URL: -------------- next part -------------- From daniel.schaffrath at mac.com Tue Aug 19 10:25:27 2008 From: daniel.schaffrath at mac.com (Daniel Schaffrath) Date: Tue, 19 Aug 2008 19:25:27 +0200 Subject: [Vimperator] Multiple selections with extended hints In-Reply-To: References: Message-ID: On 2008/08/18 , at 23:11, T.Short wrote: > I like the idea of the extended hints, but in practice, it doesn't > work well for > me (or I'm missing something). > > Say I want to open links 11, 14, and 19 in tabs. I can do ;F111419, > and it works > fine, but after I do ;F11 the link indicators all disappear, so > unless I > remember the number, I don't know what to type next. Am I missing > something? Is > there a way to make the numbering remain when in extended hints mode? > I don't know how the extended hint mode is supposed to work in this regard. Especially in the case of ';f' -- which for me does not make sense at all. This is why I hacked the hint mode to support a background always hint mode. This is: you once type ;'B' and then you type all the hints you want one after another which you want to open in a background tab. Attached you find the according patch. It works for char-hints only and and needs to applied to the current CVS version. Maybe you can use this as a start. I consider polishing it as soon as possible. Thank you, Daniel -------------- next part -------------- A non-text attachment was scrubbed... Name: AddBackgroundTabOpenAlwaysHintMode.patch Type: application/octet-stream Size: 4167 bytes Desc: not available URL: -------------- next part -------------- From stubenschrott at gmx.net Tue Aug 19 11:42:32 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Tue, 19 Aug 2008 20:42:32 +0200 Subject: [Vimperator] Multiple selections with extended hints In-Reply-To: References: Message-ID: <48AB1418.9020400@gmx.net> T.Short wrote: > I like the idea of the extended hints, but in practice, it doesn't work well for > me (or I'm missing something). > > Say I want to open links 11, 14, and 19 in tabs. I can do ;F111419, and it works > fine, but after I do ;F11 the link indicators all disappear, so unless I > remember the number, I don't know what to type next. Am I missing something? Is > there a way to make the numbering remain when in extended hints mode? You are right, ;F should probably keep displaying hints, when the 'activate' option for that is false or ;B when 'activate' is on (=link is followed in the background). If somebody can polish Daniel's patch to either work with ;B or with ;F (depending on 'activate'), I'd like to apply it. -- Martin From Thomas.Svensen at fast.no Tue Aug 19 15:09:15 2008 From: Thomas.Svensen at fast.no (Thomas Svensen) Date: Wed, 20 Aug 2008 00:09:15 +0200 Subject: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com><2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> Message-ID: At home with my Ubuntu install (which restarts Firefox in a fraction of the time taken by Vista...), I nailed it down to: Working on the 2008-08-06 build NOT working on the 2008-08-08 build (there is no 2008-08-07 build available) I would be very grateful if someone with intimate knowledge of the code could track down what changed between those dates and possible revert or fix that. If not, I guess I will have to pull out my dusty, old developer hat and have a peak myself. Regards, Thomas -----Opprinnelig melding----- Fra: vimperator-bounces at mozdev.org p? vegne av Thomas Svensen Sendt: ti 8/19/2008 10:55 Til: vimperator at mozdev.org Emne: Re: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. Hi, I see that it stopped working with one of the later Vimperator builds. Going back to http://vimperator.driftaway.org/vimperator_1.2pre_2008-08-01.xpi makes the mail hints re-appear in Gmail. Sorry for not specifying the exact version where it stops working, but restarting Firefox is so slow on my Vista box at work :-( -- Regards, Thomas Svensen -----Original Message----- From: vimperator-bounces at mozdev.org [mailto:vimperator-bounces at mozdev.org] On Behalf Of mahefa randimbisoa Sent: 18. august 2008 15:37 To: vimperator at mozdev.org Subject: Re: [Vimperator] [plugin] gvimail: make gmail accessible byvimperator. On Mon, Aug 18, 2008 at 12:55 PM, Daniel Bainton wrote: > This plugin seems to be broken. The mail hints don't show. It looks a > bit like the class names have changed in GMail, but I haven't had time > to do anything about it. > > Is it broken for others too? > Still working fine for me. _______________________________________________ Vimperator mailing list Vimperator at mozdev.org https://www.mozdev.org/mailman/listinfo/vimperator _______________________________________________ Vimperator mailing list Vimperator at mozdev.org https://www.mozdev.org/mailman/listinfo/vimperator -------------- next part -------------- An HTML attachment was scrubbed... URL: From informationeagle at gmail.com Tue Aug 19 17:18:28 2008 From: informationeagle at gmail.com (Edward Gomez) Date: Tue, 19 Aug 2008 17:18:28 -0700 Subject: [Vimperator] Making it Easier to Escape Message-ID: <9917f4490808191718l5528261bvc432f2bed7b6cdb0@mail.gmail.com> On Mon, 18 Aug 2008 17:31:25 +0800, Darren Duan" wrote: >I had the exact problem and now I am using AutoHotkey (btw, it's free on >Windows) to solve it. >It allows you to remap keys for specific applications, Firefox here of coz. Darren, Thanks so much for pointing this out, it's actually quite important to me and helps out enormously. I've had AutoHotkey on my system for a long time now but, incredibly, the thought never occurred to me (bangs head against the wall). I must be getting old. :-) At any rate, I mapped it to the RAlt::Esc for the time being until I can figure out alternatives. Actually, I'm sort of liking it like this. Cheers! -------------- next part -------------- An HTML attachment was scrubbed... URL: From informationeagle at gmail.com Tue Aug 19 18:34:31 2008 From: informationeagle at gmail.com (Edward Gomez) Date: Tue, 19 Aug 2008 18:34:31 -0700 Subject: [Vimperator] Making it Easier to Escape Message-ID: <9917f4490808191834y1ad3cb02se073d0ccb5bcfbae@mail.gmail.com> Darren, I'm testing this snippet (using kk) for AutoHotkey, which, while imperfect and limited to certain situations in vimperator, also has it's uses: ********************************************************************************** ~k:: if (A_ThisHotKey==A_PriorHotkey && A_TimeSincePriorHotkey < 500) Send, {ESC} Return ********************************************************************************** It is not intended to completely replace the escape key as in my previous (quite rough) example though. When and if I polish the whole thing a bit more I will let you know. Along with the RAlt::Esc, this feels pretty good and should do for a few days - I think. Thanks again. -------------- next part -------------- An HTML attachment was scrubbed... URL: From dpb at driftaway.org Tue Aug 19 20:36:29 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Wed, 20 Aug 2008 06:36:29 +0300 Subject: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. In-Reply-To: References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> <2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> Message-ID: Thanks. I took the few minutes to track it down. The setlocal/setglobal patch broke it. I'm not sure which is the better way, to fix Vimperator to default to OPTION_SCOPE_BOTH when adding options, or making the plugins require the extra argument. Martin, do you have an opinion? I have a patch to gvimail.js attached, that fixes the problem, but I might look into fixing this in Vimperator later when I have more time, so I don't think it should be applied to the upstream gvimail.js. -- Daniel 2008/8/20 Thomas Svensen : > At home with my Ubuntu install (which restarts Firefox in a fraction of the > time > taken by Vista...), I nailed it down to: > > Working on the 2008-08-06 build > NOT working on the 2008-08-08 build > > (there is no 2008-08-07 build available) > > I would be very grateful if someone with intimate knowledge > of the code could track down what changed between those dates > and possible revert or fix that. If not, I guess I will have > to pull out my dusty, old developer hat and have a peak myself. > > Regards, > > Thomas > > -----Opprinnelig melding----- > Fra: vimperator-bounces at mozdev.org p? vegne av Thomas Svensen > Sendt: ti 8/19/2008 10:55 > Til: vimperator at mozdev.org > Emne: Re: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. > > Hi, > > I see that it stopped working with one of the later Vimperator builds. > Going back to > http://vimperator.driftaway.org/vimperator_1.2pre_2008-08-01.xpi makes > the mail hints re-appear in Gmail. > Sorry for not specifying the exact version where it stops working, but > restarting Firefox is so slow on my Vista box at work :-( > > -- > Regards, > Thomas Svensen > > > -----Original Message----- > From: vimperator-bounces at mozdev.org > [mailto:vimperator-bounces at mozdev.org] On Behalf Of mahefa randimbisoa > Sent: 18. august 2008 15:37 > To: vimperator at mozdev.org > Subject: Re: [Vimperator] [plugin] gvimail: make gmail accessible > byvimperator. > > On Mon, Aug 18, 2008 at 12:55 PM, Daniel Bainton > wrote: >> This plugin seems to be broken. The mail hints don't show. It looks a >> bit like the class names have changed in GMail, but I haven't had time >> to do anything about it. >> >> Is it broken for others too? >> > > > Still working fine for me. > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > > -------------- next part -------------- A non-text attachment was scrubbed... Name: gvimail-option-scope.patch Type: application/octet-stream Size: 547 bytes Desc: not available URL: From dpb at driftaway.org Tue Aug 19 21:48:05 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Wed, 20 Aug 2008 07:48:05 +0300 Subject: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. In-Reply-To: References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> <2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> Message-ID: Umm. Ignore my last mail. I should never start looking at code after I wake up. Of course I used the 6.8.2008 version of Vimperator while testing.. sure it works... Yeah, right. Sorry about the noise. I'll look into this more in the evening, if I have time. -- Daniel 2008/8/20 Daniel Bainton : > Thanks. > > I took the few minutes to track it down. > > The setlocal/setglobal patch broke it. > > I'm not sure which is the better way, to fix Vimperator to default to > OPTION_SCOPE_BOTH when adding options, or making the plugins require > the extra argument. > > Martin, do you have an opinion? > > > I have a patch to gvimail.js attached, that fixes the problem, but I > might look into fixing this in Vimperator later when I have more time, > so I don't think it should be applied to the upstream gvimail.js. > > -- > Daniel > > 2008/8/20 Thomas Svensen : >> At home with my Ubuntu install (which restarts Firefox in a fraction of the >> time >> taken by Vista...), I nailed it down to: >> >> Working on the 2008-08-06 build >> NOT working on the 2008-08-08 build >> >> (there is no 2008-08-07 build available) >> >> I would be very grateful if someone with intimate knowledge >> of the code could track down what changed between those dates >> and possible revert or fix that. If not, I guess I will have >> to pull out my dusty, old developer hat and have a peak myself. >> >> Regards, >> >> Thomas >> >> -----Opprinnelig melding----- >> Fra: vimperator-bounces at mozdev.org p? vegne av Thomas Svensen >> Sendt: ti 8/19/2008 10:55 >> Til: vimperator at mozdev.org >> Emne: Re: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. >> >> Hi, >> >> I see that it stopped working with one of the later Vimperator builds. >> Going back to >> http://vimperator.driftaway.org/vimperator_1.2pre_2008-08-01.xpi makes >> the mail hints re-appear in Gmail. >> Sorry for not specifying the exact version where it stops working, but >> restarting Firefox is so slow on my Vista box at work :-( >> >> -- >> Regards, >> Thomas Svensen >> >> >> -----Original Message----- >> From: vimperator-bounces at mozdev.org >> [mailto:vimperator-bounces at mozdev.org] On Behalf Of mahefa randimbisoa >> Sent: 18. august 2008 15:37 >> To: vimperator at mozdev.org >> Subject: Re: [Vimperator] [plugin] gvimail: make gmail accessible >> byvimperator. >> >> On Mon, Aug 18, 2008 at 12:55 PM, Daniel Bainton >> wrote: >>> This plugin seems to be broken. The mail hints don't show. It looks a >>> bit like the class names have changed in GMail, but I haven't had time >>> to do anything about it. >>> >>> Is it broken for others too? >>> >> >> >> Still working fine for me. >> _______________________________________________ >> Vimperator mailing list >> Vimperator at mozdev.org >> https://www.mozdev.org/mailman/listinfo/vimperator >> _______________________________________________ >> Vimperator mailing list >> Vimperator at mozdev.org >> https://www.mozdev.org/mailman/listinfo/vimperator >> >> >> _______________________________________________ >> Vimperator mailing list >> Vimperator at mozdev.org >> https://www.mozdev.org/mailman/listinfo/vimperator >> >> > From mahefa.randimbisoa at gmail.com Tue Aug 19 23:48:09 2008 From: mahefa.randimbisoa at gmail.com (mahefa randimbisoa) Date: Wed, 20 Aug 2008 09:48:09 +0300 Subject: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. In-Reply-To: References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> <2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> Message-ID: <2ba1fac40808192348t17fa15fu443f215e58bf35b0@mail.gmail.com> What is very strange here: I actually send this mail through Gvimail and it works fine. I'm on the latest from cvs. You didn't change anything to gvimail.js, did you? How many people still can use gvimail now? From dotancohen at gmail.com Wed Aug 20 01:20:21 2008 From: dotancohen at gmail.com (Dotan Cohen) Date: Wed, 20 Aug 2008 11:20:21 +0300 Subject: [Vimperator] Insert/textarea mode disabled after page loads In-Reply-To: <2ba1fac40808072236m7c138e1ene9c76a68ac36bfda@mail.gmail.com> References: <2a9324370808062350m436b6529p22711ebd16a76f1d@mail.gmail.com> <489B3E75.4080300@gmx.net> <2ba1fac40808072236m7c138e1ene9c76a68ac36bfda@mail.gmail.com> Message-ID: <880dece00808200120o7cda264au5db85d9d94cd950c@mail.gmail.com> 2008/8/8 mahefa randimbisoa : > The most annoying figures are the tab closing (d) and page refreshing (r), > until 1.2 comes out, you could try > > :map d > :map r > :map R > > then, hit :q to close a tab, to refresh. Or simply Ctrl-W to close a tab, and Ctrl-R to refresh. But this breaks the point of using a MODAL program. You installed Vimperator to have a modal web browser. Just like in Vim, press ESC then switch to text-insert mode before typing. I had this problem when I first started using Vimperator and still relied on the mouse a bit. Since ditching the mouse, this problem has gone away as well. -- Dotan Cohen http://what-is-what.com http://gibberish.co.il ?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-? ?-?-?-?-?-?-? From schlachthausfunf at gmail.com Wed Aug 20 06:51:42 2008 From: schlachthausfunf at gmail.com (Jan Snyder) Date: Wed, 20 Aug 2008 09:51:42 -0400 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 22 In-Reply-To: References: Message-ID: > Message: 6 > Date: Wed, 20 Aug 2008 09:48:09 +0300 > From: "mahefa randimbisoa" > Subject: Re: [Vimperator] [plugin] gvimail: make gmail > accessiblebyvimperator. > To: vimperator at mozdev.org > Message-ID: > <2ba1fac40808192348t17fa15fu443f215e58bf35b0 at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > What is very strange here: I actually send this mail through Gvimail > and it works fine. > I'm on the latest from cvs. > You didn't change anything to gvimail.js, did you? > > How many people still can use gvimail now? > > > ------------------------------ My gvimail.js plugin still works, that is the numerical hints all still work, but I only upgraded through firefox updates. Maybe people with fresh install find it doesn't work. I don't use so many plugins, just gvimail, noscript.js, colortab.js, and colortabs doesn't work at all. From dpb at driftaway.org Wed Aug 20 07:01:47 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Wed, 20 Aug 2008 17:01:47 +0300 Subject: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. In-Reply-To: <2ba1fac40808192348t17fa15fu443f215e58bf35b0@mail.gmail.com> References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> <2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> <2ba1fac40808192348t17fa15fu443f215e58bf35b0@mail.gmail.com> Message-ID: 2008/8/20 mahefa randimbisoa : > What is very strange here: I actually send this mail through Gvimail > and it works fine. > I'm on the latest from cvs. Yeah, that's weird. What platform are you running it on? Both my work Linux machine and my OS X Macbook has it broken. > You didn't change anything to gvimail.js, did you? No. -- Daniel From mahefa.randimbisoa at gmail.com Wed Aug 20 07:11:52 2008 From: mahefa.randimbisoa at gmail.com (mahefa randimbisoa) Date: Wed, 20 Aug 2008 17:11:52 +0300 Subject: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. In-Reply-To: References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> <2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> <2ba1fac40808192348t17fa15fu443f215e58bf35b0@mail.gmail.com> Message-ID: <2ba1fac40808200711n57523d7w8ecf4fee4a54008f@mail.gmail.com> On Wed, Aug 20, 2008 at 5:01 PM, Daniel Bainton wrote: > What platform are you running it on? Both my work Linux machine and my > OS X Macbook has it broken. > I'm on Windows. Let's compare 2008-08-06 and 2008-08-08 then, but, rather difficult to me to fix an issue I can't see. From dougkearns at gmail.com Wed Aug 20 08:28:53 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Thu, 21 Aug 2008 01:28:53 +1000 Subject: [Vimperator] [plugin] gvimail: make gmail accessiblebyvimperator. In-Reply-To: References: <2ba1fac40804180645q91e6375h26ba7b4282a34e61@mail.gmail.com> <2ba1fac40808180637id0bcab3lfb739ec33490bb3a@mail.gmail.com> <2ba1fac40808192348t17fa15fu443f215e58bf35b0@mail.gmail.com> Message-ID: <644fc65e0808200828i3f0611b4kcf9b8ce723667210@mail.gmail.com> On Thu, Aug 21, 2008 at 12:01 AM, Daniel Bainton wrote: > What platform are you running it on? Both my work Linux machine and my > OS X Macbook has it broken. Works for me on my Linux box. Regards, Doug From ted at tedpavlic.com Wed Aug 20 10:38:38 2008 From: ted at tedpavlic.com (Ted Pavlic) Date: Wed, 20 Aug 2008 13:38:38 -0400 Subject: [Vimperator] Duplicate tab? In-Reply-To: References: <485156BB.1020404@tedpavlic.com> <487F3EED.8070006@yandex.ru> <487FB6C4.3020009@gmx.net> <4880C03F.50304@yandex.ru> <488331B8.4080506@gmx.net> <4883C63C.4030102@yandex.ru> <782121216630955@webmail12.yandex.ru> Message-ID: <48AC569E.9020305@tedpavlic.com> Related feature request: It would be nice if there was a way to "detach tab" to a new window. This feature comes with the Duplicate Tab extension. --Ted Daniel Bainton wrote: > 2008/7/21 Konstantin Stepanov : >> Looks like my webmail has broken inline patch. >> Here it is attached. > > Patch added to CVS. (Forgot to ask you for an entry about it for NEWS > and AUTHORS files too, but added them myself..) > > Thanks for the patch! > > -- > Daniel > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > -- Ted Pavlic From stubenschrott at gmx.net Wed Aug 20 10:58:41 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Wed, 20 Aug 2008 19:58:41 +0200 Subject: [Vimperator] Duplicate tab? In-Reply-To: <48AC569E.9020305@tedpavlic.com> References: <485156BB.1020404@tedpavlic.com> <487F3EED.8070006@yandex.ru> <487FB6C4.3020009@gmx.net> <4880C03F.50304@yandex.ru> <488331B8.4080506@gmx.net> <4883C63C.4030102@yandex.ru> <782121216630955@webmail12.yandex.ru> <48AC569E.9020305@tedpavlic.com> Message-ID: <48AC5B51.2030606@gmx.net> Ted Pavlic wrote: > Related feature request: It would be nice if there was a way to "detach > tab" to a new window. Yeah, a :tabde[tach] would be nice, indeed. > This feature comes with the Duplicate Tab extension. if i don't mix up something, I think they added this functionality to recent trunk firefox builds, one should check there first. -- Martin From ripley.net at gmail.com Fri Aug 22 01:31:09 2008 From: ripley.net at gmail.com (ripley zhang) Date: Fri, 22 Aug 2008 16:31:09 +0800 Subject: [Vimperator] Is there any way I could hide the "Navigation toolbar" Message-ID: <4bc6d8070808220131g16cb981bm4c8e6d4f888a632b@mail.gmail.com> Hi folks After I run command "set go+=mT", I found the "Navigation toolbar" will always display, and since I've moved all the buttons / address field next to the menus bar, this will leave a ugly blank there. Is there any command I can leverage to hide the "Navigation toolbar" permanently? -- All I want is peace in mind. -------------- next part -------------- An HTML attachment was scrubbed... URL: From milezv at yandex.ru Fri Aug 22 08:40:10 2008 From: milezv at yandex.ru (Konstantin Stepanov) Date: Fri, 22 Aug 2008 19:40:10 +0400 Subject: [Vimperator] Is there any way I could hide the "Navigation toolbar" In-Reply-To: <4bc6d8070808220131g16cb981bm4c8e6d4f888a632b@mail.gmail.com> References: <4bc6d8070808220131g16cb981bm4c8e6d4f888a632b@mail.gmail.com> Message-ID: <59561219419610@webmail11.yandex.ru> An HTML attachment was scrubbed... URL: From didier at bretin.net Sat Aug 23 00:03:49 2008 From: didier at bretin.net (Didier Bretin) Date: Sat, 23 Aug 2008 09:03:49 +0200 Subject: [Vimperator] modification of nextpattern Message-ID: <48AFB655.7010503@bretin.net> Hi, I'm trying to setup the nextpattern to some french word in my .vimperatorrc file: set nextpattern=\bSuivante\b I you go on this page: http://www.strategikon.info/forum2/viewtopic.php?t=18939 and then press ]] you didn't go to the next page. I'm with vimperator 1.2 on firefox portable 3.0.1. Do you have the same behaviour ? If yes, did I make a mistake ? Regards. -- Didier Bretin http://bretin.net/ From dougkearns at gmail.com Sat Aug 23 02:00:50 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Sat, 23 Aug 2008 19:00:50 +1000 Subject: [Vimperator] modification of nextpattern In-Reply-To: <48AFB655.7010503@bretin.net> References: <48AFB655.7010503@bretin.net> Message-ID: <644fc65e0808230200l211614d6vf93508823e2a4faa@mail.gmail.com> G'day Didier, On Sat, Aug 23, 2008 at 5:03 PM, Didier Bretin wrote: > Hi, > > I'm trying to setup the nextpattern to some french word in my > .vimperatorrc file: > set nextpattern=\bSuivante\b > > I you go on this page: > http://www.strategikon.info/forum2/viewtopic.php?t=18939 > > and then press ]] you didn't go to the next page. > > I'm with vimperator 1.2 on firefox portable 3.0.1. > > Do you have the same behaviour ? If yes, did I make a mistake ? The problem in this case is that the page has defined a "next" document relationship which points to the next thread in the forum rather than the next message in the current thread and we give precedence to relationships. I'm not sure what the best general solution for this is... The quick and dirty solution is for you to use GM, similar, to strip out or rewrite the LINK element assuming you don't otherwise use that relationship. Regards, Doug From didier at bretin.net Sat Aug 23 02:17:10 2008 From: didier at bretin.net (Didier Bretin) Date: Sat, 23 Aug 2008 11:17:10 +0200 Subject: [Vimperator] modification of nextpattern In-Reply-To: <644fc65e0808230200l211614d6vf93508823e2a4faa@mail.gmail.com> References: <48AFB655.7010503@bretin.net> <644fc65e0808230200l211614d6vf93508823e2a4faa@mail.gmail.com> Message-ID: <48AFD596.7000002@bretin.net> Doug Kearns a ?crit : > The problem in this case is that the page has defined a "next" document > relationship which points to the next thread in the forum rather than > the next message in the current thread and we give precedence to > relationships. > > I'm not sure what the best general solution for this is... > > The quick and dirty solution is for you to use GM, similar, to strip out > or rewrite the LINK element assuming you don't otherwise use that > relationship. > > title="Voir le sujet suivant" /> Thanks for the answer ! I didn't see that. I will try to make a GM script to modify this page. -- Didier Bretin http://bretin.net/ From indutdib at bulten.strangled.net Sat Aug 23 08:24:33 2008 From: indutdib at bulten.strangled.net (=?UTF-8?B?S2FybCBNw7ZsbGVy?=) Date: Sat, 23 Aug 2008 17:24:33 +0200 Subject: [Vimperator] [script] StumbleUpon plugin Message-ID: <48B02BB1.3070301@bulten.strangled.net> Hi! I have written a plugin to integrate StumbleUpon into Vimperator. Usage: :stu[mble], , , , Stumble - Show next page :tabstu[mble], :ts[tumble] Tab-Stumble - Show next page in a new tab :thumbup, :tu, :like, , , , Thumb up this page :thumbdown, :td, :dislike, , , , Thump down this page :nothumb, :nt, :unrate Remove rating for this page :rev[iew], , , , Show page review :tabrev[iew], :tr[eview] Show page review in a new tab :tag, , Tag this page :su[toolbar], :sutb, Toggle StumbleUpon toolbar :susignin, :sulogin Sign-in to StumbleUpon :susignout, :sulogout Sign-out from StumbleUpon What do you think? Best regards Karl -------------- next part -------------- A non-text attachment was scrubbed... Name: stumbleupon.js Type: application/x-javascript Size: 3290 bytes Desc: not available URL: From daning106 at gmail.com Sat Aug 23 09:56:25 2008 From: daning106 at gmail.com (Wang Ning) Date: Sun, 24 Aug 2008 00:56:25 +0800 Subject: [Vimperator] [issue]Program about press v twice Message-ID: Hi, If I press "v" twice accidentally, I found that I can't back to the CART state anymore. Else I change to the other tab and back. I use vimperator 1.2. -- Thanks Wang Ning From daning106 at gmail.com Sat Aug 23 09:59:01 2008 From: daning106 at gmail.com (Wang Ning) Date: Sun, 24 Aug 2008 00:59:01 +0800 Subject: [Vimperator] [issue]Program about press v twice In-Reply-To: References: Message-ID: Hi, More information. Press "v" twice when you are on CARET state, you will be in the VISUAL mode. But you just can't use ESC to back to CARET mode. On Sun, Aug 24, 2008 at 12:56 AM, Wang Ning wrote: > Hi, > > If I press "v" twice accidentally, I found that I can't back to the > CART state anymore. Else I change to the other tab and back. > I use vimperator 1.2. > > -- > Thanks > Wang Ning > -- Thanks Wang Ning From singpolyma at singpolyma.net Sat Aug 23 10:40:43 2008 From: singpolyma at singpolyma.net (Stephen Paul Weber) Date: Sat, 23 Aug 2008 13:40:43 -0400 Subject: [Vimperator] Disable vimperator bar Message-ID: <20080823174043.GA5939@singpolyma-mini> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I really like vimperator, and used it a lot under firefox 2. I really like the Awesome bar in ff3 though and the vimperator bar is buggy for link mouseovers (always has been flaky in that area for me). I'd really like a way to turn off the GUI overrides vimperator does and just use the normal statusbar and toolbars. All I want is the keybindins really (with hinting being the most important out of that). I tried extracting the hinting stuff and rolling my own, but that proved to be a harder than you'd think. Really this could just be a setting in vimperator core, or a tiny branch/fork. Would this be possible? Also, the messing with my clipboard and sometimes disabling defauld FF keybindings is annoying, although I could live with that again. - -- Stephen Paul Weber, @singpolyma Please see for how I prefer to be contacted. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFIsEub6oSxepE9BOsRAtZqAJ9bGTfPQQXOQgna4WUwQxslyNKlkQCgj2q8 e5BPHdd1NYPf8YdjPTGRMkA= =Zo/U -----END PGP SIGNATURE----- From rogutes at googlemail.com Sat Aug 23 12:26:59 2008 From: rogutes at googlemail.com (roges sparnuotos) Date: Sat, 23 Aug 2008 22:26:59 +0300 Subject: [Vimperator] Fwd: Disable vimperator bar In-Reply-To: <20080823191344.GA13577@ugu> References: <20080823174043.GA5939@singpolyma-mini> <20080823191344.GA13577@ugu> Message-ID: <55bf950c0808231226l5d611a78q311107591e43b551@mail.gmail.com> Stephen Paul Weber (2008-08-23 13:40): > Hello, > I really like vimperator, and used it a lot under firefox 2. I > really like the Awesome bar in ff3 though and the vimperator bar is > buggy for link mouseovers (always has been flaky in that area for me). > I'd really like a way to turn off the GUI overrides vimperator does and > just use the normal statusbar and toolbars. All I want is the > keybindins really (with hinting being the most important out of that). > I tried extracting the hinting stuff and rolling my own, but that proved > to be a harder than you'd think. Really this could just be a setting in > vimperator core, or a tiny branch/fork. Would this be possible? > > Also, the messing with my clipboard and sometimes disabling defauld FF > keybindings is annoying, although I could live with that again. > > - -- > Stephen Paul Weber, @singpolyma > Please see for how I prefer to be contacted. Hi, Could it be that all you need is :help guioptions (but this won't bring you the standard statusbar back). Could you be a little more specific about vimperator being "buggy for link mouseovers"? I think you imagine Vimperator being a bit simpler than it is. Have you looked at :help intro? Have you tried setting the following settings in Vimperator 1.2? :set complete=lsfbh :set wildoptions=auto -- Rogut?s From krishna at emptybox.org Sat Aug 23 20:59:54 2008 From: krishna at emptybox.org (Krishna Rajendran) Date: Sat, 23 Aug 2008 20:59:54 -0700 Subject: [Vimperator] PATCH: Hide hints for hidden elements Message-ID: <20080824035954.GA1494@sol.emptybox.org> Attached is a small patch to check if an element is hidden before showing a hint for it. The hint for the first google search result is pretty hard to see as the hidden menu options overlap it. It looks like an older version of Vimperator already did this. John-Galt in #vimperator said it was probably lost in a rewrite. He also told me exactly how to write the patch. -------------- next part -------------- Index: src/content/hints.js =================================================================== RCS file: /cvs/vimperator/src/content/hints.js,v retrieving revision 1.71 diff -u -r1.71 hints.js --- src/content/hints.js 23 Aug 2008 02:31:17 -0000 1.71 +++ src/content/hints.js 24 Aug 2008 03:49:41 -0000 @@ -107,6 +107,10 @@ if (!rect) continue; + computedStyle = doc.defaultView.getComputedStyle(elem, null); + if(computedStyle.getPropertyValue("visibility") == "hidden") + continue; + // TODO: mozilla docs recommend localName instead of tagName tagname = elem.tagName.toLowerCase(); if (tagname == "input" || tagname == "textarea") From sitaramc at gmail.com Sat Aug 23 21:43:19 2008 From: sitaramc at gmail.com (Sitaram Chamarty) Date: Sun, 24 Aug 2008 10:13:19 +0530 Subject: [Vimperator] Ctrl+Q keybinding and other Firefox keybindings that get activated accidentally In-Reply-To: <48A862EB.2060006@gmx.net> References: <48A81749.1000502@gmx.net> <644fc65e0808170646s75b69862t9ff22c4a43051ef7@mail.gmail.com> <48A862EB.2060006@gmx.net> Message-ID: <2e24e5b90808232143i13cae35fn50c9d89e249bbdc6@mail.gmail.com> On Sun, Aug 17, 2008 at 11:12 PM, Martin Stubenschrott wrote: > The problem is, not all vimperator users are so hardcore vim users as we > are. And I have seen a lot (well 2 ;)) users using ctrl-t in vimperator. > The difference is, new (non-hardcore) users will probably have more > problems to :map than us doing I'm a hardcore (*) vim user, but I use Ctrl-T for a new tab, among other things. I often have to work on other people's browsers and IDs and no one else I know uses vimperator, so my finger memory (aka muscle memory) needs to have the firefox defaults for less often used stuff. It's OK to remember two ways of doing it for frequent actions but not for everything, and explicitly opening a blank tab is rare enough that I honestly want to remember only one way of doing it. As Martin said, there's got to be ways we can protect ourselves from certain specific keystrokes rather than the disable-all-of-them approach. Thanks, Sitaram (*) hardcore enough to use it even for COBOL programming and writing the first version of vim's COBOL syntax file more than 10 years ago... ;-) From stubenschrott at gmx.net Sun Aug 24 02:52:28 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Sun, 24 Aug 2008 11:52:28 +0200 Subject: [Vimperator] Ctrl+Q keybinding and other Firefox keybindings that get activated accidentally In-Reply-To: <2e24e5b90808232143i13cae35fn50c9d89e249bbdc6@mail.gmail.com> References: <48A81749.1000502@gmx.net> <644fc65e0808170646s75b69862t9ff22c4a43051ef7@mail.gmail.com> <48A862EB.2060006@gmx.net> <2e24e5b90808232143i13cae35fn50c9d89e249bbdc6@mail.gmail.com> Message-ID: <48B12F5C.5020507@gmx.net> Sitaram Chamarty wrote: > I'm a hardcore (*) vim user, but I use Ctrl-T for a new tab, among > other things. I often have to work on other people's browsers and IDs > and no one else I know uses vimperator, so my finger memory (aka > muscle memory) needs to have the firefox defaults for less often used > stuff. It's OK to remember two ways of doing it for frequent actions > but not for everything, and explicitly opening a blank tab is rare > enough that I honestly want to remember only one way of doing it. Actually since i started using (or well at least installing) the Fast Dial extension, i was wondering if a :map :tabopen would make sense by default. This would also get rid off the beep for pressing ctrl-t, but also be consistent with other t/T mappings. On the other hand, the url bar wouldn't be focused then, so usage might be limited. Opinions? Or better uses of ctrl-t for the default vimp? -- Martin From dougkearns at gmail.com Sun Aug 24 16:14:18 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Mon, 25 Aug 2008 09:14:18 +1000 Subject: [Vimperator] PATCH: Hide hints for hidden elements In-Reply-To: <20080824035954.GA1494@sol.emptybox.org> References: <20080824035954.GA1494@sol.emptybox.org> Message-ID: <644fc65e0808241614u3ebfc404re49db28ee9bdc838@mail.gmail.com> On Sun, Aug 24, 2008 at 1:59 PM, Krishna Rajendran wrote: > Attached is a small patch to check if an element is hidden before > showing a hint for it. The hint for the first google search result is > pretty hard to see as the hidden menu options overlap it. > > It looks like an older version of Vimperator already did this. > John-Galt in #vimperator said it was probably lost in a rewrite. He also > told me exactly how to write the patch. I've applied this - also checking for 'display' values of "none". Thank you both. Regards, Doug From stevel at songbirdnest.com Mon Aug 25 09:50:02 2008 From: stevel at songbirdnest.com (Stephen Lau) Date: Mon, 25 Aug 2008 09:50:02 -0700 Subject: [Vimperator] window focus broken? Message-ID: <48B2E2BA.6090808@songbirdnest.com> I was using Vimperator 1.1 quite happily and just installed 1.2 (and subsequent nightlies). One behaviour I often do is open up a whole bunch of background tabs from a site and then start reading and hitting 'd' to remove the current tab. I notice in 1.2 (and nightlies) that after removing the current tab, the next tab is made visible - but not focused properly, so that I can't hit 'd' without first clicking on the window to give the tab focus. Has anyone else seen this problem? cheers, steve -- stephen lau | stevel at songbirdnest.com | www.whacked.net From singpolyma at singpolyma.net Mon Aug 25 11:01:13 2008 From: singpolyma at singpolyma.net (Stephen Paul Weber) Date: Mon, 25 Aug 2008 14:01:13 -0400 Subject: [Vimperator] Disable vimperator bar Message-ID: <20080825180113.GB5997@singpolyma-mini> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 > > I really like vimperator, and used it a lot under firefox 2. I > > really like the Awesome bar in ff3 though and the vimperator bar is > > buggy for link mouseovers (always has been flaky in that area for > > me). > > I'd really like a way to turn off the GUI overrides vimperator does > > and > > just use the normal statusbar and toolbars. All I want is the > > keybindins really (with hinting being the most important out of > > that). > > I tried extracting the hinting stuff and rolling my own, but that > > proved > > to be a harder than you'd think. Really this could just be a setting > > in > > vimperator core, or a tiny branch/fork. Would this be possible? > > > > Also, the messing with my clipboard and sometimes disabling defauld > > FF > > keybindings is annoying, although I could live with that again. > > > Could it be that all you need is > :help guioptions > (but this won't bring you the standard statusbar back). Then it's not what I want. I care about sane navigation with the keyboard, not "look and feel like vim" (especially since vim is an editor and firefox in not - much does not apply). I have just previosly (before awesomebar) been willing to live with buggy L&F for the sake of keybings. > Could you be a little more specific about vimperator being "buggy for > link mouseovers"? Sure - 8 times out of 10, on 3 computers out of 5, the vimperator "statusbar" will only show the URL of the current page, not of pages I hover over links for (never did figure out how to get to see this information from inside vimperator). I know that's horrid to debug, and that bar can't be a simple thing - that's why my suggestion is to have an option to turn all vimperator-relate UI off. > I think you imagine Vimperator being a bit simpler than it is. Have you > looked at :help intro? Many times in my months of use. Although the first FF3 release had almost nothing there (contributing to my giving up on it). > Have you tried setting the following settings in Vimperator 1.2? > :set complete=lsfbh > :set wildoptions=auto No, although I've heard from others that they don't work well. Really I don't want to hack vimperator to be like Firefox, that feels like the wrong solution - firefox is already there, I want to make it *better* by having sane keyboard navigation. Having written this email I realise now this is probably out of scope. If I get time I'll likely fork relevant parts (or start from scratch) to get something related that does this. - -- Stephen Paul Weber, @singpolyma Please see for how I prefer to be contacted. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFIsvNp6oSxepE9BOsRAup9AJ9e/rf9RXztGz7TPkA6xblnzp1iXwCfa8w5 Wc4oOzPB7FepyL0Bp1M8MNA= =h08W -----END PGP SIGNATURE----- From stubenschrott at gmx.net Mon Aug 25 11:02:06 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Mon, 25 Aug 2008 20:02:06 +0200 Subject: [Vimperator] window focus broken? In-Reply-To: <48B2E2BA.6090808@songbirdnest.com> References: <48B2E2BA.6090808@songbirdnest.com> Message-ID: <48B2F39E.6080609@gmx.net> Stephen Lau wrote: > I was using Vimperator 1.1 quite happily and just installed 1.2 (and > subsequent nightlies). One behaviour I often do is open up a whole > bunch of background tabs from a site and then start reading and hitting > 'd' to remove the current tab. I notice in 1.2 (and nightlies) that > after removing the current tab, the next tab is made visible - but not > focused properly, so that I can't hit 'd' without first clicking on the > window to give the tab focus. > > Has anyone else seen this problem? Works here, on Linux. Which OS are you using? I noticed a similar problem in muttator, however, maybe when i fix that, yours will be fixed too. -- Martin From steve at grommit.com Mon Aug 25 11:20:24 2008 From: steve at grommit.com (Stephen Lau) Date: Mon, 25 Aug 2008 11:20:24 -0700 Subject: [Vimperator] window focus broken? In-Reply-To: <48B2F39E.6080609@gmx.net> References: <48B2E2BA.6090808@songbirdnest.com> <48B2F39E.6080609@gmx.net> Message-ID: <48B2F7E8.2090502@grommit.com> Martin Stubenschrott wrote: > Stephen Lau wrote: > > >> I was using Vimperator 1.1 quite happily and just installed 1.2 (and >> subsequent nightlies). One behaviour I often do is open up a whole >> bunch of background tabs from a site and then start reading and hitting >> 'd' to remove the current tab. I notice in 1.2 (and nightlies) that >> after removing the current tab, the next tab is made visible - but not >> focused properly, so that I can't hit 'd' without first clicking on the >> window to give the tab focus. >> >> Has anyone else seen this problem? >> > > Works here, on Linux. > > Which OS are you using? > > I noticed a similar problem in muttator, however, maybe when i fix that, > yours will be fixed too. > > This is on Mac OS X 10.5.4 (and FF3.0.1). I probably should have mentioned that the focus problem isn't limited to just 'd', none of the controls (j,k, etc. for scrolling) work. Thanks Martin! cheers, steve -- stephen lau | steve at grommit.com | www.whacked.net From milezv at yandex.ru Mon Aug 25 16:18:59 2008 From: milezv at yandex.ru (Konstantin) Date: Tue, 26 Aug 2008 02:18:59 +0300 Subject: [Vimperator] [patch] autocommands optimized a little Message-ID: <48B33DE3.3070409@yandex.ru> Just a few small changes to make things work faster in case of large number of autocommands. Diff file attached. Changes commited. -- Konstantin Stepanov Web Developer -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: events.js.diff URL: From krishna at emptybox.org Mon Aug 25 16:19:39 2008 From: krishna at emptybox.org (Krishna Rajendran) Date: Mon, 25 Aug 2008 16:19:39 -0700 Subject: [Vimperator] Disable vimperator bar In-Reply-To: <20080825180113.GB5997@singpolyma-mini> References: <20080825180113.GB5997@singpolyma-mini> Message-ID: <20080825231939.GA11906@sol.emptybox.org> On Mon, Aug 25, 2008 at 02:01:13PM -0400, Stephen Paul Weber wrote: > > > I'd really like a way to turn off the GUI overrides vimperator does > > > and > > > just use the normal statusbar and toolbars. All I want is the > > > keybindins really (with hinting being the most important out of > > > that). > > > I tried extracting the hinting stuff and rolling my own, but that > > > proved > > > to be a harder than you'd think. There is a firefox plugin called hit-a-hint that gives you hinting. I think it predates vimperator. Combine that with a few key bindings like hjkl, and you're on your way to your ideal vision of a web browser. From sitaramc at gmail.com Mon Aug 25 20:17:33 2008 From: sitaramc at gmail.com (Sitaram Chamarty) Date: Tue, 26 Aug 2008 08:47:33 +0530 Subject: [Vimperator] Disable vimperator bar In-Reply-To: <20080825180113.GB5997@singpolyma-mini> References: <20080825180113.GB5997@singpolyma-mini> Message-ID: <2e24e5b90808252017i1160e2f9r84eda5ec0cb4ea9e@mail.gmail.com> Sorry I'm not attempting to answer the big picture question, but... On Mon, Aug 25, 2008 at 11:31 PM, Stephen Paul Weber wrote: > "statusbar" will only show the URL of the current page, not of pages I > hover over links for (never did figure out how to get to see this :set ssli=2 in your ~/.vimperatorrc (or use the full form: :set showstatuslinks=2 From dougkearns at gmail.com Mon Aug 25 20:57:21 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Tue, 26 Aug 2008 13:57:21 +1000 Subject: [Vimperator] Disable vimperator bar In-Reply-To: <20080823174043.GA5939@singpolyma-mini> References: <20080823174043.GA5939@singpolyma-mini> Message-ID: <644fc65e0808252057oa2c60d3t78c91fc98fa04faf@mail.gmail.com> On Sun, Aug 24, 2008 at 3:40 AM, Stephen Paul Weber wrote: > and the vimperator bar is > buggy for link mouseovers (always has been flaky in that area for me). As far as I'm aware there's never been any reports of this still being a problem in FF3. Are you saying that it is? Regards, Doug From stubenschrott at gmx.net Tue Aug 26 00:14:25 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Tue, 26 Aug 2008 09:14:25 +0200 Subject: [Vimperator] [patch] autocommands optimized a little In-Reply-To: <48B33DE3.3070409@yandex.ru> References: <48B33DE3.3070409@yandex.ru> Message-ID: <48B3AD51.80702@gmx.net> Konstantin wrote: > Just a few small changes to make things work faster in case of large number of autocommands. > Diff file attached. > Changes commited. Thanks, patch makes absolutely sense. > + if (autoCommands[eventsIter[i]][y][0] == regex && autoCommands[eventsIter[i]][y][1] == cmds) { Please put { on a new line in future. -- Martin From daniel.schaffrath at mac.com Tue Aug 26 02:11:00 2008 From: daniel.schaffrath at mac.com (Daniel Schaffrath) Date: Tue, 26 Aug 2008 11:11:00 +0200 Subject: [Vimperator] Some textarea mappings Message-ID: Dear Community! While fetching upstream changes I found the following patches in mecurial queues. As I don't use external vim at the moment, I like them. Maybe they are of general use. AddDeleteCharacterInTextareaModeSupport.patch AddTextareaDMapping.patch AddToggleCharacterCaseSupport.patch Best regards, Daniel -------------- next part -------------- A non-text attachment was scrubbed... Name: AddToggleCharacterCaseSupport.patch Type: application/octet-stream Size: 1816 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: AddTextareaDMapping.patch Type: application/octet-stream Size: 581 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: AddDeleteCharacterInTextareaModeSupport.patch Type: application/octet-stream Size: 907 bytes Desc: not available URL: -------------- next part -------------- From daniel.schaffrath at mac.com Tue Aug 26 03:21:34 2008 From: daniel.schaffrath at mac.com (Daniel Schaffrath) Date: Tue, 26 Aug 2008 12:21:34 +0200 Subject: [Vimperator] Backporting hint visibility check to char-hints Message-ID: Hello everybody, It seems recently proposed check to not generate hints for invisible links did not make it to the character hints. The attached patch should fix that. Thank you, Daniel diff --git a/www/scripts/char-hints.js b/www/scripts/char-hints.js --- a/www/scripts/char-hints.js +++ b/www/scripts/char-hints.js @@ -267,16 +267,20 @@ chh.generate = function (win)//{{{ { // TODO: for frames, this calculation is wrong rect = elem.getBoundingClientRect(); if (!rect || rect.top > height || rect.bottom < 0 || rect.left > width || rect.right < 0) continue; rect = elem.getClientRects()[0]; if (!rect) + continue; + + var computedStyle = doc.defaultView.getComputedStyle(elem, null); + if (computedStyle.getPropertyValue("visibility") == "hidden" || computedStyle.getPropertyValue("display") == "none") continue; // TODO: mozilla docs recommend localName instead of tagName tagname = elem.tagName.toLowerCase(); text = ""; span = baseNodeAbsolute.cloneNode(true); span.style.left = (rect.left + scrollX) + "px"; span.style.top = (rect.top + scrollY) + "px"; -------------- next part -------------- A non-text attachment was scrubbed... Name: AddVisibilityCheckToCharHints.patch Type: application/octet-stream Size: 537 bytes Desc: not available URL: -------------- next part -------------- From mac at calmar.ws Tue Aug 26 04:40:33 2008 From: mac at calmar.ws (calmar) Date: Tue, 26 Aug 2008 13:40:33 +0200 Subject: [Vimperator] Backporting hint visibility check to char-hints In-Reply-To: References: Message-ID: <20080826114033.GB3941@tuxli> On Tue, Aug 26, 2008 at 12:21:34PM +0200, Daniel Schaffrath wrote: > Hello everybody, > > It seems recently proposed check to not generate hints for invisible > links did not make it to the character hints. The attached patch should > fix that. > > Thank you, > Daniel I added that, thanks Daniel. char-hints.js was anyway just a quick hack, because if felt responsible for those who did not like char-hints. So when you have any other goodies to it :) thanks marco -- (o_ It rocks: LINUX + Command-Line-Interface //\ GPG: 0x59D90F4D V_/_ http://www.calmar.ws -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: not available URL: From dpb at driftaway.org Tue Aug 26 05:40:50 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Tue, 26 Aug 2008 15:40:50 +0300 Subject: [Vimperator] Some textarea mappings In-Reply-To: References: Message-ID: 2008/8/26 Daniel Schaffrath : > Dear Community! > > While fetching upstream changes I found the following patches in mecurial > queues. As I don't use external vim at the moment, I like them. Maybe they > are of general use. > > AddDeleteCharacterInTextareaModeSupport.patch > AddTextareaDMapping.patch > AddToggleCharacterCaseSupport.patch Hi! Thanks for the patches! I've applied them all to the CVS tree. -- Daniel From jpboodhoo at gmail.com Tue Aug 26 07:42:55 2008 From: jpboodhoo at gmail.com (Jean-Paul Boodhoo) Date: Tue, 26 Aug 2008 15:42:55 +0100 Subject: [Vimperator] Vimperator 1.2 and Pass Through Mode Issues In Gmail Message-ID: <8c0cf4110808260742i2367bcf9y749cf1d3820d85f6@mail.gmail.com> Hey Everyone, I have been using vimperator for a while, and I am noticing some differences in the way that vimperator handles pass through mode with gmail. In the past I would go to gmail and enter pass through mode so I could navigate through my inbox, compose mail etc using the gmail shortcuts. One of the problems I am having with 1.2 is that I often have to enter pass through mode and then "click" on the active firefox window before the pass through starts occuring. You can repeat this process as follows: 1) Navigate to gmail.com and login. 2) Enter passthrough mode 3) Navigate to an email you want to reply to and hit o to open it. 4) Type r to create the reply to message, fill in the necessary fields and hit the tab button to put focus on the Send button. 5) Hit the enter key to submit the mail. 6) Once gmail notifies you that the "message has been sent" try to hit u to go back up to the inbox (or gi). It will not work until you click on the gmail window. This is just one of the many ways that pass through seems to be functioning different with gmail in 1.2 Has anyone run into this issue, or figured a way to get around it without having to reach for the mouse? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: From fb at intoxicatedmind.net Tue Aug 26 09:10:26 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Tue, 26 Aug 2008 18:10:26 +0200 Subject: [Vimperator] Textmode focus problem Message-ID: <20080826161026.GI15755@intoxicatedmind.net> Hi, I just tried out using text fields with the noinsertmode setting and found some bugs. When focusing a text field (with gi, a hint or some other way) textarea mode gets set correctly. I can change between insert and textarea modes with `i'/. But when I press when in textarea mode, to leave the text field, something strange happens: normal mode gets set again, but somehow the text field still has focus, so that pressing `i' both sets caret mode and inserts an actuall `i' character into the text field from the second hit of `i' on. Pressing returns from caret to normal mode, but the next `gi' does not give the text field focus as expected. I would also suggest to color the text field when it has focus, just the way it is done when launching an external editor with `^I'. I found it rather annoying to always have to look to the bottom of the window to see if I can safely type in the text field. I often did not look and was in normal mode, ending up closing the tab with `d' and doing other stupid things. Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From fb at intoxicatedmind.net Tue Aug 26 09:12:32 2008 From: fb at intoxicatedmind.net (Frank Blendinger) Date: Tue, 26 Aug 2008 18:12:32 +0200 Subject: [Vimperator] Textmode focus problem In-Reply-To: <20080826161026.GI15755@intoxicatedmind.net> References: <20080826161026.GI15755@intoxicatedmind.net> Message-ID: <20080826161232.GJ15755@intoxicatedmind.net> Hi. Frank Blendinger enlightened the world by writing these words of wisdom: > I just tried out using text fields with the noinsertmode setting and > found some bugs. [...] Sorry, I forgot to mention that I was using the latest CVS version and did all my tests on this very simple paste service site: http://pbot.rmdir.de/ Hope that helps reproducing it. Greetings, Frank -- Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A "Just because I don't care doesn't mean I don't understand." (Homer Simpson) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From nickp at developernotes.com Tue Aug 26 11:30:15 2008 From: nickp at developernotes.com (Nick Parker) Date: Tue, 26 Aug 2008 13:30:15 -0500 Subject: [Vimperator] Vimperator 1.2 and Pass Through Mode Issues In Gmail In-Reply-To: <8c0cf4110808260742i2367bcf9y749cf1d3820d85f6@mail.gmail.com> References: <8c0cf4110808260742i2367bcf9y749cf1d3820d85f6@mail.gmail.com> Message-ID: Jean-Paul, I have run into the same issue, and have also noticed a touchiness with Vimperator and google reader as well. The solution that I have come up with is to use the support for multiple profiles with Firefox and create a profile called "NoVimperator". When I run Firefox with the "NoVimperator" profile I am able to fully use gmail without having that issue. I use Slickrun to launch into google apps for my domain and I am able to simple configure SlickRun to pass the appropiate parameters which included loading Firefox using a separate profile. Without specifying Firefox to load a different profile it will continue to load your default profile which contains Vimperator so you should be able to continue using Vimperator for all of your other web navigation. To create a new profile within Windows: 1. Choose Start -> Run 2. Execute "firefox.exe -ProfileManager" without the quotes 3. In the dialog choose "Create Profile.." and follow the steps 4. Load Firefox with your new profile: 1. firefox.exe -no-remote -P "NoVimperator" gmail.com 5. I configure step 4 with SlickRun so I don't have to worry about typing it all every time. HTH Nick Parker www.developernotes.com On Tue, Aug 26, 2008 at 9:42 AM, Jean-Paul Boodhoo wrote: > Hey Everyone, > > I have been using vimperator for a while, and I am noticing some > differences in the way that vimperator handles pass through mode with gmail. > > In the past I would go to gmail and enter pass through mode so I could > navigate through my inbox, compose mail etc using the gmail shortcuts. One > of the problems I am having with 1.2 is that I often have to enter pass > through mode and then "click" on the active firefox window before the pass > through starts occuring. You can repeat this process as follows: > > 1) Navigate to gmail.com and login. > 2) Enter passthrough mode > 3) Navigate to an email you want to reply to and hit o to open it. > 4) Type r to create the reply to message, fill in the necessary fields and > hit the tab button to put focus on the Send button. > 5) Hit the enter key to submit the mail. > 6) Once gmail notifies you that the "message has been sent" try to hit u to > go back up to the inbox (or gi). It will not work until you click on the > gmail window. > > This is just one of the many ways that pass through seems to be functioning > different with gmail in 1.2 > > Has anyone run into this issue, or figured a way to get around it without > having to reach for the mouse? > > Thanks. > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mac at calmar.ws Tue Aug 26 14:58:49 2008 From: mac at calmar.ws (calmar) Date: Tue, 26 Aug 2008 23:58:49 +0200 Subject: [Vimperator] Backporting hint visibility check to char-hints In-Reply-To: <20080826114033.GB3941@tuxli> References: <20080826114033.GB3941@tuxli> Message-ID: <20080826215849.GC4205@tuxli> On Tue, Aug 26, 2008 at 01:40:33PM +0200, calmar wrote: > On Tue, Aug 26, 2008 at 12:21:34PM +0200, Daniel Schaffrath wrote: > > Hello everybody, > > > > It seems recently proposed check to not generate hints for invisible > > links did not make it to the character hints. The attached patch should > > fix that. > > > > Thank you, > > Daniel > > I added that, thanks Daniel. > > char-hints.js was anyway just a quick hack, because if felt > responsible for those who did not like char-hints. I felt responsible for those who didn't like the new hints-system with numbers. I meant... -- (o_ It rocks: LINUX + Command-Line-Interface //\ GPG: 0x59D90F4D V_/_ http://www.calmar.ws -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: not available URL: From dougkearns at gmail.com Tue Aug 26 16:23:17 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Wed, 27 Aug 2008 09:23:17 +1000 Subject: [Vimperator] Backporting hint visibility check to char-hints In-Reply-To: <20080826215849.GC4205@tuxli> References: <20080826114033.GB3941@tuxli> <20080826215849.GC4205@tuxli> Message-ID: <644fc65e0808261623m7dbb48f1w261d896548f2675d@mail.gmail.com> Marco, On Wed, Aug 27, 2008 at 7:58 AM, calmar wrote: > I felt responsible for those who didn't like the new hints-system > with numbers. > > I meant... You are too kind. ;-) Doug From dougkearns at gmail.com Tue Aug 26 18:37:54 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Wed, 27 Aug 2008 11:37:54 +1000 Subject: [Vimperator] The conflict between Vimperator and Firegesure In-Reply-To: <56096cc30806130333p4e47d91evd5bee1b3859bec5@mail.gmail.com> References: <56096cc30806130333p4e47d91evd5bee1b3859bec5@mail.gmail.com> Message-ID: <644fc65e0808261837r33b6166bx322c7a08eb5cc2c4@mail.gmail.com> On Fri, Jun 13, 2008 at 8:33 PM, Alan CHENG wrote: > Hi all, > > I found if I turned on 'Rocker Gesture' in Firegesture, I would not be able > to follow the hinted link. For example, with 'Rocker Gesture' feature turned > on in Firegesture preferences, if I press f and the number of the target > link, I would only be able to highlight it but could not follow the link to > the target site. Could anyone reproduce this problem? I am not sure whether > I should report this to Firegesture team or Vimperator team. This has been fixed now. Regards, Doug From dotancohen at gmail.com Wed Aug 27 01:37:36 2008 From: dotancohen at gmail.com (Dotan Cohen) Date: Wed, 27 Aug 2008 11:37:36 +0300 Subject: [Vimperator] [Fwd: Mozilla Add-ons: Vimperator 1.1] In-Reply-To: <488E3F7C.70402@gmx.net> References: <488E3F7C.70402@gmx.net> Message-ID: <880dece00808270137o651d3931hece8636f6c61edc8@mail.gmail.com> 2008/7/29 Martin Stubenschrott : > Hi all, > > can somebody here confirm these things below and maybe give a hint, > when they do occur? > > I can't see them on Linux at least with the "normal" JavaScript Console. > > best regards, > > Martin > > Comments: Thanks for the update. Several errors were thrown to Console? though, please try to fix them for the next update if you can see them.
I use vimperator with Console2 and have no problems that I am aware of. -- Dotan Cohen http://what-is-what.com http://gibberish.co.il ?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-? ?-?-?-?-?-?-? From mike at erdelynet.com Wed Aug 27 09:40:45 2008 From: mike at erdelynet.com (Mike Erdely) Date: Wed, 27 Aug 2008 12:40:45 -0400 Subject: [Vimperator] window focus broken? In-Reply-To: <48B2E2BA.6090808@songbirdnest.com> References: <48B2E2BA.6090808@songbirdnest.com> Message-ID: <20080827164045.GJ19238@erdelynet.com> On Mon, Aug 25, 2008 at 09:50:02AM -0700, Stephen Lau wrote: > I was using Vimperator 1.1 quite happily and just installed 1.2 (and > subsequent nightlies). One behaviour I often do is open up a whole > bunch of background tabs from a site and then start reading and hitting > 'd' to remove the current tab. I notice in 1.2 (and nightlies) that > after removing the current tab, the next tab is made visible - but not > focused properly, so that I can't hit 'd' without first clicking on the > window to give the tab focus. > > Has anyone else seen this problem? I have. On OpenBSD using FF301. -ME From milezv at yandex.ru Wed Aug 27 11:47:02 2008 From: milezv at yandex.ru (Konstantin) Date: Wed, 27 Aug 2008 21:47:02 +0300 Subject: [Vimperator] vimperator css plugin In-Reply-To: <6225D0A1-E187-424E-B43D-BC7DAAD973AB@GMAIL.COM> References: <6225D0A1-E187-424E-B43D-BC7DAAD973AB@GMAIL.COM> Message-ID: <48B5A126.9050902@yandex.ru> Actually cssrules.js plugin currently in CVS is quite old, a lot of things have changes since I posted initial version. Current version on my machine have a pair of TODO's, but I don't have time to finish them, yet don't want to post it unfinished. May be I will have some free time soon and will polish it a little and submit it to CVS. A lot of bugs are already fixed, so there's a strong chance your issue is already fixed. johnny wrote: > Hey your plugin rocks! I love it, just had a question: > > Sometimes when i type :cssrules on a page, nothing happens, but > :cssheets shows the proper sheets attached to the page. > :cssrules seems to work about 50% of the time...am I missing something? > Do you know if this plugin would have any problems with the firebug > plugin installed? Thanks again for an amazing piece of js! -j > -- Konstantin Stepanov Web Developer From jpboodhoo at gmail.com Wed Aug 27 13:36:26 2008 From: jpboodhoo at gmail.com (Jean-Paul Boodhoo) Date: Wed, 27 Aug 2008 21:36:26 +0100 Subject: [Vimperator] Vimperator Digest, Vol 17, Issue 30 In-Reply-To: References: Message-ID: <8c0cf4110808271336t7412627fv58046f5b8965ba6b@mail.gmail.com> re : The focus issue. I am having the same problem with both Mac OSX and Windows running Vimperator 1.2 and Firefox 3. GMail is almost unusable now, as when I read a mail, and then reply, I have to to click the window before pass through will work again. It is definitely some sort of focus issue. Any resolutions? On Wed, Aug 27, 2008 at 8:00 PM, wrote: > Send Vimperator mailing list submissions to > vimperator at mozdev.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://www.mozdev.org/mailman/listinfo/vimperator > or, via email, send a message with subject or body 'help' to > vimperator-request at mozdev.org > > You can reach the person managing the list at > vimperator-owner at mozdev.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Vimperator digest..." > > > Today's Topics: > > 1. Re: Backporting hint visibility check to char-hints (calmar) > 2. Re: Backporting hint visibility check to char-hints (Doug Kearns) > 3. Re: The conflict between Vimperator and Firegesure (Doug Kearns) > 4. Re: [Fwd: Mozilla Add-ons: Vimperator 1.1] (Dotan Cohen) > 5. Re: window focus broken? (Mike Erdely) > 6. Re: vimperator css plugin (Konstantin) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 26 Aug 2008 23:58:49 +0200 > From: calmar > Subject: Re: [Vimperator] Backporting hint visibility check to > char-hints > To: vimperator at mozdev.org > Message-ID: <20080826215849.GC4205 at tuxli> > Content-Type: text/plain; charset="us-ascii" > > On Tue, Aug 26, 2008 at 01:40:33PM +0200, calmar wrote: > > On Tue, Aug 26, 2008 at 12:21:34PM +0200, Daniel Schaffrath wrote: > > > Hello everybody, > > > > > > It seems recently proposed check to not generate hints for invisible > > > links did not make it to the character hints. The attached patch should > > > fix that. > > > > > > Thank you, > > > Daniel > > > > I added that, thanks Daniel. > > > > char-hints.js was anyway just a quick hack, because if felt > > responsible for those who did not like char-hints. > > I felt responsible for those who didn't like the new hints-system > with numbers. > > I meant... > > > > > -- > (o_ It rocks: LINUX + Command-Line-Interface > //\ GPG: 0x59D90F4D > V_/_ http://www.calmar.ws > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: not available > Type: application/pgp-signature > Size: 197 bytes > Desc: not available > URL: < > http://www.mozdev.org/pipermail/vimperator/attachments/20080826/a6bfdbec/attachment-0001.bin > > > > ------------------------------ > > Message: 2 > Date: Wed, 27 Aug 2008 09:23:17 +1000 > From: "Doug Kearns" > Subject: Re: [Vimperator] Backporting hint visibility check to > char-hints > To: vimperator at mozdev.org, calmar > Message-ID: > <644fc65e0808261623m7dbb48f1w261d896548f2675d at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > Marco, > > On Wed, Aug 27, 2008 at 7:58 AM, calmar wrote: > > > > I felt responsible for those who didn't like the new hints-system > > with numbers. > > > > I meant... > > You are too kind. ;-) > > Doug > > > ------------------------------ > > Message: 3 > Date: Wed, 27 Aug 2008 11:37:54 +1000 > From: "Doug Kearns" > Subject: Re: [Vimperator] The conflict between Vimperator and > Firegesure > To: vimperator at mozdev.org > Message-ID: > <644fc65e0808261837r33b6166bx322c7a08eb5cc2c4 at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On Fri, Jun 13, 2008 at 8:33 PM, Alan CHENG wrote: > > Hi all, > > > > I found if I turned on 'Rocker Gesture' in Firegesture, I would not be > able > > to follow the hinted link. For example, with 'Rocker Gesture' feature > turned > > on in Firegesture preferences, if I press f and the number of the target > > link, I would only be able to highlight it but could not follow the link > to > > the target site. Could anyone reproduce this problem? I am not sure > whether > > I should report this to Firegesture team or Vimperator team. > > This has been fixed now. > > Regards, > Doug > > > ------------------------------ > > Message: 4 > Date: Wed, 27 Aug 2008 11:37:36 +0300 > From: "Dotan Cohen" > Subject: Re: [Vimperator] [Fwd: Mozilla Add-ons: Vimperator 1.1] > To: vimperator at mozdev.org > Message-ID: > <880dece00808270137o651d3931hece8636f6c61edc8 at mail.gmail.com> > Content-Type: text/plain; charset=UTF-8 > > 2008/7/29 Martin Stubenschrott : > > Hi all, > > > > can somebody here confirm these things below and maybe give a hint, > > when they do occur? > > > > I can't see them on Linux at least with the "normal" JavaScript Console. > > > > best regards, > > > > Martin > > > > Comments: Thanks for the update. Several errors were thrown to Console? > though, please try to fix them for the next update if you can see them.
/> > > I use vimperator with Console2 and have no problems that I am aware of. > > -- > Dotan Cohen > > http://what-is-what.com > http://gibberish.co.il > ?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-? > > ?-?-?-?-?-?-? > > ------------------------------ > > Message: 5 > Date: Wed, 27 Aug 2008 12:40:45 -0400 > From: Mike Erdely > Subject: Re: [Vimperator] window focus broken? > To: vimperator at mozdev.org > Message-ID: <20080827164045.GJ19238 at erdelynet.com> > Content-Type: text/plain; charset=us-ascii > > On Mon, Aug 25, 2008 at 09:50:02AM -0700, Stephen Lau wrote: > > I was using Vimperator 1.1 quite happily and just installed 1.2 (and > > subsequent nightlies). One behaviour I often do is open up a whole > > bunch of background tabs from a site and then start reading and hitting > > 'd' to remove the current tab. I notice in 1.2 (and nightlies) that > > after removing the current tab, the next tab is made visible - but not > > focused properly, so that I can't hit 'd' without first clicking on the > > window to give the tab focus. > > > > Has anyone else seen this problem? > > I have. On OpenBSD using FF301. > > -ME > > > ------------------------------ > > Message: 6 > Date: Wed, 27 Aug 2008 21:47:02 +0300 > From: Konstantin > Subject: Re: [Vimperator] vimperator css plugin > To: johnny > Cc: vimperator at mozdev.org > Message-ID: <48B5A126.9050902 at yandex.ru> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Actually cssrules.js plugin currently in CVS is quite old, > a lot of things have changes since I posted initial version. > > Current version on my machine have a pair of TODO's, but I don't > have time to finish them, yet don't want to post it unfinished. > > May be I will have some free time soon and will polish it a little > and submit it to CVS. A lot of bugs are already fixed, so there's > a strong chance your issue is already fixed. > > johnny wrote: > > Hey your plugin rocks! I love it, just had a question: > > > > Sometimes when i type :cssrules on a page, nothing happens, but > > :cssheets shows the proper sheets attached to the page. > > :cssrules seems to work about 50% of the time...am I missing something? > > Do you know if this plugin would have any problems with the firebug > > plugin installed? Thanks again for an amazing piece of js! -j > > > > -- > Konstantin Stepanov > Web Developer > > > ------------------------------ > > _______________________________________________ > Vimperator mailing list > Vimperator at mozdev.org > https://www.mozdev.org/mailman/listinfo/vimperator > > > End of Vimperator Digest, Vol 17, Issue 30 > ****************************************** > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jpboodhoo at gmail.com Wed Aug 27 13:48:38 2008 From: jpboodhoo at gmail.com (Jean-Paul Boodhoo) Date: Wed, 27 Aug 2008 21:48:38 +0100 Subject: [Vimperator] Focus Issue and Pass Through Mode Message-ID: <8c0cf4110808271348q4becdad0t26bd4ee13adb2c26@mail.gmail.com> I am posting this again, as I did not pay attention to changing the subject before responding to a digest!! I am also having a big focus issue with Vimperator 1.2 and Firefox 3. Pass through mode (especially in GMail) is where I have noticed the biggest issues. Follow these steps to duplicate the problem everytime (there are other ways to do it, this is the most consistent): 1) Navigate to gmail and login 2) Enter pass-through mode 3) Navigate to an email you would like to respond to and then hit o to open it. 4) When reading the opened email, press r to compose a reply. Complete the message and tab to the send button, and hit enter to send the email. 5) When the screen refreshes try and type u to go back to the inbox (might not work) 6) If step 5 worked and you are now back in the inbox, even though passthrough mode is still enabled it will not work until you click back in the window. Once you click back in the window passthrough mode will work again. This is just one of the many scenarios where passthrough and focus issues cause me to have to keep reaching for the mouse. Does anyone have any resolutions to this issue? On Wed, Aug 27, 2008 at 9:36 PM, Jean-Paul Boodhoo wrote: > re : The focus issue. > > I am having the same problem with both Mac OSX and Windows running > Vimperator 1.2 and Firefox 3. > > GMail is almost unusable now, as when I read a mail, and then reply, I have > to to click the window before pass through will work again. > > It is definitely some sort of focus issue. > > Any resolutions? > > > > On Wed, Aug 27, 2008 at 8:00 PM, wrote: > >> Send Vimperator mailing list submissions to >> vimperator at mozdev.org >> >> To subscribe or unsubscribe via the World Wide Web, visit >> https://www.mozdev.org/mailman/listinfo/vimperator >> or, via email, send a message with subject or body 'help' to >> vimperator-request at mozdev.org >> >> You can reach the person managing the list at >> vimperator-owner at mozdev.org >> >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of Vimperator digest..." >> >> >> Today's Topics: >> >> 1. Re: Backporting hint visibility check to char-hints (calmar) >> 2. Re: Backporting hint visibility check to char-hints (Doug Kearns) >> 3. Re: The conflict between Vimperator and Firegesure (Doug Kearns) >> 4. Re: [Fwd: Mozilla Add-ons: Vimperator 1.1] (Dotan Cohen) >> 5. Re: window focus broken? (Mike Erdely) >> 6. Re: vimperator css plugin (Konstantin) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Tue, 26 Aug 2008 23:58:49 +0200 >> From: calmar >> Subject: Re: [Vimperator] Backporting hint visibility check to >> char-hints >> To: vimperator at mozdev.org >> Message-ID: <20080826215849.GC4205 at tuxli> >> Content-Type: text/plain; charset="us-ascii" >> >> On Tue, Aug 26, 2008 at 01:40:33PM +0200, calmar wrote: >> > On Tue, Aug 26, 2008 at 12:21:34PM +0200, Daniel Schaffrath wrote: >> > > Hello everybody, >> > > >> > > It seems recently proposed check to not generate hints for invisible >> > > links did not make it to the character hints. The attached patch >> should >> > > fix that. >> > > >> > > Thank you, >> > > Daniel >> > >> > I added that, thanks Daniel. >> > >> > char-hints.js was anyway just a quick hack, because if felt >> > responsible for those who did not like char-hints. >> >> I felt responsible for those who didn't like the new hints-system >> with numbers. >> >> I meant... >> >> >> >> >> -- >> (o_ It rocks: LINUX + Command-Line-Interface >> //\ GPG: 0x59D90F4D >> V_/_ http://www.calmar.ws >> -------------- next part -------------- >> A non-text attachment was scrubbed... >> Name: not available >> Type: application/pgp-signature >> Size: 197 bytes >> Desc: not available >> URL: < >> http://www.mozdev.org/pipermail/vimperator/attachments/20080826/a6bfdbec/attachment-0001.bin >> > >> >> ------------------------------ >> >> Message: 2 >> Date: Wed, 27 Aug 2008 09:23:17 +1000 >> From: "Doug Kearns" >> Subject: Re: [Vimperator] Backporting hint visibility check to >> char-hints >> To: vimperator at mozdev.org, calmar >> Message-ID: >> <644fc65e0808261623m7dbb48f1w261d896548f2675d at mail.gmail.com> >> Content-Type: text/plain; charset=ISO-8859-1 >> >> Marco, >> >> On Wed, Aug 27, 2008 at 7:58 AM, calmar wrote: >> >> >> > I felt responsible for those who didn't like the new hints-system >> > with numbers. >> > >> > I meant... >> >> You are too kind. ;-) >> >> Doug >> >> >> ------------------------------ >> >> Message: 3 >> Date: Wed, 27 Aug 2008 11:37:54 +1000 >> From: "Doug Kearns" >> Subject: Re: [Vimperator] The conflict between Vimperator and >> Firegesure >> To: vimperator at mozdev.org >> Message-ID: >> <644fc65e0808261837r33b6166bx322c7a08eb5cc2c4 at mail.gmail.com> >> Content-Type: text/plain; charset=ISO-8859-1 >> >> On Fri, Jun 13, 2008 at 8:33 PM, Alan CHENG wrote: >> > Hi all, >> > >> > I found if I turned on 'Rocker Gesture' in Firegesture, I would not be >> able >> > to follow the hinted link. For example, with 'Rocker Gesture' feature >> turned >> > on in Firegesture preferences, if I press f and the number of the target >> > link, I would only be able to highlight it but could not follow the link >> to >> > the target site. Could anyone reproduce this problem? I am not sure >> whether >> > I should report this to Firegesture team or Vimperator team. >> >> This has been fixed now. >> >> Regards, >> Doug >> >> >> ------------------------------ >> >> Message: 4 >> Date: Wed, 27 Aug 2008 11:37:36 +0300 >> From: "Dotan Cohen" >> Subject: Re: [Vimperator] [Fwd: Mozilla Add-ons: Vimperator 1.1] >> To: vimperator at mozdev.org >> Message-ID: >> <880dece00808270137o651d3931hece8636f6c61edc8 at mail.gmail.com> >> Content-Type: text/plain; charset=UTF-8 >> >> 2008/7/29 Martin Stubenschrott : >> > Hi all, >> > >> > can somebody here confirm these things below and maybe give a hint, >> > when they do occur? >> > >> > I can't see them on Linux at least with the "normal" JavaScript Console. >> > >> > best regards, >> > >> > Martin >> > >> > Comments: Thanks for the update. Several errors were thrown to Console? >> though, please try to fix them for the next update if you can see them.
> /> >> >> I use vimperator with Console2 and have no problems that I am aware of. >> >> -- >> Dotan Cohen >> >> http://what-is-what.com >> http://gibberish.co.il >> ?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-?-? >> >> ?-?-?-?-?-?-? >> >> ------------------------------ >> >> Message: 5 >> Date: Wed, 27 Aug 2008 12:40:45 -0400 >> From: Mike Erdely >> Subject: Re: [Vimperator] window focus broken? >> To: vimperator at mozdev.org >> Message-ID: <20080827164045.GJ19238 at erdelynet.com> >> Content-Type: text/plain; charset=us-ascii >> >> On Mon, Aug 25, 2008 at 09:50:02AM -0700, Stephen Lau wrote: >> > I was using Vimperator 1.1 quite happily and just installed 1.2 (and >> > subsequent nightlies). One behaviour I often do is open up a whole >> > bunch of background tabs from a site and then start reading and hitting >> > 'd' to remove the current tab. I notice in 1.2 (and nightlies) that >> > after removing the current tab, the next tab is made visible - but not >> > focused properly, so that I can't hit 'd' without first clicking on the >> > window to give the tab focus. >> > >> > Has anyone else seen this problem? >> >> I have. On OpenBSD using FF301. >> >> -ME >> >> >> ------------------------------ >> >> Message: 6 >> Date: Wed, 27 Aug 2008 21:47:02 +0300 >> From: Konstantin >> Subject: Re: [Vimperator] vimperator css plugin >> To: johnny >> Cc: vimperator at mozdev.org >> Message-ID: <48B5A126.9050902 at yandex.ru> >> Content-Type: text/plain; charset=ISO-8859-1; format=flowed >> >> Actually cssrules.js plugin currently in CVS is quite old, >> a lot of things have changes since I posted initial version. >> >> Current version on my machine have a pair of TODO's, but I don't >> have time to finish them, yet don't want to post it unfinished. >> >> May be I will have some free time soon and will polish it a little >> and submit it to CVS. A lot of bugs are already fixed, so there's >> a strong chance your issue is already fixed. >> >> johnny wrote: >> > Hey your plugin rocks! I love it, just had a question: >> > >> > Sometimes when i type :cssrules on a page, nothing happens, but >> > :cssheets shows the proper sheets attached to the page. >> > :cssrules seems to work about 50% of the time...am I missing something? >> > Do you know if this plugin would have any problems with the firebug >> > plugin installed? Thanks again for an amazing piece of js! -j >> > >> >> -- >> Konstantin Stepanov >> Web Developer >> >> >> ------------------------------ >> >> _______________________________________________ >> Vimperator mailing list >> Vimperator at mozdev.org >> https://www.mozdev.org/mailman/listinfo/vimperator >> >> >> End of Vimperator Digest, Vol 17, Issue 30 >> ****************************************** >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dougkearns at gmail.com Wed Aug 27 15:01:36 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Thu, 28 Aug 2008 08:01:36 +1000 Subject: [Vimperator] Focus Issue and Pass Through Mode In-Reply-To: <8c0cf4110808271348q4becdad0t26bd4ee13adb2c26@mail.gmail.com> References: <8c0cf4110808271348q4becdad0t26bd4ee13adb2c26@mail.gmail.com> Message-ID: <644fc65e0808271501u4159a24bof5d9708601876436@mail.gmail.com> On Thu, Aug 28, 2008 at 6:48 AM, Jean-Paul Boodhoo wrote: > I am posting this again, as I did not pay attention to changing the subject > before responding to a digest!! > > I am also having a big focus issue with Vimperator 1.2 and Firefox 3. Pass > through mode (especially in GMail) is where I have noticed the biggest > issues. Follow these steps to duplicate the problem everytime (there are > other ways to do it, this is the most consistent): > > 1) Navigate to gmail and login > 2) Enter pass-through mode > 3) Navigate to an email you would like to respond to and then hit o to open > it. > 4) When reading the opened email, press r to compose a reply. Complete the > message and tab to the send button, and hit enter to send the email. > 5) When the screen refreshes try and type u to go back to the inbox (might > not work) > 6) If step 5 worked and you are now back in the inbox, even though > passthrough mode is still enabled it will not work until you click back in > the window. Once you click back in the window passthrough mode will work > again. > > This is just one of the many scenarios where passthrough and focus issues > cause me to have to keep reaching for the mouse. > > Does anyone have any resolutions to this issue? No. I expect it's going to be a PITA to track down. Could you add it as a bug to the tracker? FWIW, I consistently fail at step 5. Rather than clicking with the mouse you can instead. That's not much of a 'solution' but spares you contact with the rodent... Regards, Doug From dpb at driftaway.org Thu Aug 28 00:38:12 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Thu, 28 Aug 2008 10:38:12 +0300 Subject: [Vimperator] window focus broken? In-Reply-To: <48B2F7E8.2090502@grommit.com> References: <48B2E2BA.6090808@songbirdnest.com> <48B2F39E.6080609@gmx.net> <48B2F7E8.2090502@grommit.com> Message-ID: 2008/8/25 Stephen Lau : > Martin Stubenschrott wrote: >> >> Stephen Lau wrote: >> >> >>> >>> I was using Vimperator 1.1 quite happily and just installed 1.2 (and >>> subsequent nightlies). One behaviour I often do is open up a whole >>> bunch of background tabs from a site and then start reading and hitting >>> 'd' to remove the current tab. I notice in 1.2 (and nightlies) that >>> after removing the current tab, the next tab is made visible - but not >>> focused properly, so that I can't hit 'd' without first clicking on the >>> window to give the tab focus. >>> >>> Has anyone else seen this problem? >>> >> >> Works here, on Linux. >> >> Which OS are you using? >> >> I noticed a similar problem in muttator, however, maybe when i fix that, >> yours will be fixed too. >> >> > > This is on Mac OS X 10.5.4 (and FF3.0.1). I probably should have mentioned > that the focus problem isn't limited to just 'd', none of the controls (j,k, > etc. for scrolling) work. Thanks Martin! Hey, Could you try with :set focuscontent Does that make any difference? -- Daniel From mahefa.randimbisoa at gmail.com Thu Aug 28 03:01:41 2008 From: mahefa.randimbisoa at gmail.com (mahefa randimbisoa) Date: Thu, 28 Aug 2008 13:01:41 +0300 Subject: [Vimperator] Focus Issue and Pass Through Mode In-Reply-To: <8c0cf4110808271348q4becdad0t26bd4ee13adb2c26@mail.gmail.com> References: <8c0cf4110808271348q4becdad0t26bd4ee13adb2c26@mail.gmail.com> Message-ID: <2ba1fac40808280301r4607bb40u3097ae8c2830bd46@mail.gmail.com> On Wed, Aug 27, 2008 at 11:48 PM, Jean-Paul Boodhoo wrote: > I am posting this again, as I did not pay attention to changing the subject > before responding to a digest!! > > I am also having a big focus issue with Vimperator 1.2 and Firefox 3. Pass > through mode (especially in GMail) is where I have noticed the biggest > issues. Follow these steps to duplicate the problem everytime (there are > other ways to do it, this is the most consistent): > > 1) Navigate to gmail and login > 2) Enter pass-through mode > 3) Navigate to an email you would like to respond to and then hit o to open > it. > 4) When reading the opened email, press r to compose a reply. Complete the > message and tab to the send button, and hit enter to send the email. > 5) When the screen refreshes try and type u to go back to the inbox (might > not work) > 6) If step 5 worked and you are now back in the inbox, even though > passthrough mode is still enabled it will not work until you click back in > the window. Once you click back in the window passthrough mode will work > again. > > This is just one of the many scenarios where passthrough and focus issues > cause me to have to keep reaching for the mouse. > > Does anyone have any resolutions to this issue? > Yes, Vimperator seems to have issues with focus on pages with frames, like Gmail. For Gmail, you can try the plugin called gvimail, I'm using it with default keybindings of gmail activated. some gmail shortcuts work without problem (I use Shift+J and shift+K for Older or Newer message) Some shortcuts needs that you press Ctrl+V before to escape them. http://gvimail.googlecode.com/ From steve at grommit.com Thu Aug 28 08:35:58 2008 From: steve at grommit.com (Stephen Lau) Date: Thu, 28 Aug 2008 08:35:58 -0700 Subject: [Vimperator] window focus broken? In-Reply-To: References: <48B2E2BA.6090808@songbirdnest.com> <48B2F39E.6080609@gmx.net> <48B2F7E8.2090502@grommit.com> Message-ID: <48B6C5DE.1030201@grommit.com> Daniel Bainton wrote: > 2008/8/25 Stephen Lau: > >> Martin Stubenschrott wrote: >> >>> Stephen Lau wrote: >>> >>> >>> >>>> I was using Vimperator 1.1 quite happily and just installed 1.2 (and >>>> subsequent nightlies). One behaviour I often do is open up a whole >>>> bunch of background tabs from a site and then start reading and hitting >>>> 'd' to remove the current tab. I notice in 1.2 (and nightlies) that >>>> after removing the current tab, the next tab is made visible - but not >>>> focused properly, so that I can't hit 'd' without first clicking on the >>>> window to give the tab focus. >>>> >>>> Has anyone else seen this problem? >>>> >>>> >>> Works here, on Linux. >>> >>> Which OS are you using? >>> >>> I noticed a similar problem in muttator, however, maybe when i fix that, >>> yours will be fixed too. >>> >>> >>> >> This is on Mac OS X 10.5.4 (and FF3.0.1). I probably should have mentioned >> that the focus problem isn't limited to just 'd', none of the controls (j,k, >> etc. for scrolling) work. Thanks Martin! >> > > Hey, > > Could you try with > > :set focuscontent > > Does that make any difference? > > yay! that seems to work! -- stephen lau | steve at grommit.com | www.whacked.net From jan.weytjens at nietsissimpel.org Thu Aug 28 09:07:00 2008 From: jan.weytjens at nietsissimpel.org (Jan Weytjens) Date: Thu, 28 Aug 2008 18:07:00 +0200 Subject: [Vimperator] Adobe PDF plug-in Message-ID: <48B6CD24.4070705@nietsissimpel.org> Is there a way to navigate back to the previous page without using the mouse when a PDF file is showing in the Adobe PDF plug-in? is not seen by vimperator but by the plug-in H does not work either then and the ex command :ba cannot be typed since the ex prompt shows only after first *clicking* in the command line area. Jan -------------- next part -------------- An HTML attachment was scrubbed... URL: From stubenschrott at gmx.net Thu Aug 28 09:17:04 2008 From: stubenschrott at gmx.net (Martin Stubenschrott) Date: Thu, 28 Aug 2008 18:17:04 +0200 Subject: [Vimperator] Adobe PDF plug-in In-Reply-To: <48B6CD24.4070705@nietsissimpel.org> References: <48B6CD24.4070705@nietsissimpel.org> Message-ID: <48B6CF80.40503@gmx.net> Jan Weytjens wrote: > Is there a way to navigate back to the previous page without using the > mouse when a PDF file is showing in the Adobe PDF plug-in? > is not seen by vimperator but by the plug-in > H does not work either then > and the ex command :ba cannot be typed since the ex prompt shows only > after first *clicking* in the command line area. no, plugins get the keys, is the same for flash unfortunatly :( That's why i would turn that off, that the pdf is loaded in the browser. -- Martin From jan.weytjens at nietsissimpel.org Thu Aug 28 09:25:20 2008 From: jan.weytjens at nietsissimpel.org (Jan Weytjens) Date: Thu, 28 Aug 2008 18:25:20 +0200 Subject: [Vimperator] command line history Message-ID: <48B6D170.8000500@nietsissimpel.org> I accidentally stumbled upon vimperator a few weeks ago. I had not heard of it. It caught my interest since I use vim all the time when editing code. Beautiful! Is there a way to clear the command line history (without manually editing pref.js)? Jan -------------- next part -------------- An HTML attachment was scrubbed... URL: From dpb at driftaway.org Thu Aug 28 09:45:23 2008 From: dpb at driftaway.org (Daniel Bainton) Date: Thu, 28 Aug 2008 19:45:23 +0300 Subject: [Vimperator] command line history In-Reply-To: <48B6D170.8000500@nietsissimpel.org> References: <48B6D170.8000500@nietsissimpel.org> Message-ID: 2008/8/28 Jan Weytjens : > I accidentally stumbled upon vimperator a few weeks ago. I had not heard of > it. > It caught my interest since I use vim all the time when editing code. > Beautiful! > > Is there a way to clear the command line history (without manually editing > pref.js)? Not yet, but it's a planned feature. Someone just needs to add the support. :) -- Daniel From dougkearns at gmail.com Thu Aug 28 15:28:16 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Fri, 29 Aug 2008 08:28:16 +1000 Subject: [Vimperator] command line history In-Reply-To: References: <48B6D170.8000500@nietsissimpel.org> Message-ID: <644fc65e0808281528o5e6eec06vff59f3e7e5a5bbef@mail.gmail.com> On Fri, Aug 29, 2008 at 2:45 AM, Daniel Bainton wrote: > 2008/8/28 Jan Weytjens : >> I accidentally stumbled upon vimperator a few weeks ago. I had not heard of >> it. >> It caught my interest since I use vim all the time when editing code. >> Beautiful! >> >> Is there a way to clear the command line history (without manually editing >> pref.js)? > > Not yet, but it's a planned feature. Someone just needs to add the support. :) I have a partly finished implementation of a :sanitize command lying around. I'll finish it off sometime next week. Doug From paulvanderbeek at tpg.com.au Fri Aug 29 06:15:09 2008 From: paulvanderbeek at tpg.com.au (Paul van der Beek) Date: Fri, 29 Aug 2008 23:15:09 +1000 Subject: [Vimperator] Pre-setting registers Message-ID: <48B7F65D.8090203@tpg.com.au> Hi all, is there any way to pre-set my registers? In vim I can do something like :let @a="jjj" in the .vimrc to have my register "a" automatically set with jjj. In vimperator this seems to have however no effect. It would be even better if vimperator could be set up in a way that the contents of the registers were preserved between sessions. Thanks for your hints! Paul From dougkearns at gmail.com Sat Aug 30 06:33:01 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Sat, 30 Aug 2008 23:33:01 +1000 Subject: [Vimperator] Pre-setting registers In-Reply-To: <48B7F65D.8090203@tpg.com.au> References: <48B7F65D.8090203@tpg.com.au> Message-ID: <644fc65e0808300633q39be299cua1bafbccb17457b1@mail.gmail.com> On Fri, Aug 29, 2008 at 11:15 PM, Paul van der Beek wrote: > Hi all, > > is there any way to pre-set my registers? No. Registers are not currently implemented. Well, they are implicitly for the macro commands but there's no way to access them generally yet. Regards, Doug From softeditor at softpedia.com Sun Aug 31 11:25:35 2008 From: softeditor at softpedia.com (Softpedia Editorial Team) Date: Sun, 31 Aug 2008 14:25:35 -0400 (EDT) Subject: [Vimperator] Vimperator included in the Softpedia software database Message-ID: <20080831182535.0CCD1BEE46A@ipdmjg0034atl2.pubip.peer1.net> Hello, As you may already know, Vimperator, one of your products, is part of Softpedia's database of software programs for the Windows operating system. It is featured with a description text, screenshots, download links and technical details on this page: http://www.softpedia.com/get/Tweak/Browser-Tweak/Vimperator.shtml The description text was created by our editors, using sources such as text from your product's homepage, information from its help system, the PAD file (if available) and the editor's own opinions on the program itself. "Vimperator" has been tested in the Softpedia labs using several industry-leading security solutions and found to be completely clean of adware/spyware components. We are impressed with the quality of your product and encourage you to keep these high standards in the future. To assure our visitors that Vimperator is clean, we have granted it with the "100% CLEAN" Softpedia award. To let your users know about this certification, you may display this award on your website, on software boxes or inside your product. More information about your product's certification and the award is available on this page: http://www.softpedia.com/progClean/Vimperator-Clean-83044.html Feel free to link to us using the URLs above. If you choose to link to the clean award page for your product, you may use the award graphic or a text link: "100% CLEAN award granted by Softpedia". We're also providing download mirrors for your product on our dedicated servers. If you want to link to our download page please do so by using the URL below: http://www.softpedia.com/progDownload/Vimperator-Download-83044.html We have some buttons (GIF format) if you want to provide an image-based link to that page instead of a text-based one. You can download a small ZIP archive (16KB) that contains various size formats of these buttons at the address below: http://www.softpedia.com/files/softpedia_download_buttons.zip If you feel that having your product listed on Softpedia is not a benefit for you or simply need something changed or updated, please contact us via email at webmaster at softpedia.com and we will work with you to fix any problem you may have found with the product's listing. -- Sincerely, The Softpedia Team ----------------------------------------------------------------------- Softpedia is a library of over 400,000 free and free-to-try software programs for Windows, Mac OS and Linux, games and gaming tools, Windows device drivers, mobile devices and IT-related articles. ----------------------------------------------------------------------- Softpedia - the encyclopedia of free software downloads http://www.softpedia.com/ From daniel.schaffrath at mac.com Sun Aug 31 16:07:22 2008 From: daniel.schaffrath at mac.com (Daniel Schaffrath) Date: Mon, 01 Sep 2008 01:07:22 +0200 Subject: [Vimperator] Some janitor patches Message-ID: <75153FFC-6447-4D0C-BC4A-AD22663CF388@mac.com> Dear Community, attached you find some janitor patches against the current cvs. Please consider reviewing and applying if applicable. Good night and thank you, Daniel btw: what is the general perception on inline vs. attached patches? -------------- next part -------------- A non-text attachment was scrubbed... Name: CheckForEofInHereDocument.patch Type: application/octet-stream Size: 469 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: AllowingWhitespaceBeforeHereDocumentDelimiterInVimperatorrc.patch Type: application/octet-stream Size: 683 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: AddBeepTogiWhenNoLastInput.patch Type: application/octet-stream Size: 663 bytes Desc: not available URL: From dougkearns at gmail.com Sun Aug 31 19:06:00 2008 From: dougkearns at gmail.com (Doug Kearns) Date: Mon, 1 Sep 2008 12:06:00 +1000 Subject: [Vimperator] Some janitor patches In-Reply-To: <75153FFC-6447-4D0C-BC4A-AD22663CF388@mac.com> References: <75153FFC-6447-4D0C-BC4A-AD22663CF388@mac.com> Message-ID: <644fc65e0808311906g1dabb152t9067aef21ce8cb06@mail.gmail.com> On Mon, Sep 1, 2008 at 9:07 AM, Daniel Schaffrath wrote: > Dear Community, > > attached you find some janitor patches against the current cvs. Please > consider reviewing and applying if applicable. CheckForEofInHereDocument - Vim's behaviour is to actually execute the heredoc in this situation. Hmm... AllowingWhitespaceBeforeHereDocumentDelimiterInVimperatorrc - applied, thanks. AddBeepTogiWhenNoLastInput - the current behaviour is actually correct. If there is no "last input field" then the first is focused (or beep if there's no input fields). Thanks, Doug