From f20cef34ba4ccc1b1ae144b3c7bc25843bbfe2a2 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Wed, 31 Mar 2021 19:37:48 +0200 Subject: [PATCH] Nvim: hide EndOfBuffer markers --- autoload/startify.vim | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 411e0de..1340d71 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -152,6 +152,8 @@ function! startify#insane_in_the_membrane(on_vimenter) abort setlocal nomodifiable nomodified + call s:hide_endofbuffer_markers() + call s:set_mappings() call cursor(b:startify.firstline, 5) autocmd startify CursorMoved call s:set_cursor() @@ -1111,6 +1113,24 @@ function s:transform(absolute_path) return '' endfunction +" Function: s:hide_endofbuffer_markers {{{1 +" Use the bg color of Normal to set the fg color of EndOfBuffer, effectively +" hiding it. +function! s:hide_endofbuffer_markers() + if !exists('+winhl') + return + endif + let val = synIDattr(hlID('Normal'), 'bg') + if empty(val) + return + elseif val =~ '^\d*$' + execute 'highlight StartifyEndOfBuffer ctermfg='. val + else + execute 'highlight StartifyEndOfBuffer guifg='. val + endif + setlocal winhighlight=EndOfBuffer:StartifyEndOfBuffer +endfunction + " Function: s:warn {{{1 function! s:warn(msg) abort echohl WarningMsg