sh vi mode with command mode by default

Hi!
/bin/sh (Almquist shell) with vi mode (set -o vi) starts every new line at insert mode.
So I must press Esc every new prompt if I want to go through history.
Is it possible to start shell prompts with "vi command (normal) mode"?
 
I don't think you can change the mode. There's no mention of the ability to change it.

Code:
 The command "set -o vi"
     (or "set -V") enables vi-mode editing and places sh into vi insert mode.
 
Back
Top