1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 09:55:29 +02:00

Bug 172331 - Keyboard shortcuts don't work in Makefile Editor, patch by Olexiy Buyanskyy

This commit is contained in:
Anton Leherbauer 2008-12-18 13:39:50 +00:00
parent 14790ea880
commit 2529e886bb

View file

@ -424,4 +424,13 @@ public class MakefileEditor extends TextEditor implements ISelectionChangedListe
// see http://bugs.eclipse.org/186106
return false;
}
/*
* @see org.eclipse.ui.editors.text.TextEditor#initializeKeyBindingScopes()
* @see http://bugs.eclipse.org/172331
*/
protected void initializeKeyBindingScopes() {
setKeyBindingScopes(new String [] { "org.eclipse.cdt.make.ui.makefileEditorScope" } ); //$NON-NLS-1$
}
}