Skip to content

Latest commit

 

History

History

Highlight_Word

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Highlight Word Sample

Highlight any words that match the word currently under the text caret in Visual Studio.

  • Technologies: Visual Studio 2015 SDK
  • Topics: Visual Studio Editor, VSX

Description

This Visual Studio 2015 sample extension uses tagging and adornments to highlight all occurences of the word currently under the caret.

image

Requirements

Visual Studio 2015

Get all samples

Clone the repo (How to):

git clone https://github.com/Microsoft/VSSDK-Extensibility-Samples.git

Run the sample

  1. To run the sample, hit F5 or choose the Debug > Start Debugging menu command. A new experimental instance of Visual Studio will launch.
  2. Once loaded, open any file in the Editor window.
  3. Place the text caret on a word that appears multiple times in the text file. The word and all other instances of that word will be highlighted blue

Project Files

  • AssemblyInfo.cs

This file contains assembly custom attributes.

  • HighlightWordTagger.cs

This file provides the tagger class that will highlight the word under the text caret and any additional instances.

  • HighlightWordTaggerProvider.cs

This file is called by Visual Studio to generate the tagger

Functional Tests

  • Verify the sample builds in all configurations
  • Verify that the sample was registered. The About box should list the product as installed
  • Verify that the tagger highlights any additional instances of the currently highlighted word

Related topics