view runtime/ftplugin/fstab.vim @ 27072:0878d7c64140 v8.2.4065

patch 8.2.4065: computation overflow with large cound for :yank Commit: https://github.com/vim/vim/commit/3cf21b305104e91a28e4ce3a473672b2e88a9469 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 11 19:34:16 2022 +0000 patch 8.2.4065: computation overflow with large cound for :yank Problem: Computation overflow with large cound for :yank. Solution: Avoid an overflow.
author Bram Moolenaar <Bram@vim.org>
date Tue, 11 Jan 2022 20:45:02 +0100
parents e2e2cc5d0856
children
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