"3.8.3 (created: 2014/11/09 13:19:01) highlight Hint font-family: monospace; font-size: 12px; font-weight: bold; text-transform: uppercase; color: white; background-color: red; border-color: ButtonShadow; border-width: 0px; border-style: solid; padding: 0px 1px 0px 1px; highlight HintElem '' set hintchars=asdfjkluiowerqp source! /home/tom/.vimperatorrc.local set gui=nonavigation " Hide status bar when fullscreen mode is detected as found in: " https://github.com/vimperator/vimperator-labs/issues/26#issuecomment-73982996 autocmd Fullscreen .* js updateBottomBar() " Re-enable bottom bar during certain commands. noremap : :js updateBottomBar(false): noremap o :js updateBottomBar(false)o noremap O :js updateBottomBar(false)O noremap t :js updateBottomBar(false)t noremap T :js updateBottomBar(false)t noremap / :js updateBottomBar(false)/ cnoremap :js updateBottomBar() cnoremap :js updateBottomBar() :js << EOF let hlContentSepValue = highlight.get('ContentSeparator').value function updateBottomBar(close = window.fullScreen) { let bb = document.getElementById('liberator-bottombar') if (! bb) return if (close) { bb.style.height = '0px' bb.style.overflow = 'hidden' liberator.execute('highlight ContentSeparator display: none;') } else { bb.style.height = '' bb.style.overflow = '' liberator.execute('highlight ContentSeparator ' + hlContentSepValue) } } updateBottomBar() EOF " vim: set ft=vimperator: