diff options
Diffstat (limited to 'mnv/runtime/ftplugin/pyrex.mnv')
| -rw-r--r-- | mnv/runtime/ftplugin/pyrex.mnv | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/mnv/runtime/ftplugin/pyrex.mnv b/mnv/runtime/ftplugin/pyrex.mnv new file mode 100644 index 0000000000..21e6acb45c --- /dev/null +++ b/mnv/runtime/ftplugin/pyrex.mnv @@ -0,0 +1,32 @@ +" MNV filetype plugin file +" Language: Pyrex +" Maintainer: Marco Barisione <marco.bari@people.it> +" URL: http://marcobari.altervista.org/pyrex_mnv.html +" Last Change: 2012 May 18 +" 2024 Jan 14 by MNV Project (browsefilter) + +" Only do this when not done yet for this buffer +if exists("b:did_ftplugin") + finish +endif +let s:keepcpo= &cpo +set cpo&mnv + +" Behaves just like Python +runtime! ftplugin/python.mnv ftplugin/python_*.mnv ftplugin/python/*.mnv + +if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") + let b:browsefilter = "Pyrex files (*.pyx, *.pxd)\t*.pyx;*.pxd\n" . + \ "Python Files (*.py)\t*.py\n" . + \ "C Source Files (*.c)\t*.c\n" . + \ "C Header Files (*.h)\t*.h\n" . + \ "C++ Source Files (*.cpp, *.c++)\t*.cpp;*.c++\n" + if has("win32") + let b:browsefilter .= "All Files (*.*)\t*\n" + else + let b:browsefilter .= "All Files (*)\t*\n" + endif +endif + +let &cpo = s:keepcpo +unlet s:keepcpo |
