A lot of my use for Mathematica is creating notebooks that read like textbooks. For this reason, most of my time is spent in text cells. As I type in a text cell, I am constantly creating inline cells. I find the Control + 9 method for creating an inline cell annoying, difficult and time consuming.
I'm hoping to use the Fn key on the lower left-hand side of the keyboard instead of having to type Control + 9. This would be easier because its one key and its easy to get to. On top of that, I never use the Fn key for anything... so its available.
I can't seem to figure out how to do this. I know its possible. I've tried using modifying keyeventtranslations. Currently I have the following code in keyeventtranslations.nb
Item[KeyEvent["9", Modifiers -> {Control}], "CreateInlineCell"] It seems it would be easy to do what I want if I knew the keyevent for the Fn key. But I don't. I don't think Mathematica recognizes this key at all for some reason. I can't seem to find it anywhere in the documentation either. So this leads to a dead end as far as I can tell.
Do you have any advice on go about going this another way?
Item[KeyEvent["F9"], ...](for the function key 9) work? Looking at the fileKeyEventTranslations.tr, it seems to be done this way. (I did not try it myself.) $\endgroup$"F1"and"F2"being used, and I interpreted the former as the shorcut for opening the documentation center. Now I am seeing that this isSelectionHelpDialog[False]and not the token"SelectionHelpDialog", so maybe this is for another thing. I am not sure how one can get the function keys to work, which could be really nice indeed. $\endgroup$