annotate runtime/ftplugin/fetchmail.vim @ 31089:bbd5549acced
v9.0.0879
patch 9.0.0879: unnecessary nesting in makefile
Commit: https://github.com/vim/vim/commit/dcbdd82d059a9b621e09f4447446a92ae2562e16
Author: K.Takata <kentkt@csc.jp>
Date: Mon Nov 14 14:50:15 2022 +0000
patch 9.0.0879: unnecessary nesting in makefile
Problem: Unnecessary nesting in makefile.
Solution: Join "else" and "ifeq". (Ken Takata, closes https://github.com/vim/vim/issues/11547)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 14 Nov 2022 16:00:05 +0100 |
parents |
912224cab37f |
children |
|
rev |
line source |
375
|
1 " Vim filetype plugin file
|
29352
|
2 " Language: fetchmail(1) RC File
|
|
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
|
|
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
5 " Latest Revision: 2022 Jun 30
|
375
|
6
|
|
7 if exists("b:did_ftplugin")
|
|
8 finish
|
|
9 endif
|
|
10 let b:did_ftplugin = 1
|
|
11
|
29352
|
12 setlocal comments=:# commentstring=#\ %s
|
|
13 setlocal formatoptions-=t formatoptions+=croql
|
1698
|
14
|
389
|
15 let b:undo_ftplugin = "setl com< cms< fo<"
|
375
|
16
|