From 2e610ac5238293d43c471a1cd29e475c7e6d7db9 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Wed, 7 Oct 2020 00:00:25 +0200 Subject: [PATCH] Set buffer modifiable and noreadonly When using :Startify in an empty buffer (so no :enew is used), which is set to 'nomodifiable' or 'readonly', the plugin would throw errors. Closes https://github.com/mhinz/vim-startify/issues/406 Closes https://github.com/mhinz/vim-startify/issues/408 --- autoload/startify.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 665ce35..6bf8098 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -67,11 +67,13 @@ function! startify#insane_in_the_membrane(on_vimenter) abort \ colorcolumn= \ foldcolumn=0 \ matchpairs= + \ modifiable \ nobuflisted \ nocursorcolumn \ nocursorline \ nolist \ nonumber + \ noreadonly \ norelativenumber \ nospell \ noswapfile