annotate runtime/ftplugin/automake.vim @ 10516:09bb1836cdb5
v8.0.0148
commit https://github.com/vim/vim/commit/c6aa475a27e3ed1645446b014c32ebf68d005d49
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 7 15:39:43 2017 +0100
patch 8.0.0148: wrong indent in C preprocessor with line continuation
Problem: When a C preprocessor statement has two line continuations the
following line does not have the right indent. (Ken Takata)
Solution: Add the indent of the previous continuation line. (Hirohito
Higashi)
author |
Christian Brabandt <cb@256bit.org> |
date |
Sat, 07 Jan 2017 15:45:03 +0100 |
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
|