Mercurial > vim
annotate runtime/ftplugin/expect.vim @ 32041:7aeaf20e2ba5 v9.0.1352
patch 9.0.1352: "ignore" files are outdated
Commit: https://github.com/vim/vim/commit/a63fd8232895bbf6751087d90fd15c8ea45f1cf0
Author: K.Takata <kentkt@csc.jp>
Date: Fri Feb 24 17:16:41 2023 +0000
patch 9.0.1352: "ignore" files are outdated
Problem: "ignore" files are outdated.
Solution: Update "ignore" files. (Ken Takata, closes https://github.com/vim/vim/issues/12056)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 24 Feb 2023 18:30:04 +0100 |
parents | 67f31c24291b |
children | 8ae680be2a51 |
rev | line source |
---|---|
29450 | 1 " Vim filetype plugin file |
2 " Language: Expect | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2022 Jul 16 | |
5 | |
6 if exists("b:did_ftplugin") | |
7 finish | |
8 endif | |
9 | |
10 " Syntax is similar to Tcl | |
11 runtime! ftplugin/tcl.vim | |
12 | |
13 let s:cpo_save = &cpo | |
14 set cpo&vim | |
15 | |
16 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") | |
17 let b:browsefilter = "Expect Command Files (*.exp)\t*.exp\n" .. | |
18 \ "All Files (*.*)\t*.*\n" | |
19 endif | |
20 | |
21 let &cpo = s:cpo_save | |
22 unlet s:cpo_save | |
23 | |
24 " vim: nowrap sw=2 sts=2 ts=8 |