annotate runtime/indent/mail.vim @ 13888:81e8e6181aeb
v8.0.1815
patch 8.0.1815: crash with terminal window and with 'lazyredraw' set
commit https://github.com/vim/vim/commit/0cb8ac71ae42f66d525ad855db01361ca38d935a
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri May 11 22:01:51 2018 +0200
patch 8.0.1815: crash with terminal window and with 'lazyredraw' set
Problem: Still a crash with terminal window and with 'lazyredraw' set.
(Antoine)
Solution: Do not wipe out the buffer when updating the screen.
author |
Christian Brabandt <cb@256bit.org> |
date |
Fri, 11 May 2018 22:15:06 +0200 |
parents |
7bc41231fbc7 |
children |
9c221ad9634a |
rev |
line source |
2034
|
1 " Vim indent file
|
|
2 " Language: Mail
|
|
3 " Maintainer: Bram Moolenaar
|
|
4 " Last Change: 2009 Jun 03
|
|
5
|
|
6 if exists("b:did_indent")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_indent = 1
|
|
10
|
|
11 " What works best is auto-indenting, disable other indenting.
|
|
12 " For formatting see the ftplugin.
|
|
13 setlocal autoindent nosmartindent nocindent indentexpr=
|