1

I want to customize the way the text is rendered in Microsoft's Visual Studio text viewer. The goal is to implement my own complicated algorithm for whitespace handling.

Note: I've already written "add-ins" to automate some tasks (include guards, copyright insertion in the file's header etc...). However, as far as I understand, "add-ins" cannot be used to override the kind of functionality I need.

Is it possible to override the default text rendering? If yes, where do I start?

(Visual studio 2005 is preferred.)

Peter O.
  • 32,158
  • 14
  • 82
  • 96
Yakov Galka
  • 70,775
  • 16
  • 139
  • 220

1 Answers1

2

You should look at Visual Studio language services. Try Language Services on MSDN

Jackdaw
  • 7,626
  • 5
  • 15
  • 33
Chris Spicer
  • 2,144
  • 1
  • 13
  • 22