~ubuntu-branches/ubuntu/vivid/vim/vivid

« back to all changes in this revision

Viewing changes to runtime/ftplugin/m4.vim

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2008-11-05 11:37:43 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20081105113743-9i4urcsm3n44mhqe
Tags: 2:7.2.025-2ubuntu1
* Merge from debian unstable, remaining changes:
  - runtime/syntax/debcontrol.vim:
    + Add "metapackages" to the list of valid sections.
  - runtime/syntax/debchangelog.vim:
    + Add "jaunty" to the list of valid suites.
  - Drop vim-lesstif package and lesstif2-dev build-dependency.
  - Enable Python interpreter on basic builds.
  - Create a .pot file for translations.
  - Disable autoindent, line-wrapping, and backup files by default.
  - runtime/syntax/debsources.vim:
    + Add "jaunty" to debsourcesDistrKeyword
  - runtime/syntax/grub.vim:
    + Add Ubuntu-specific 'quiet' keyword.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
" Vim filetype plugin file
2
2
" Language:         m4
3
3
" Maintainer:       Nikolai Weibull <now@bitwi.se>
4
 
" Latest Revision:  2006-04-19
 
4
" Latest Revision:  2008-07-09
5
5
 
6
6
if exists("b:did_ftplugin")
7
7
  finish
8
8
endif
9
9
let b:did_ftplugin = 1
10
10
 
 
11
let s:cpo_save = &cpo
 
12
set cpo&vim
 
13
 
11
14
let b:undo_ftplugin = "setl com< cms< fo<"
12
15
 
13
16
setlocal comments=:#,:dnl commentstring=dnl\ %s
14
17
setlocal formatoptions-=t formatoptions+=croql
 
18
 
 
19
let &cpo = s:cpo_save
 
20
unlet s:cpo_save