From 5cc61f1b766d0fe3b00e7cbb546ea4125ae12b63 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 17 Feb 2015 09:37:45 +0300 Subject: [PATCH] rename simpledsyntaxhighlighter to shorter name --- dlangide.visualdproj | 2 +- .../d/{simpledsyntaxhighlighter.d => dsyntaxhighlighter.d} | 2 +- src/dlangide/ui/dsourceedit.d | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/dlangide/tools/d/{simpledsyntaxhighlighter.d => dsyntaxhighlighter.d} (99%) diff --git a/dlangide.visualdproj b/dlangide.visualdproj index 08a26d3..5fe24e1 100644 --- a/dlangide.visualdproj +++ b/dlangide.visualdproj @@ -213,7 +213,7 @@ - + diff --git a/src/dlangide/tools/d/simpledsyntaxhighlighter.d b/src/dlangide/tools/d/dsyntaxhighlighter.d similarity index 99% rename from src/dlangide/tools/d/simpledsyntaxhighlighter.d rename to src/dlangide/tools/d/dsyntaxhighlighter.d index 635c76f..f2f2856 100644 --- a/src/dlangide/tools/d/simpledsyntaxhighlighter.d +++ b/src/dlangide/tools/d/dsyntaxhighlighter.d @@ -1,4 +1,4 @@ -module dlangide.tools.d.simpledsyntaxhighlighter; +module dlangide.tools.d.dsyntaxhighlighter; import dlangui.core.logger; import dlangui.widgets.editors; diff --git a/src/dlangide/ui/dsourceedit.d b/src/dlangide/ui/dsourceedit.d index ce53896..fbd85c1 100644 --- a/src/dlangide/ui/dsourceedit.d +++ b/src/dlangide/ui/dsourceedit.d @@ -13,7 +13,7 @@ import ddc.lexer.tokenizer; import dlangide.workspace.workspace; import dlangide.workspace.project; import dlangide.ui.commands; -import dlangide.tools.d.simpledsyntaxhighlighter; +import dlangide.tools.d.dsyntaxhighlighter; import std.algorithm;