set nocompatible
syntax on
" Only do this part when compiled with support for autocommands."
if has("autocmd")
" Use filetype detection and file-based automatic indenting."
filetype plugin indent on
" Use actual tab chars in Makefiles."
autocmd FileType make set tabstop=4 shiftwidth=4 softtabstop=0 noexpandtab
endif
" For everything else, use a tab width of 2 space chars."
set tabstop=2 " The width of a TAB is set to 2. Still it is a \t. It is just that Vim will interpret it to be having a width of 2."
set shiftwidth=2 " Indents with '>' will have a width of 2."
set softtabstop=2 " Sets the number of columns for a TAB."
set expandtab " Expand TABs to 2 spaces."
Problem: After restarting Eclipse, it crashes immediately and asks me to check C:\Users\username\Adobe Flash Builder 4.6\.metadata\.log In log it shows following error: !ENTRY org.eclipse.osgi 4 0 2013-02-13 11:53:46.760 !MESSAGE Application error !STACK 1 org.eclipse.swt.SWTError: Cannot initialize Drop at org.eclipse.swt.dnd.DND.error(DND.java:266) at org.eclipse.swt.dnd.DND.error(DND.java:227) at org.eclipse.swt.dnd.DropTarget. (DropTarget.java:142) at org.eclipse.ui.internal.EditorSashContainer.addDropSupport(EditorSashContainer.java:542) at org.eclipse.ui.internal.EditorSashContainer.createControl(EditorSashContainer.java:534) at org.eclipse.ui.internal.EditorAreaHelper. (EditorAreaHelper.java:41) at org.eclipse.ui.internal.WorkbenchPage.init(WorkbenchPage.java:2507) at org.eclipse.ui.internal.WorkbenchPage. (Workbench...
Comments