]> git.phdru.name Git - dotfiles.git/commitdiff
.vimrc: Fix error message format
authorOleg Broytman <phd@phdru.name>
Tue, 24 Oct 2023 11:01:12 +0000 (14:01 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 24 Oct 2023 11:01:12 +0000 (14:01 +0300)
Vim 9 slightly changed the format.

.vimrc

diff --git a/.vimrc b/.vimrc
index 5546bdfc2904e60543a0357d458e793572ca3f9b..dfa434f64368f0e1a38dfcbad764e274ce502aa9 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -592,13 +592,13 @@ function! W()
          execute 'set fileencoding=' . e
          w
          break
-      catch /E513: write error, conversion failed/
+      catch /E513: [Ww]rite error, conversion failed/
          continue
       endtry
    endfor
 
    if &modified
-      throw '"' . expand('%') . '" E513: write error, conversion failed; tried ' . join(encodings, ',')
+      throw '"' . expand('%') . '" E513: Write error, conversion failed; tried ' . join(encodings, ',')
    elseif has("spell")
       call SetupSpell()
    endif