|
From: Sebastian M. <seb...@un...> - 2007-04-03 12:58:18
|
Am Montag, den 02.04.2007, 14:21 -0400 schrieb David Fishburn: > I had someone send me a vim.exe that they compiled for cygwin. There is a precompiled version in the cygwin setup.exe vimplugin is set up to use that at the default location. If you compile your own or have it at another location, you have to set it in the preferences. > If I change the path to something that will not work and restart Eclipse the > editor Window is gray with a message: > Unable to create this part due to an internal error. Reason for the failure: > An unexpected exception was thrown. > java.lang.NullPointerException > at org.vim.vimplugin.editors.VimEditor.sendCmd(VimEditor.java:169) This is a true bug: It happens if the vim binary cannot be found, but the plugin continues anyway sending commands to "null.stdin" . The exception should be caught and an Error message should popup. Anyone? > Anything I can do for you? Catch the exception, and let a popup appear with the error message ( method showMessage ). See http://vimplugin.sourceforge.net/wiki/pmwiki.php?n=Community.GettingStarted for howto get started ... Thanks alot, Sebastian. |