Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-12 Thread Bill Cole
On 12 Nov 2017, at 9:36 (-0500), David Ledger wrote: We’ve wandered off-topic a bit (a lot?) here, but there is no ‘on-disk’ path delimiter. Semantic quibble. In HFS+ ':' is a "never-used-in-a-name-on-disk" character because Carbon and the VFS abstraction layer for HFS+ use it as a path

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-12 Thread David Ledger
On 11 Nov 2017, at 23:48, Bill Cole wrote: On 10 Nov 2017, at 16:03 (-0500), David Ledger wrote: On 10 Nov 2017, at 4:04, Paul Sture wrote: On 6 Nov 2017, at 14:54, David Ledger wrote: [...] ‘/‘ is to be avoided in filenames in Unix systems generally. Having worked with Unix since (just)

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-11 Thread Bill Cole
On 10 Nov 2017, at 16:03 (-0500), David Ledger wrote: On 10 Nov 2017, at 4:04, Paul Sture wrote: On 6 Nov 2017, at 14:54, David Ledger wrote: [...] ‘/‘ is to be avoided in filenames in Unix systems generally. Having worked with Unix since (just) before the Mac I’ve never tried using it

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-11 Thread Robert Goldman
On 11 Nov 2017, at 1:26, Benny Kjær Nielsen wrote: On 10 Nov 2017, at 16:11, Robert Goldman wrote: Thank you very much! One thing I didn't understand before is the file-ordering matter. From your email it sounds like the *first* binding of a key wins when there are multiple bindings. Is

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-10 Thread David Ledger
On 10 Nov 2017, at 4:04, Paul Sture wrote: On 6 Nov 2017, at 14:54, David Ledger wrote: On 6 Nov 2017, at 10:23, Benny Kjær Nielsen wrote: On 4 Nov 2017, at 19:59, Robert Goldman wrote: Follow-up questions: I *think* most of your questions are answered

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-10 Thread Robert Goldman
Thank you very much! One thing I didn't understand before is the file-ordering matter. From your email it sounds like the *first* binding of a key wins when there are multiple bindings. Is that correct? I had assumed that it would be the *last* binding, so I put my key bindings in the list

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-10 Thread Benny Kjær Nielsen
On 7 Nov 2017, at 16:54, Robert Goldman wrote: It's quite simple, and it was mostly copied from the manual and from GitHub resources. This is all it is: ``` { "^@\U000D" = "send:"; // Cmd + Return "^@\U000A" = "send:"; // Cmd + Enter // spacebar like Thunderbird " " =

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-09 Thread Paul Sture
On 6 Nov 2017, at 14:54, David Ledger wrote: On 6 Nov 2017, at 10:23, Benny Kjær Nielsen wrote: On 4 Nov 2017, at 19:59, Robert Goldman wrote: Follow-up questions: I *think* most of your questions are answered

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-07 Thread Robert Goldman
On 7 Nov 2017, at 6:54, Benny Kjær Nielsen wrote: On 6 Nov 2017, at 15:43, Robert Goldman wrote: 2. Would it be possible to add a log entry if MailMate does not find a file? I've added this. Thanks. Will this pop-up in a beta build when I update? Yes, it should work in the next update.

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-07 Thread Benny Kjær Nielsen
On 6 Nov 2017, at 15:43, Robert Goldman wrote: 2. Would it be possible to add a log entry if MailMate does not find a file? I've added this. Thanks. Will this pop-up in a beta build when I update? Yes, it should work in the next update. 3. Are there any characters forbidden in

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-06 Thread Robert Goldman
On 6 Nov 2017, at 7:54, David Ledger wrote: On 6 Nov 2017, at 10:23, Benny Kjær Nielsen wrote: On 4 Nov 2017, at 19:59, Robert Goldman wrote: Follow-up questions: I *think* most of your questions are answered

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-06 Thread Robert Goldman
On 6 Nov 2017, at 4:23, Benny Kjær Nielsen wrote: On 4 Nov 2017, at 19:59, Robert Goldman wrote: Follow-up questions: I *think* most of your questions are answered [here](https://manual.mailmate-app.com/custom_key_bindings.html#key-bindings-in-mailmate). You are right: when I went back

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-06 Thread Benny Kjær Nielsen
On 4 Nov 2017, at 19:59, Robert Goldman wrote: Follow-up questions: I *think* most of your questions are answered [here](https://manual.mailmate-app.com/custom_key_bindings.html#key-bindings-in-mailmate). 2. Would it be possible to add a log entry if MailMate does not find a file? I've

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-04 Thread Robert Goldman
Follow-up questions: 1. what is the format of the Custom Key Bindings text field? In particular, what does MailMate want as a separator between filenames? 2. Would it be possible to add a log entry if MailMate does not find a file? 3. Are there any characters forbidden in filenames? 4. I

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-04 Thread Robert Goldman
Thanks. Actually, I should have mentioned that I do have both of these in my `.plist`, not just the one for Cmd-enter. It still doesn't work. So I don't know if my plist file isn't loaded, my plist file is ill-formed, my plist file is loaded, but something is clobbering this keybinding,

Re: [MlMt] Debugging custom keystrokes (another newbie question)

2017-11-04 Thread Shoshanna Green
On 3 Nov 2017, at 18:43, Robert Goldman wrote: I took someone else's plist definition to use a (TBird-like) Cmd-RETURN keyboard shortcut for "send:" Presumably it works for them: ``` "^@\U000D" = "send:"; // Cmd + Return ``` Unfortunately, it doesn't work for me. I can't help you

[MlMt] Debugging custom keystrokes (another newbie question)

2017-11-03 Thread Robert Goldman
I took someone else's plist definition to use a (TBird-like) Cmd-RETURN keyboard shortcut for "send:" Presumably it works for them: ``` "^@\U000D" = "send:"; // Cmd + Return ``` Unfortunately, it doesn't work for me. I press Cmd-RETURN and just get a "bad keystroke" booping noise.