Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[Dltk-dev] about bug 310761---content assist is disabled when use Mylyn task

When user activates a Mylyn task at the first time

the following code in DLTKUiBridgePlugin.start will be called

            // try installing Task-Focused content assist twice
            new UIJob("Initialize Content Assist") { //$NON-NLS-1$
                @Override
                public IStatus runInUIThread(IProgressMonitor monitor) {
                    IPreferenceStore store = DLTKUIPlugin.getDefault().getPreferenceStore();
                    DLTKUiUtil.installContentAssist(store, true);
                    return Status.OK_STATUS;
                }
            }.schedule();

and then the DLTK content assist will be disabled(forever?),so I want to know how to enable the CA except remove content_assist_disabled_computers=org.eclipse.dltk.ui.scriptNoTypeProposalCategory\u0000org.eclipse.dltk.ui.defaultProposalCategory\u0000org.eclipse.dltk.ui.scriptTypeProposalCategory\u0000 manually.This is a critical issue for PDT user,thanks very much!

--

Thanks!

Best Regards!

Zhao

Back to the top