mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
This reverts commit 0a63bd0781.
Turns out there are some unintended side effects to this config option.
The cursor always returns to the top of the file when running a spec in
the built in terminal. This is really annoying 😠
8 lines
149 B
VimL
8 lines
149 B
VimL
if has("gui_running") || has("gui_vimr")
|
|
" Remove scrollbars
|
|
set guioptions-=R
|
|
set guioptions-=r
|
|
set guioptions-=L
|
|
set guioptions-=l
|
|
endif
|