Mercurial > vim
view runtime/ftplugin/treetop.vim @ 10757:6c3d42d18366 v8.0.0268
patch 8.0.0268: may get ml_get error when :luado deletes lines
commit https://github.com/vim/vim/commit/d58f03b1c21b5b0242718f89da53ddd67b1eff6b
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 29 22:48:45 2017 +0100
patch 8.0.0268: may get ml_get error when :luado deletes lines
Problem: May get ml_get error when :luado deletes lines or switches to
another buffer. (Nikolai Pavlov, issue https://github.com/vim/vim/issues/1421)
Solution: Check the buffer and line every time.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 29 Jan 2017 23:00:04 +0100 |
parents | 6f63330ec225 |
children | 1218c5353e2b |
line wrap: on
line source
" Vim filetype plugin file " Language: Treetop " Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2011-03-14 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:cpo_save = &cpo set cpo&vim setlocal comments=b:# commentstring=#\ %s formatoptions-=tcroq formatoptions+=l let b:undo_ftplugin = "setl com< cms< fo<" let &cpo = s:cpo_save unlet s:cpo_save