Re: [patch][bugfix] ftplugin/python.vim

2013-11-28 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: Hi Christian, 2013/11/27(Wed) 0:10:35 UTC+9 Christian Brabandt: I don't have anything to contribute except for this part of the patch: +if has(gui_win32) !exists(b:browsefilter) +let b:browsefilter = Python Files (*.py)\t*.py\n . +

Re: [patch][bugfix] ftplugin/python.vim

2013-11-28 Fir de Conversatie h_east
Hi Bram, 2013/11/28(Thu) 20:46:55 UTC+9 Bram Moolenaar: Hirohito Higashi wrote: Hi Christian, 2013/11/27(Wed) 0:10:35 UTC+9 Christian Brabandt: I don't have anything to contribute except for this part of the patch: +if has(gui_win32)

[patch][bugfix] ftplugin/python.vim

2013-11-26 Fir de Conversatie h_east
Hi Johannes and Bram, I received a bug report from Masami Hirata. runtime/ftplugin/python.vim has two problrems. #1. if exists('*SIDPython_jump') | finish | endif Line 29 or later is script-local scope. But exists buffer-local processing. It's from line 43 to line 62. How to reproduce. 1. New

Re: [patch][bugfix] ftplugin/python.vim

2013-11-26 Fir de Conversatie Christian Brabandt
I don't have anything to contribute except for this part of the patch: +if has(gui_win32) !exists(b:browsefilter) +let b:browsefilter = Python Files (*.py)\t*.py\n . +\ All Files (*.*)\t*.*\n +endif BTW: b:browsefilter is also supported by the GTK Gui. You

Re: [patch][bugfix] ftplugin/python.vim

2013-11-26 Fir de Conversatie h_east
Hi Christian, 2013/11/27(Wed) 0:10:35 UTC+9 Christian Brabandt: I don't have anything to contribute except for this part of the patch: +if has(gui_win32) !exists(b:browsefilter) +let b:browsefilter = Python Files (*.py)\t*.py\n . +\ All Files