view runtime/ftplugin/fstab.vim @ 29216:32f3b86352e6 v8.2.5127

patch 8.2.5127: using assert_true() does not show value on failure Commit: https://github.com/vim/vim/commit/cdc6a43559d5b880f81efceb849f40c20af1ada1 Author: zeertzjq <zeertzjq@outlook.com> Date: Sun Jun 19 11:45:46 2022 +0100 patch 8.2.5127: using assert_true() does not show value on failure Problem: Using assert_true() does not show value on failure. Solution: Use assert_inrange(). (closes https://github.com/vim/vim/issues/10593)
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Jun 2022 13:00:05 +0200
parents e2e2cc5d0856
children 7c7432a53a6c
line wrap: on
line source

" Vim ftplugin file
" Language: fstab file
" Maintainer: Radu Dineiu <radu.dineiu@gmail.com>
" URL: https://raw.github.com/rid9/vim-fstab/master/ftplugin/fstab.vim
" Last Change: 2021 Jan 02
" Version: 1.0
"
" Credits:
"   Subhaditya Nath <sn03.general@gmail.com>

if exists("b:did_ftplugin")
	finish
endif
let b:did_ftplugin = 1

setlocal commentstring=#%s
let b:undo_ftplugin = "setlocal commentstring<"

" vim: ts=8 ft=vim