Eric Van Dewoestine
Eric Van Dewoestine
It was added about a month ago: ervandew/supertab@7ee7f774dd1288ea2e7c57b63cb069a07d425ca0
Yes, for cases where the plugin is able to, feedkeys is handy, but in this case vim is modifying the defined mapping even after it has been defined, so I...
Unless you've configured it otherwise, supertab defaults to keyword completion. If you want to complete file/directory names then you have to kick off file completion: ctrl-x + ctrl-f Once you've...
The issue with gnu screen is that I think the only way to reliably target a window is by its name, so when invoking `:ScreenShell`, that command will set the...
If you want to use tmux, you can set the following in your vimrc: ``` let g:ScreenImpl = 'Tmux' ``` Tmux should work better in this regard.
You don't have to start tmux first, but if your are in an existing gnu screen session, I don't think screen.vim will work correctly attempting to run `ScreenShell` with `g:ScreenImpl`...
Does the following path exist? /home/bigfoot/.eclipse/org.eclipse.platform_4.7.3_155965261_linux_gtk_x86_64/plugins/org.eclim_2.7.2 Are there any files in it? $ ls /home/bigfoot/.eclipse/org.eclipse.platform_4.7.3_155965261_linux_gtk_x86_64/plugins/org.eclim_2.7.2
Interesting that `org.eclim.wst_2.7.2` is in there. How about the following: $ ls /home/bigfoot/.eclipse/org.eclipse.platform_4.7.3_155965261_linux_gtk_x86_64/features Did you have eclim installed in the past or is this your first attempt?
> I specified `--plugins=jdt,wst`, so I suppose it's normal ? No, you should still have several plugins: `org.eclim`, `org.eclim.core`, `org.eclim.jdt`, and `org.eclim.wst` The fact that you only have the last...
Eclipse is probably in some invalid state. You can try opening the eclipse gui then going to: Help (menu) > About Eclipse IDE (menu) > Installation Details (button) > Installed...