Mercurial > vim
view runtime/ftplugin/masm.vim @ 22488:16b0eb5fd816 v8.2.1792
patch 8.2.1792: Configure does not recognize Racket 6.1+
Commit: https://github.com/vim/vim/commit/588d241d44fc25ad4c5a635ee4fdeafdfcee0fde
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 3 14:24:19 2020 +0200
patch 8.2.1792: Configure does not recognize Racket 6.1+
Problem: Configure does not recognize Racket 6.1+.
Solution: Add a check for "rktio". (closes https://github.com/vim/vim/issues/7062)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 03 Oct 2020 14:30:05 +0200 |
parents | 7f88f6a3ed4c |
children | 4d76b3e07c07 |
line wrap: on
line source
" Vim filetype plugin file " Language: Microsoft Macro Assembler (80x86) " Maintainer: Wu Yongwei <wuyongwei@gmail.com> " Last Change: 2020-05-09 23:02:05 +0800 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:cpo_save = &cpo set cpo&vim let b:undo_ftplugin = "setl iskeyword<" setlocal iskeyword=@,48-57,_,36,60,62,63,@-@ let &cpo = s:cpo_save unlet s:cpo_save