annotate runtime/ftplugin/automake.vim @ 6077:255561411d7a
v7.4.377
updated for version 7.4.377
Problem: When 'equalalways' is set a split may report "no room" even though
there is plenty of room.
Solution: Compute the available room properly. (Yukihiro Nakadaira)
author |
Bram Moolenaar <bram@vim.org> |
date |
Wed, 23 Jul 2014 15:21:20 +0200 |
parents |
f4f8014d516e |
children |
1218c5353e2b |
rev |
line source |
7
|
1 " Vim filetype plugin file
|
375
|
2 " Language: Automake
|
839
|
3 " Maintainer: Nikolai Weibull <now@bitwi.se>
|
1698
|
4 " Latest Revision: 2008-07-09
|
7
|
5
|
375
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9
|
1698
|
10 let s:cpo_save = &cpo
|
|
11 set cpo&vim
|
|
12
|
7
|
13 runtime! ftplugin/make.vim ftplugin/make_*.vim ftplugin/make/*.vim
|
1698
|
14
|
|
15 let &cpo = s:cpo_save
|
|
16 unlet s:cpo_save
|