Mercurial > vim
view runtime/ftplugin/routeros.vim @ 34072:6d9e20b403e8 v9.1.0005
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Commit: https://github.com/vim/vim/commit/4d8cb683b1543ec02563cdd2d068ce5f82f90539
Author: Zoltan Arpadffy <zoltan.arpadffy@gmail.com>
Date: Thu Jan 4 21:01:13 2024 +0100
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Problem: OpenVMS build does not support python3 and xterm_save
Solution: Enable python3 + xterm_save feature, fix style issues
(Zoltan Arpadffy)
closes: #13812
Signed-off-by: Zoltan Arpadffy <zoltan.arpadffy@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 04 Jan 2024 21:15:05 +0100 |
parents | 624439a39432 |
children | 8ae680be2a51 |
line wrap: on
line source
" Vim filetype plugin file " Language: MikroTik RouterOS Script " Maintainer: zainin <z@wintr.dev> " Last Change: 2021 Nov 14 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:save_cpo = &cpo set cpo-=C setlocal comments=:# setlocal commentstring=#\ %s setlocal formatoptions-=t formatoptions+=croql let b:undo_ftplugin = "setlocal com< cms< fo<" if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") let b:browsefilter = "RouterOS Script Files (*.rsc)\t*.rsc\n" .. \ "All Files (*.*)\t*.*\n" let b:undo_ftplugin ..= " | unlet! b:browsefilter" endif let &cpo = s:save_cpo unlet! s:save_cpo " vim: nowrap sw=2 sts=2 ts=8 noet: