xref: /vim-8.2.3635/runtime/ftplugin/pyrex.vim (revision cb03397a)
1" Vim filetype plugin file
2" Language:	Pyrex
3" Maintainer:	Marco Barisione <[email protected]>
4" URL:		http://marcobari.altervista.org/pyrex_vim.html
5" Last Change:	2012 May 18
6
7" Only do this when not done yet for this buffer
8if exists("b:did_ftplugin")
9  finish
10endif
11let s:keepcpo= &cpo
12set cpo&vim
13
14" Behaves just like Python
15runtime! ftplugin/python.vim ftplugin/python_*.vim ftplugin/python/*.vim
16
17if has("gui_win32") && exists("b:browsefilter")
18    let  b:browsefilter = "Pyrex files (*.pyx,*.pxd)\t*.pyx;*.pxd\n" .
19			\ "Python Files (*.py)\t*.py\n" .
20			\ "C Source Files (*.c)\t*.c\n" .
21			\ "C Header Files (*.h)\t*.h\n" .
22			\ "C++ Source Files (*.cpp *.c++)\t*.cpp;*.c++\n" .
23			\ "All Files (*.*)\t*.*\n"
24endif
25
26let &cpo = s:keepcpo
27unlet s:keepcpo
28