Mercurial > vim
view src/testdir/check.vim @ 17518:bfc5a2962f38 v8.1.1757
patch 8.1.1757: text added with appendbufline() isn't displayed
commit https://github.com/vim/vim/commit/298466629119eda501cfdf7824797f05045e67ca
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jul 27 17:39:15 2019 +0200
patch 8.1.1757: text added with appendbufline() isn't displayed
Problem: Text added with appendbufline() to another buffer isn't displayed.
Solution: Update topline. (partly by Christian Brabandt, closes https://github.com/vim/vim/issues/4718)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 27 Jul 2019 17:45:08 +0200 |
parents | 8e9e9124c7a2 |
children | 4a22102fda8f |
line wrap: on
line source
" Command to check for the presence of a feature. command -nargs=1 CheckFeature call CheckFeature(<f-args>) func CheckFeature(name) if !has(a:name) throw 'Skipped: ' .. a:name .. ' feature missing' endif endfunc " Command to check for the presence of a working option. command -nargs=1 CheckOption call CheckOption(<f-args>) func CheckOption(name) if !exists('+' .. a:name) throw 'Skipped: ' .. a:name .. ' option not supported' endif endfunc " Command to check for the presence of a function. command -nargs=1 CheckFunction call CheckFunction(<f-args>) func CheckFunction(name) if !exists('*' .. a:name) throw 'Skipped: ' .. a:name .. ' function missing' endif endfunc