Module: Rubymine2Xcode

Defined in:
lib/rubymine2xcode-theme.rb,
lib/rubymine2xcode-theme/xcode.rb,
lib/rubymine2xcode-theme/version.rb,
lib/rubymine2xcode-theme/rubymine.rb

Defined Under Namespace

Modules: ColourConversion Classes: Converter, RubymineTheme, XcodeTheme

Constant Summary collapse

XCODE_STYLES_1 =

these ones exist in the root of the plist file

%w{
  DVTConsoleDebuggerInputTextColor
  DVTConsoleDebuggerInputTextFont
  DVTConsoleDebuggerOutputTextColor
  DVTConsoleDebuggerOutputTextFont
  DVTConsoleDebuggerPromptTextColor
  DVTConsoleDebuggerPromptTextFont
  DVTConsoleExectuableInputTextColor
  DVTConsoleExectuableInputTextFont
  DVTConsoleExectuableOutputTextColor
  DVTConsoleExectuableOutputTextFont
  DVTConsoleTextBackgroundColor
  DVTConsoleTextInsertionPointColor
  DVTConsoleTextSelectionColor
  DVTDebuggerInstructionPointerColor
  DVTSourceTextBackground
  DVTSourceTextBlockDimBackgroundColor
  DVTSourceTextInsertionPointColor
  DVTSourceTextInvisiblesColor
  DVTSourceTextSelectionColor
  DVTSourceTextSyntaxColors
  DVTSourceTextSyntaxFonts
}
XCODE_STYLES_2 =

these ones have a colour entry under ‘DVTSourceTextSyntaxColors’ and a font entry under ‘DVTSourceTextSyntaxFonts’

%w{
  xcode.syntax.attribute
  xcode.syntax.character
  xcode.syntax.comment
  xcode.syntax.comment.doc
  xcode.syntax.comment.doc.keyword
  xcode.syntax.identifier.class
  xcode.syntax.identifier.class.system
  xcode.syntax.identifier.constant
  xcode.syntax.identifier.constant.system
  xcode.syntax.identifier.function
  xcode.syntax.identifier.function.system
  xcode.syntax.identifier.macro
  xcode.syntax.identifier.macro.system
  xcode.syntax.identifier.type
  xcode.syntax.identifier.type.system
  xcode.syntax.identifier.variable
  xcode.syntax.identifier.variable.system
  xcode.syntax.keyword
  xcode.syntax.number
  xcode.syntax.plain
  xcode.syntax.preprocessor
  xcode.syntax.string
  xcode.syntax.url
}
VERSION =
"0.0.2"