keyconfig 20110522

Announce and Discuss the Latest Theme and Extension Releases.
Post Reply
Bananasik
Posts: 12
Joined: November 7th, 2016, 3:10 am

Re: keyconfig 20110522

Post by Bananasik »

@morat
You are the best!
Really nice solution. It works even without encoding and atob decoding.
I bind all my bookmarklets with keyconfig on left part of the keyboard and now i like a progamer lol.

@pintassilgo
You too! Works great. Thank you.

One little note. When code runs first time on site, translation bar appears on top of a page, user must choose lang and press translate button, then settings stored in cookie, all later runs translate page for this domain automatically.
Is there any way to hardcode settings and get translated pages on every site instantly, without bar appearance?
Want throw out all translation plugins, their help macros and other "wheelchairs".
morat
Posts: 6394
Joined: February 3rd, 2009, 6:29 pm

Re: keyconfig 20110522

Post by morat »

New release for Thunderbird 58, 59 and likely 60.

trlkly's dorando keyconfig
http://addons.mozilla.org/thunderbird/addon/602486

Thanks to Elhem Enohpi for posting about the release in the builds thread.

Keyconfig, Filtaquilla, broken in TB 57?
http://forums.mozillazine.org/viewtopic ... &t=3036373
firefoxuse
Posts: 1086
Joined: November 8th, 2011, 12:06 pm

Re: keyconfig 20110522

Post by firefoxuse »

Can anyone tell me how to make RCTRL to close the current tab?

thanks!
firefoxuse
Posts: 1086
Joined: November 8th, 2011, 12:06 pm

Re: keyconfig 20110522

Post by firefoxuse »

hello!

can anyone tell me how to click CTRL+B to Paste and Go ?

thanks!
firefoxuse
Posts: 1086
Joined: November 8th, 2011, 12:06 pm

Re: keyconfig 20110522

Post by firefoxuse »

anyone???
User avatar
mightyglydd
Posts: 9813
Joined: November 4th, 2006, 7:07 pm
Location: Hollywood Ca.

Re: keyconfig 20110522

Post by mightyglydd »

#KeepFightingMichael and Alex.
nohamelin
Posts: 96
Joined: September 3rd, 2013, 4:04 pm
Location: Chile

Re: keyconfig 20110522

Post by nohamelin »

firefoxuse wrote:hello!
can anyone tell me how to click CTRL+B to Paste and Go ?
thanks!
The next code is for Paste&Go:

Code: Select all

gURLBar.select(); 
goDoCommand('cmd_paste'); 
gURLBar.handleCommand();
firefoxuse
Posts: 1086
Joined: November 8th, 2011, 12:06 pm

Re: keyconfig 20110522

Post by firefoxuse »

nohamelin wrote:
firefoxuse wrote:hello!
can anyone tell me how to click CTRL+B to Paste and Go ?
thanks!
The next code is for Paste&Go:

Code: Select all

gURLBar.select(); 
goDoCommand('cmd_paste'); 
gURLBar.handleCommand();
thanks!
rekam812
Posts: 3
Joined: February 14th, 2018, 11:33 am

Re: keyconfig 20110522

Post by rekam812 »

Hi, I'm new to this extension and I'm searching a way to quickly move Thunderbird messages in a specific folder.

Just like you have "A" to move your message to the right archive folder, would it be possible to have for example "B" which moves the selected messages to "Account X > Folder A > Sub folder B" ?

Thanks for your help
morat
Posts: 6394
Joined: February 3rd, 2009, 6:29 pm

Re: keyconfig 20110522

Post by morat »

@rekam812

Try these:

Code: Select all

// show selected folder URI
alert(GetFirstSelectedMsgFolder().URI);

Code: Select all

// move selected messages to another folder
var targetUri = "mailbox://nobody@Local%20Folders/Trash";
var targetFolder = MailUtils.getFolderForURI(targetUri);
MsgMoveMessage(targetFolder);
The example URI is valid in the English version.
rekam812
Posts: 3
Joined: February 14th, 2018, 11:33 am

Re: keyconfig 20110522

Post by rekam812 »

@morat

That's working wonderfully! Thank you :-) !
rekam812
Posts: 3
Joined: February 14th, 2018, 11:33 am

Re: keyconfig 20110522

Post by rekam812 »

Hi again, is there a way to do a "redo" function, based on the last action?

The idea is that when a message is moved (in trash, archive, or any folder), the next selected messages can be moved at the very same place in one quick shortcut. Is it possible?

Thanks a lot

[EDIT] whoops, it seems Ctrl + Maj + M does already the trick. Didn't saw that in the preconfigured keys. All is ok!
morat
Posts: 6394
Joined: February 3rd, 2009, 6:29 pm

Re: keyconfig 20110522

Post by morat »

@rekam812

Here is how to get a list of Thunderbird commands.

e.g. cmd_redo

Code: Select all

goDoCommand("cmd_redo");
More info
http://forums.mozillazine.org/viewtopic ... &t=2750453
firefoxuse
Posts: 1086
Joined: November 8th, 2011, 12:06 pm

Re: keyconfig 20110522

Post by firefoxuse »

hello!

is there a single key button way to close current tab?

what do you suggest that won't interfere with anything else?

thanks!
firefoxuse
Posts: 1086
Joined: November 8th, 2011, 12:06 pm

Re: keyconfig 20110522

Post by firefoxuse »

hello!
can you tell me please how to:
1) F1 = open new tab
2) F2 = close tab
3) RAlt = close tab

thanks!
Post Reply