mirror of https://github.com/buggins/dlangide.git
possible fix for issue #221
This commit is contained in:
parent
cf63a63ae9
commit
c1b5a014b4
|
@ -34,14 +34,14 @@ class DefaultEditorTool : EditorTool
|
|||
}
|
||||
|
||||
override void goToDefinition(DSourceEdit editor, TextPosition caretPosition) {
|
||||
assert(0); //Go To Definition should not be called for normal files.
|
||||
//assert(0); //Go To Definition should not be called for normal files.
|
||||
}
|
||||
|
||||
override void getCompletions(DSourceEdit editor, TextPosition caretPosition, void delegate(dstring[] labels, string[] icons) callback) {
|
||||
assert(0);
|
||||
//assert(0);
|
||||
}
|
||||
|
||||
override void getDocComments(DSourceEdit editor, TextPosition caretPosition, void delegate(string[]) callback) {
|
||||
assert(0);
|
||||
//assert(0);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -444,7 +444,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
|||
}
|
||||
applySettings(editor, settings);
|
||||
_tabs.selectTab(index, true);
|
||||
if( filename.endsWith(".d") )
|
||||
if( filename.endsWith(".d") || filename.endsWith(".di") )
|
||||
editor.editorTool = new DEditorTool(this);
|
||||
else
|
||||
editor.editorTool = new DefaultEditorTool(this);
|
||||
|
|
Loading…
Reference in New Issue