From a88f83b3f2cbb711e36584b62f4f9d00ab081330 Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Mon, 30 Nov 2015 18:03:24 +0100 Subject: Removed configs i was not using --- vimperator/.vimperatorrc | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 vimperator/.vimperatorrc (limited to 'vimperator/.vimperatorrc') diff --git a/vimperator/.vimperatorrc b/vimperator/.vimperatorrc deleted file mode 100644 index 872f044..0000000 --- a/vimperator/.vimperatorrc +++ /dev/null @@ -1,48 +0,0 @@ -"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: -- cgit v1.2.3