Bram, Here are the patches for the Falcon PL indent and ftplugin files. The patch for the indent file only includes the cpoptions fix. The patch for the ftplugin file actually includes another minor update I've made (I added another file type) since I submitted the file for inclusion in the official distribution. If that's not OK I can split it up. Let me know.
Thanks, Steven Oliver -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
*** falcon.vim 2011-12-10 14:12:44.959352858 -0500 --- ../../../Downloads/ftplugin/falcon.vim 2011-12-10 14:18:38.246715565 -0500 *************** *** 1,7 **** " Vim filetype plugin file " Language: Falcon " Author: Steven Oliver <[email protected]> ! " Copyright: Copyright (c) 2009, 2010, 2011 Steven Oliver " License: You may redistribute this under the same terms as Vim itself " -------------------------------------------------------------------------- " GetLatestVimScripts: 2762 1 :AutoInstall: falcon.vim --- 1,7 ---- " Vim filetype plugin file " Language: Falcon " Author: Steven Oliver <[email protected]> ! " Copyright: Copyright (c) 2009, 2010 Steven Oliver " License: You may redistribute this under the same terms as Vim itself " -------------------------------------------------------------------------- " GetLatestVimScripts: 2762 1 :AutoInstall: falcon.vim *************** *** 16,22 **** set cpo&vim setlocal tabstop=4 shiftwidth=4 expandtab fileencoding=utf-8 ! setlocal suffixesadd=.fal,.ftd " Matchit support if exists("loaded_matchit") && !exists("b:match_words") --- 16,22 ---- set cpo&vim setlocal tabstop=4 shiftwidth=4 expandtab fileencoding=utf-8 ! setlocal suffixesadd=.fal " Matchit support if exists("loaded_matchit") && !exists("b:match_words") *************** *** 36,42 **** " Windows allows you to filter the open file dialog if has("gui_win32") && !exists("b:browsefilter") ! let b:browsefilter = "Falcon Source Files (*.fal *.ftd)\t*.fal;*.ftd\n" . \ "All Files (*.*)\t*.*\n" endif --- 36,42 ---- " Windows allows you to filter the open file dialog if has("gui_win32") && !exists("b:browsefilter") ! let b:browsefilter = "Falcon Source Files (*.fal)\t*.fal\n" . \ "All Files (*.*)\t*.*\n" endif *************** *** 44,47 **** unlet s:cpo_save " vim: set sw=4 sts=4 et tw=80 : - --- 44,46 ----
*** falcon.vim 2011-12-10 14:12:46.218364879 -0500 --- ../../../Downloads/indent/falcon.vim 2011-12-10 14:18:30.023637561 -0500 *************** *** 157,160 **** unlet s:cpo_save " vim: set sw=4 sts=4 et tw=80 : - --- 157,159 ----
