Skip to content
This repository has been archived by the owner on Dec 28, 2019. It is now read-only.

Commit

Permalink
Turning off cursorline in padding windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewest committed Nov 6, 2010
1 parent b69f29e commit b432539
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugin/vimroom.vim
Original file line number Diff line number Diff line change
Expand Up @@ -117,19 +117,23 @@ function! <SID>VimroomToggle()
" Create the left sidebar
exec( "silent leftabove " . s:sidebar . "vsplit new" )
set noma
set nocursorline
wincmd l
" Create the right sidebar
exec( "silent rightbelow " . s:sidebar . "vsplit new" )
set noma
set nocursorline
wincmd h
if g:vimroom_sidebar_height
" Create the top sidebar
exec( "silent leftabove " . g:vimroom_sidebar_height . "split new" )
set noma
set nocursorline
wincmd j
" Create the bottom sidebar
exec( "silent rightbelow " . g:vimroom_sidebar_height . "split new" )
set noma
set nocursorline
wincmd k
endif
" Setup wrapping, line breaking, and push the cursor down
Expand Down

0 comments on commit b432539

Please sign in to comment.