key commands for Window>No Split, etc?

Not finding a way to assign key commands to menu items "Window>No Split (or Vertical Split or Horizontal Split). There seems to be no option in the Windows key command preferences for those commands. Am I missing something or are those commands not allowed or implemented for some reason?

You’re right that this isn’t currently possible to set via the Key Commands page of Preferences. I’ve made a note of this as something we should address in a future version.

It’s easy enough to graft the following lines into your user keycommands json, in the kGlobal context. (See here for detailed instructions on how to do that.)

					{
						"Window.SwitchSplitMode?WindowSplitMode=kTwoVertical" : [ "§" ]
					},
					
					{
						"Window.SwitchSplitMode?WindowSplitMode=kTwoHorizontal" : [ "±" ]
					},
					
					{
						"Window.SwitchSplitMode?WindowSplitMode=kOne" : [ "Ctrl+§" ]
					},

I thank both of you gentlemen. I’m finding the forum an outstanding resource for getting up to speed with Dorico. I never had so much fun learning a program.