Bram Moolenaar | 4a74803 | 2010-09-30 21:47:56 +0200 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Language: Falcon |
| 3 | " Author: Steven Oliver <oliver.steven@gmail.com> |
Bram Moolenaar | f1568ec | 2011-12-14 21:17:39 +0100 | [diff] [blame] | 4 | " Copyright: Copyright (c) 2009, 2010, 2011 Steven Oliver |
Bram Moolenaar | 4a74803 | 2010-09-30 21:47:56 +0200 | [diff] [blame] | 5 | " License: You may redistribute this under the same terms as Vim itself |
| 6 | " -------------------------------------------------------------------------- |
| 7 | " GetLatestVimScripts: 2762 1 :AutoInstall: falcon.vim |
| 8 | |
| 9 | " Only do this when not done yet for this buffer |
| 10 | if (exists("b:did_ftplugin")) |
| 11 | finish |
| 12 | endif |
| 13 | let b:did_ftplugin = 1 |
| 14 | |
| 15 | let s:cpo_save = &cpo |
| 16 | set cpo&vim |
| 17 | |
| 18 | setlocal tabstop=4 shiftwidth=4 expandtab fileencoding=utf-8 |
Bram Moolenaar | f1568ec | 2011-12-14 21:17:39 +0100 | [diff] [blame] | 19 | setlocal suffixesadd=.fal,.ftd |
Bram Moolenaar | 4a74803 | 2010-09-30 21:47:56 +0200 | [diff] [blame] | 20 | |
| 21 | " Matchit support |
| 22 | if exists("loaded_matchit") && !exists("b:match_words") |
| 23 | let b:match_ignorecase = 0 |
| 24 | |
| 25 | let b:match_words = |
| 26 | \ '\<\%(if\|case\|while\|until\|for\|do\|class\)\>=\@!' . |
| 27 | \ ':' . |
| 28 | \ '\<\%(else\|elsif\|when\)\>' . |
| 29 | \ ':' . |
| 30 | \ '\<end\>' . |
| 31 | \ ',{:},\[:\],(:)' |
| 32 | endif |
| 33 | |
| 34 | " Set comments to include dashed lines |
| 35 | setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:// |
| 36 | |
| 37 | " Windows allows you to filter the open file dialog |
| 38 | if has("gui_win32") && !exists("b:browsefilter") |
Bram Moolenaar | f1568ec | 2011-12-14 21:17:39 +0100 | [diff] [blame] | 39 | let b:browsefilter = "Falcon Source Files (*.fal *.ftd)\t*.fal;*.ftd\n" . |
Bram Moolenaar | 4a74803 | 2010-09-30 21:47:56 +0200 | [diff] [blame] | 40 | \ "All Files (*.*)\t*.*\n" |
| 41 | endif |
| 42 | |
Bram Moolenaar | f1568ec | 2011-12-14 21:17:39 +0100 | [diff] [blame] | 43 | let &cpo = s:cpo_save |
| 44 | unlet s:cpo_save |
| 45 | |
Bram Moolenaar | 4a74803 | 2010-09-30 21:47:56 +0200 | [diff] [blame] | 46 | " vim: set sw=4 sts=4 et tw=80 : |