From b1ed3eff2d14c1787df1962787efb11a088fc6f7 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Sun, 7 Mar 2021 15:57:08 -0500 Subject: [PATCH] Revert "Color terminal output in GUI Vim" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 0a63bd07813b4ab8ec5f1e4dd94092b79ce367c4. 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 😠 --- vim/vimrc.d/gui.vim | 3 --- 1 file changed, 3 deletions(-) diff --git a/vim/vimrc.d/gui.vim b/vim/vimrc.d/gui.vim index 5c52a48..97a99d6 100644 --- a/vim/vimrc.d/gui.vim +++ b/vim/vimrc.d/gui.vim @@ -4,7 +4,4 @@ if has("gui_running") || has("gui_vimr") set guioptions-=r set guioptions-=L set guioptions-=l - - " Color terminal output - set guioptions+=! endif