Mercurial > vim
view runtime/ftplugin/help.vim @ 15115:f17110dae9de v8.1.0568
patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI
commit https://github.com/vim/vim/commit/9a8534673acd98d7398c967fe4348df63e689dab
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Dec 7 14:10:37 2018 +0100
patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI
Problem: Error message for NUL byte in ScreenLines breaks Travis CI.
Solution: Use a normal message fornow.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 07 Dec 2018 14:15:05 +0100 |
parents | 1218c5353e2b |
children | 9d3d7b0f4861 |
line wrap: on
line source
" Vim filetype plugin file " Language: Vim help file " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2008-07-09 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:cpo_save = &cpo set cpo&vim let b:undo_ftplugin = "setl fo< tw< cole< cocu<" setlocal formatoptions+=tcroql textwidth=78 if has("conceal") setlocal cole=2 cocu=nc endif let &cpo = s:cpo_save unlet s:cpo_save