annotate runtime/ftplugin/btm.vim @ 9179:5e18efdad322
v7.4.1873
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jun 2 14:30:04 2016 +0200
patch 7.4.1873
Problem: When a callback adds a timer the GUI doesn't use it until later.
(Ramel Eshed)
Solution: Return early if a callback adds a timer.
author |
Christian Brabandt <cb@256bit.org> |
date |
Thu, 02 Jun 2016 14:30:08 +0200 |
parents |
631143ac4a01 |
children |
4027cefc2aab |
rev |
line source |
15
|
1 " Vim filetype plugin file
|
|
2 " Language: BTM
|
|
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
4 " Last Change: 2004 Jul 06
|
|
5
|
|
6 " Only do this when not done yet for this buffer
|
|
7 if exists("b:did_ftplugin")
|
|
8 finish
|
|
9 endif
|
|
10
|
|
11 " Behaves just like dosbatch
|
|
12 runtime! ftplugin/dosbatch.vim ftplugin/dosbatch_*.vim ftplugin/dosbatch/*.vim
|