view runtime/ftplugin/odin.vim @ 34892:58416c1d1b94 v9.1.0309

patch 9.1.0309: crash when 'textwidth' > MAX_INT Commit: https://github.com/vim/vim/commit/bba79808cb115d4f54063e8aa40628a927eab44e Author: Christian Brabandt <cb@256bit.org> Date: Thu Apr 11 22:54:44 2024 +0200 patch 9.1.0309: crash when 'textwidth' > MAX_INT Problem: crash when 'textwidth' > MAX_INT (after vv9.1.0055) (Zoltan Balogh) Solution: limit textwidth to MAX_INT fixes: #14482 closes: #14489 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 11 Apr 2024 23:15:03 +0200
parents c2a3b642d4cb
children 7c7432a53a6c
line wrap: on
line source

vim9script

# Vim filetype plugin file
# Language: Odin
# Maintainer: Maxim Kim <habamax@gmail.com>
# Website: https://github.com/habamax/vim-odin
# Last Change: 2024-01-15

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

b:undo_ftplugin = 'setlocal commentstring<'
      \ .. '| setlocal comments<'
      \ .. '| setlocal suffixesadd<'

setlocal suffixesadd=.odin
setlocal commentstring=//%s
setlocal comments=s1:/*,mb:*,ex:*/,://