Mercurial > vim
view runtime/ftplugin/chatito.vim @ 31101:0d918ee84276 v9.0.0885
patch 9.0.0885: informational message has an error message number
Commit: https://github.com/vim/vim/commit/b53a190e9f8a767bbd4be2f538649a09f9c8ba4b
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Nov 15 13:57:38 2022 +0000
patch 9.0.0885: informational message has an error message number
Problem: Informational message has an error message number.
Solution: Use a message without an error number. (closes https://github.com/vim/vim/issues/11530)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 15 Nov 2022 15:00:08 +0100 |
parents | 1e91e26ceebf |
children |
line wrap: on
line source
" Vim filetype plugin " Language: Chatito " Maintainer: ObserverOfTime <chronobserver@disroot.org> " Last Change: 2022 Sep 19 if exists('b:did_ftplugin') finish endif let b:did_ftplugin = 1 setlocal comments=:#,:// commentstring=#\ %s " indent of 4 spaces is mandated by the spec setlocal expandtab softtabstop=4 shiftwidth=4 let b:undo_ftplugin = 'setl com< cms< et< sts< sw<'