Mercurial > vim
view runtime/ftplugin/ld.vim @ 16736:426bf8101214 v8.1.1370
patch 8.1.1370: not using the new github feature for donations
commit https://github.com/vim/vim/commit/05b8b07e2770b66ab77fdb5e195cae809959bdab
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu May 23 20:42:10 2019 +0200
patch 8.1.1370: not using the new github feature for donations
Problem: Not using the new github feature for donations.
Solution: Add a Sponsor button. (closes https://github.com/vim/vim/issues/4417)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 23 May 2019 20:45:04 +0200 |
parents | 1218c5353e2b |
children | 7c7432a53a6c |
line wrap: on
line source
" Vim filetype plugin file " Language: ld(1) script " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2008-07-09 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:cpo_save = &cpo set cpo&vim let b:undo_ftplugin = "setl com< cms< inc< fo<" setlocal comments=s1:/*,mb:*,ex:*/ commentstring=/*%s*/ include=^\\s*INCLUDE setlocal formatoptions-=t formatoptions+=croql let &cpo = s:cpo_save unlet s:cpo_save