Changeset 387
- Timestamp:
- 03/19/11 01:43:04 (1 year ago)
- Files:
-
- tools/scite4d/SciTEGlobal.properties (modified) (1 diff)
- tools/scite4d/d.keywords.properties (modified) (1 diff)
- tools/scite4d/d.properties (modified) (1 diff)
- tools/scite4d/ybud.d (modified) (2 diffs)
- tools/scite4d/ybud.exe (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/scite4d/SciTEGlobal.properties
r348 r387 5 5 code.page=65001 6 6 output.code.page=65001 7 eol.mode=LF 7 8 buffers=50 8 9 source.files=*.api;*.asm;*.c;*.cc;*.cpp;*.cxx;*.cs;*.h;*.hh;*.hxx;*.hpp;\ tools/scite4d/d.keywords.properties
r44 r387 3 3 catch cdouble cent cfloat char class const continue creal dchar debug default delegate \ 4 4 delete deprecated do double else enum export extern false final finally float for foreach \ 5 foreach_reverse function goto idouble if ifloat import i n inout int interface invariant ireal \5 foreach_reverse function goto idouble if ifloat import immutable in inout int interface invariant ireal \ 6 6 is lazy long macro mixin module new null out override package pragma private protected public \ 7 real ref return scope short s tatic struct super switch synchronized template this throw true try \7 real ref return scope short size_t static struct super switch synchronized template this throw true try \ 8 8 typedef typeid typeof ubyte ucent uint ulong union unittest ushort version void volatile wchar while with 9 9 tools/scite4d/d.properties
r348 r387 182 182 braces.d.style=13 183 183 184 # 20110319 185 eol.mode=LF 184 186 tools/scite4d/ybud.d
r380 r387 13 13 14 14 Authors: yidabu ( D China : http://www.d-programming-language-china.org/ ) 15 History: 16 version 0.18, updated autocomplete for dwt2, tango 0.99.8 17 version 0.19 updated autocomplete for dwt2 tango 0.99.9, DWin 0.40, run postbuild.sh when exists with makefile 15 18 16 19 *******************************************************************************/ 17 20 18 // version 0.18, updated autocomplete for dwt2, tango 0.99.8 19 // version 0.19 updated autocomplete for dwt2 tango 0.99.9, DWin 0.40, run postbuild.sh when exists with makefile 21 20 22 21 23 module ybud; … … 260 262 break; 261 263 } 264 if(Path.exists(exeDir() ~ mingwMake)) 265 mingwMake = exeDir() ~ mingwMake; 262 266 char[] command = mingwMake ~ " -f " ~ makefilePath.toString; 263 267 Stdout.formatln("command: {}", command);
