From 627d0a2b32d3e1dc71038c459bd6e62ee949d34a Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Wed, 9 Apr 2025 19:59:01 +0200 Subject: [PATCH] vim-patch:f9f53f5: runtime(remind): include remind.vim ftplugin closes: vim/vim#17085 https://github.com/vim/vim/commit/f9f53f5a8f4c7b3da548914a4552a0c0c572364a Co-authored-by: Joe Reynolds --- runtime/ftplugin/remind.vim | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 runtime/ftplugin/remind.vim diff --git a/runtime/ftplugin/remind.vim b/runtime/ftplugin/remind.vim new file mode 100644 index 0000000000..d645845979 --- /dev/null +++ b/runtime/ftplugin/remind.vim @@ -0,0 +1,14 @@ +" Vim filetype plugin file +" Language: Remind - a sophisticated calendar and alarm +" Maintainer: Joe Reynolds +" Latest Revision: 2025 April 08 +" License: Vim (see :h license) + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +setlocal comments=:# commentstring=#\ %s + +let b:undo_ftplugin = "setl cms< com<"