https://wiki.beyondunreal.com/w/index.php?action=history&feed=atom
Category:Text editor - Revision history
2017-11-18T07:23:19Z
Revision history for this page on the wiki
MediaWiki 1.25.1
https://wiki.beyondunreal.com/Category:Text_editor?diff=45398&oldid=prev
Wormbo: are you kidding me? (replaced with actually meaningful content)
2013-05-09T07:43:12Z
<p>are you kidding me? (replaced with actually meaningful content)</p>
<a href="https://wiki.beyondunreal.com/Category:Text_editor?diff=45398&oldid=45397">Show changes</a>
Wormbo
https://wiki.beyondunreal.com/Category:Text_editor?diff=45397&oldid=prev
74.248.49.241: Created page with '// Language name (user language name) Language: UnrealScript // default file filter // note: if more than one extension is associated, eg: // C/C++ files (*.c,*.cpp,…'
2013-05-09T01:10:38Z
<p>Created page with '// Language name (user language name) Language: UnrealScript // default file filter // note: if more than one extension is associated, eg: // C/C++ files (*.c,*.cpp,…'</p>
<p><b>New page</b></p><div>// Language name (user language name)<br />
Language: UnrealScript<br />
<br />
// default file filter<br />
// note: if more than one extension is associated, eg:<br />
// C/C++ files (*.c,*.cpp,*.h,*.hpp)|*.c;*.cpp;*.h;*.hpp<br />
Filter: UnrealScript (*.uc)|*.uc<br />
<br />
// help file which will be invokend when F1 is pressed<br />
HelpFile:<br />
<br />
// language case sensitivity<br />
// 0 - no<br />
// 1 - yes<br />
CaseSensitive: 0<br />
<br />
// comment type:<br />
// LineComment - comment to the end of line<br />
// BlockCommentBeg - block comment begin, it could be multiline<br />
// BlockCommentEnd - block comment end<br />
LineComment: //<br />
BlockCommentBeg: /*<br />
BlockCommentEnd: */<br />
<br />
// identifier characters<br />
// note: characters shouldn't be delimited, except arrays<br />
// array of chars could be defined as from_char..to_char<br />
// IdentifierBegChar - Identifier begin characters<br />
IdentifierBegChars: a..z A..Z _<br />
IdentifierChars: a..z A..Z _ 0..9<br />
<br />
// numeric constants begin characters<br />
// note: characters shouldn't be delimited, except arrays<br />
// array of chars could be defined as from_char..to_char<br />
// number always starts with 0..9 except when NumConstBeg<br />
// defines other<br />
NumConstBegChars: 0..9<br />
<br />
// numeric constants characters<br />
// note: characters shouldn't be delimited, except arrays<br />
// array of chars could be defined as from_char..to_char<br />
// number always starts with 0..9 except when NumConstBeg<br />
// defines other<br />
NumConstChars: 0..9 .abcdefhABCDEFH<br />
<br />
// escape character<br />
EscapeChar: \<br />
<br />
// keyword table<br />
// note: delimited with spaces, lines could be wrapped<br />
// you may divide keywords into three groups which can be<br />
// highlighted differently<br />
KeyWords1:<br />
<br />
abstract<br />
archetype<br />
array<br />
arraycount<br />
assert<br />
auto<br />
autoexpandcategories<br />
automated<br />
bool<br />
break<br />
byte<br />
cacheexempt<br />
case<br />
class<br />
client<br />
coerce<br />
collapsecategories<br />
config<br />
const<br />
continue<br />
cpptext<br />
databinding<br />
default<br />
defaultproperties<br />
delegate<br />
demorecording<br />
dependson<br />
deprecated<br />
do<br />
dontcollapsecategories<br />
duplicatetransient<br />
edfindable<br />
editconst<br />
editconstarray<br />
editfixedsize<br />
editinline<br />
editinlinenew<br />
editinlinenotify<br />
editinlineuse<br />
editoronly<br />
else<br />
enum<br />
enumcount<br />
event<br />
exec<br />
expands<br />
export<br />
exportstructs<br />
extends<br />
false<br />
final<br />
float<br />
for<br />
foreach<br />
function<br />
global<br />
globalconfig<br />
goto<br />
guid<br />
hidecategories<br />
hidedropdown<br />
if<br />
ignores<br />
immutable<br />
immutablewhencooked<br />
implements<br />
inherits<br />
init<br />
input<br />
insert<br />
instanced<br />
int<br />
interp<br />
intrinsic<br />
iterator<br />
latent<br />
length<br />
local<br />
localized<br />
name<br />
native<br />
nativereplication<br />
new<br />
noclear<br />
noexport<br />
noexportheader<br />
noimport<br />
none<br />
nontransactional<br />
nontransient<br />
noteditinlinenew<br />
notforconsole<br />
notplaceable<br />
nousercreate<br />
operator<br />
optional<br />
out<br />
parseconfig<br />
perobjectconfig<br />
placeable<br />
pointer<br />
postoperator<br />
preoperator<br />
private<br />
protected<br />
public<br />
reliable<br />
remove<br />
replication<br />
repnotify<br />
return<br />
rng<br />
rot<br />
safereplace<br />
self<br />
server<br />
showcategories<br />
simulated<br />
singular<br />
skip<br />
state<br />
static<br />
stop<br />
string<br />
struct<br />
structcpptext<br />
structdefaultproperties<br />
super<br />
switch<br />
then<br />
transient<br />
travel<br />
true<br />
unreliable<br />
until<br />
var<br />
vect<br />
virtual<br />
while<br />
within<br />
<br />
<br />
//KeyWords2:<br />
//KeyWords3:<br />
<br />
// string delimiter:<br />
// StringBegChar - string begin char<br />
// StringEndChar - string end char<br />
// MultilineStrings - enables multiline strings,<br />
// as perl has it<br />
StringBegChar: "<br />
StringEndChar: "<br />
MultilineStrings: 0<br />
<br />
// use preprocessor:<br />
// 0 - no<br />
// 1 - yes<br />
// note: if yes, '#' and statements after it will be<br />
// highlighted with Preprocessor defined colors<br />
UsePreprocessor: 1<br />
<br />
// highlight line:<br />
// 0 - no<br />
// 1 - yes<br />
// note: if yes, current line will be highlighted<br />
CurrLineHighlighted: 0<br />
<br />
// colors<br />
// note: first value is foreground, second is<br />
// background color<br />
// and third (optional) is font attribute:<br />
// B - bold<br />
// I - italic<br />
// U - underline<br />
// S - strike out<br />
// attributes can be combined: eg. B or BI<br />
// as value, it could be used any standard<br />
// windows color:<br />
// clBlack, clMaroon, clGreen, clOlive,<br />
// clNavy, clPurple, clTeal, clGray,<br />
// clSilver, clRed, clLime, clYellow,<br />
// clBlue, clFuchsia, clAqua, clLtGray,<br />
// clDkGray, clWhite, clScrollBar,<br />
// clBackground, clActiveCaption,<br />
// clInactiveCaption, clMenu, clWindow,<br />
// clWindowFrame, clMenuText, clWindowText,<br />
// clCaptionText, clActiveBorder,<br />
// clInactiveBorder, clAppWorkSpace,<br />
// clHighlight, clHighlightText, clBtnFace,<br />
// clBtnShadow, clGrayText, lBtnText,<br />
// clInactiveCaptionText, clBtnHighlight,<br />
// cl3DDkShadow, cl3DLight, clInfoText,<br />
// clInfoBk<br />
// as value, it could be used hex numeric<br />
// constant too:<br />
// $BBGGRR - BB: blue, GG: green, RR: red,<br />
// eg: $FF6A00<br />
SpaceCol: clWindowText clWindow<br />
Keyword1Col: clBlue clWindow B<br />
Keyword2Col: clPurple clWindow<br />
Keyword3Col: $004080FF clWindow<br />
IdentifierCol: clWindowText clWindow<br />
CommentCol: clGreen clWindow<br />
NumberCol: clFuchsia clWindow<br />
StringCol: clFuchsia clWindow<br />
SymbolCol: clBlack clWindow<br />
PreprocessorCol: $0000C000 clWindow I<br />
SelectionCol: clWhite clNavy<br />
<br />
// If CurrLineHighlighted: 1<br />
CurrentLineCol: clBlack clYellow<br />
<br />
OverrideTxtFgColor: 0<br />
BlockAutoindent: 1<br />
BlockBegStr: {<br />
BlockEndStr: }<br />
MatchedBracesCol: clRed clWindow<br />
Keyword4Col: clWindowText clWindow<br />
Keyword5Col: clWindowText clWindow</div>
74.248.49.241