Re: [MlMt] keybinding for next mailbox + focus in message window ?

2015-01-20 Thread Benny Kjær Nielsen

On 20 Jan 2015, at 10:02, Max Rydahl Andersen wrote:


On 20 Jan 2015, at 9:32, Benny Kjær Nielsen wrote:

There are only a few key bindings which take an argument. You should 
do like this instead:


	N = (selectNextMailbox:, makeFirstResponder:, 
mainOutline);
	P = (selectPreviousMailbox:, makeFirstResponder:, 
mainOutline);


I haven't tried it though.


I tried that first actually - no effect afaics.


Confirmed. I think I know why and there is no way working around it 
(other than me improving some things).


--
Benny
___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate


Re: [MlMt] keybinding for next mailbox + focus in message window ?

2015-01-20 Thread Benny Kjær Nielsen

On 19 Jan 2015, at 23:36, Max Andersen wrote:


On 19 Jan 2015, at 23:01, Max Andersen wrote:

can a keybinding do mulitple things ? like select next mailbox and 
then do

the focus window ?


Yes.


I tried this:

	N = (selectNextMailbox:,  , makeFirstResponder:, 
mainOutline);
 P = (selectPreviousMailbox:, , makeFirstResponder:, 
mainOutline);


but that does not seem to have any effect - just do the selectnext and 
prev. no change of focus ;/


There are only a few key bindings which take an argument. You should do 
like this instead:


N = (selectNextMailbox:, makeFirstResponder:, mainOutline);
P = (selectPreviousMailbox:, makeFirstResponder:, mainOutline);

I haven't tried it though.

--
Benny
___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate


Re: [MlMt] keybinding for next mailbox + focus in message window ?

2015-01-20 Thread Max Rydahl Andersen

On 20 Jan 2015, at 10:11, Benny Kjær Nielsen wrote:


On 20 Jan 2015, at 10:02, Max Rydahl Andersen wrote:


On 20 Jan 2015, at 9:32, Benny Kjær Nielsen wrote:

There are only a few key bindings which take an argument. You should 
do like this instead:


	N = (selectNextMailbox:, makeFirstResponder:, 
mainOutline);
	P = (selectPreviousMailbox:, makeFirstResponder:, 
mainOutline);


I haven't tried it though.


I tried that first actually - no effect afaics.


Confirmed. I think I know why and there is no way working around it 
(other than me improving some things).


I'll be waiting patiently with Alt+click on the update button ;)

/max



--
Benny
___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate



/max
http://about.me/maxandersen
___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate


Re: [MlMt] keybinding for next mailbox + focus in message window ?

2015-01-19 Thread Max Andersen

On 19 Jan 2015, at 23:01, Max Andersen wrote:

can a keybinding do mulitple things ? like select next mailbox and 
then do

the focus window ?


I tried this:

	N = (selectNextMailbox:,  , makeFirstResponder:, 
mainOutline);
P = (selectPreviousMailbox:, , makeFirstResponder:, 
mainOutline);	



but that does not seem to have any effect - just do the selectnext and 
prev. no change of focus ;/


/max

On Mon, Jan 19, 2015 at 9:54 PM, Kai Großjohann 
kai.grossjoh...@gmail.com

wrote:

Benny says he wants to fix something. Until then, may I propose 
another

keybinding to focus the message list?

Q = (makeFirstResponder:, mailboxesOutline);
W = (makeFirstResponder:, mainOutline);
E = (makeFirstResponder:, messageView);

With this,

- Q focuses the list of mailboxes
- W focuses the list of messages
- E focuses the preview pane for the currently selected message

I know it's just a workaround. But maybe it's better than nothing.

Kai

On 19 Jan 2015, at 11:08, Max Rydahl Andersen wrote:

Hi,

I got this setup in my keybindings:

N = selectNextMailbox:;
P = selectPreviousMailbox:;

works great, except that when I use these I still have to use the 
mouse to
have the message list have focus before I can use 'n'/'p' for next 
and

previous messages.

Anyway to have have the focus automatically go to the right place ?

/max
http://about.me/maxandersen
--

mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate


___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate





--
/max
http://about.me/maxandersen



/max
http://about.me/maxandersen
___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate


Re: [MlMt] keybinding for next mailbox + focus in message window ?

2015-01-19 Thread John Cooper
I'd set up keybindings to first set focus to the message list, and then 
move up and down in the mailbox. Something like this (not tested):


n = (makeFirstResponder:, messageView, nextMessage: );
p = (makeFirstResponder:, messageView, previousMessage: );

Does that do what you want?

Max Rydahl Andersen wrote (at 4:08 on 19 Jan 2015):


Hi,

I got this setup in my keybindings:

N = selectNextMailbox:;
 P = selectPreviousMailbox:;

works great, except that when I use these I still have to use the 
mouse to have the message list have focus before I can use 'n'/'p' for 
next and previous messages.


Anyway to have have the focus automatically go to the right place ?

/max
http://about.me/maxandersen
___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate
___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate


Re: [MlMt] keybinding for next mailbox + focus in message window ?

2015-01-19 Thread Kai Großjohann
Benny says he wants to fix something.  Until then, may I propose another 
keybinding to focus the message list?


Q = (makeFirstResponder:, mailboxesOutline);
W = (makeFirstResponder:, mainOutline);
E = (makeFirstResponder:, messageView);

With this,

* `Q` focuses the list of mailboxes
* `W` focuses the list of messages
* `E` focuses the preview pane for the currently selected message

I know it's just a workaround.  But maybe it's better than nothing.

Kai


On 19 Jan 2015, at 11:08, Max Rydahl Andersen wrote:


Hi,

I got this setup in my keybindings:

N = selectNextMailbox:;
P = selectPreviousMailbox:;

works great, except that when I use these I still have to use the 
mouse to have the message list have focus before I can use 'n'/'p' for 
next and previous messages.


Anyway to have have the focus automatically go to the right place ?

/max
http://about.me/maxandersen
___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate
___
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate