From 22040ce638ed610cfdbba03376ad9864a2a5d321 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Thu, 14 Jan 2021 20:59:40 +0100 Subject: Update --- ftplugin/erlang.vim | 5 +++-- ftplugin/fstab.vim | 4 ++-- ftplugin/lilypond.vim | 61 --------------------------------------------------- 3 files changed, 5 insertions(+), 65 deletions(-) delete mode 100644 ftplugin/lilypond.vim (limited to 'ftplugin') diff --git a/ftplugin/erlang.vim b/ftplugin/erlang.vim index f23ba875..798f1ded 100644 --- a/ftplugin/erlang.vim +++ b/ftplugin/erlang.vim @@ -3,14 +3,15 @@ if polyglot#init#is_disabled(expand(':p'), 'erlang', 'ftplugin/erlang.vim endif " Vim ftplugin file -" Language: Erlang +" Language: Erlang (http://www.erlang.org) " Maintainer: Csaba Hoch " Author: Oscar Hellström " Contributors: Ricardo Catalinas Jiménez " Eduardo Lopez (http://github.com/tapichu) " Arvid Bjurklint (http://github.com/slarwise) +" Last Update: 2021-Jan-08 " License: Vim license -" Version: 2012/01/25 +" URL: https://github.com/vim-erlang/vim-erlang-runtime if exists('b:did_ftplugin') finish diff --git a/ftplugin/fstab.vim b/ftplugin/fstab.vim index 5f0972ca..437c1247 100644 --- a/ftplugin/fstab.vim +++ b/ftplugin/fstab.vim @@ -6,7 +6,7 @@ endif " Language: fstab file " Maintainer: Radu Dineiu " URL: https://raw.github.com/rid9/vim-fstab/master/ftplugin/fstab.vim -" Last Change: 2020 Dec 29 +" Last Change: 2021 Jan 02 " Version: 1.0 " " Credits: @@ -20,4 +20,4 @@ let b:did_ftplugin = 1 setlocal commentstring=#%s let b:undo_ftplugin = "setlocal commentstring<" -" vim: ts=8 ft=vim \ No newline at end of file +" vim: ts=8 ft=vim diff --git a/ftplugin/lilypond.vim b/ftplugin/lilypond.vim deleted file mode 100644 index ed2d1cdb..00000000 --- a/ftplugin/lilypond.vim +++ /dev/null @@ -1,61 +0,0 @@ -if polyglot#init#is_disabled(expand(':p'), 'lilypond', 'ftplugin/lilypond.vim') - finish -endif - -" LilyPond filetype plugin -" Language: LilyPond (ft=ly) -" Maintainer: Heikki Junes -" Last Change: 2010 Jul 26 -" -" Installed As: vim/ftplugin/lilypond.vim -" Uses Generated File: vim/syntax/lilypond-words.vim -" -" Only do this when not done yet for this buffer -if exists("b:did_ftplugin") - finish -endif - -" Don't load another plugin for this buffer -let b:did_ftplugin = 1 - -setlocal autoindent -setlocal shiftwidth=2 -" -" some handy key mappings -" -" save & make and play midi with timidity -map :w:se makeprg=lilypond\ \"%<\":make:!timidity "%<.midi" -" -" save & make -map :w:se makeprg=lilypond\ \"%<\":make -" -" view ps with ghostview -map :!gv --watch "%<.ps" & -" -" prev error -map :cp -" -" next error -map :cn -" -" make -map :w:se makeprg=make\ -k:make -" -" menu -source $VIMRUNTIME/menu.vim -setlocal wildmenu -setlocal cpo-=< -setlocal wcm= -map :emenu -" -" comment region -map :g!/%.*/normal 0i% -" -" remove comments in region -map :g/%.*/normal 0x -" -" Completions in Insert/Replace-mode with -setlocal dictionary-=$VIM/syntax/lilypond-words dictionary+=$VIM/syntax/lilypond-words -setlocal complete-=k complete+=k -" -setlocal showmatch -- cgit v1.2.3