Skip to content

Instantly share code, notes, and snippets.

@probablycorey
Created October 25, 2010 01:25
Show Gist options
  • Select an option

  • Save probablycorey/644248 to your computer and use it in GitHub Desktop.

Select an option

Save probablycorey/644248 to your computer and use it in GitHub Desktop.
# text_view is a NSTextView
text_view.insertText("0123456789")
atts = {NSBackgroundColorAttributeName => NSColor.redColor}
range = NSRange.new(0, 5)
text_view.textStorage.setAttributes(attrs, range:range)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment