If you\'re typing a command in Vim (I mean you\'ve started with :
and you\'re working in the bar at the bottom of the screen) is there a way to move the cursor
You can actually add your own movement keys. For example, I use the following in my .vimrc to make moving around the command mode finger-friendly in an hjkl way (abusing the ctrl key):
" moving aroung in command mode
cnoremap <c-h> <left>
cnoremap <c-j> <down>
cnoremap <c-k> <up>
cnoremap <c-l> <right>
cnoremap ^ <home>
cnoremap $ <end>
where ^ and $ are really < ctrl-^ > and < ctrl-$ > respectivelly, typed as < c-v >< c-^ > and < c-v >< c-$ > in the .vimrc (for some reason < c-^ > and < c-$ > won't work, at least in my setting, but the former do)