Original emacs with enough window-width can split help buffer horizontally,
but in spacemacs it's not the case.
I tried #5140 but it didn't work. What I tried is following.
(defun dotspacemacs/user-config ()
"Configuration function for user code.
This function is called at the very end of Spacemacs initialization after
layers configuration.
This is the place where most of your configurations should be done. Unless it is
explicitly specified that a variable should be set before a package is loaded,
you should place your code here."
(setq-default
split-width-threshold 0
split-height-threshold nil
)
)
Even with above code, help message splitted vertically in (and only in) frame-root-window.
What did makes this difference between pure emacs and spacemacs? Could anyone please help me....?