Bram Moolenaar | b529cfb | 2022-07-25 15:42:07 +0100 | [diff] [blame] | 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 |