Excluding Text Lines In Visual Studio | CodeGuru

Excluding Text Lines In Visual Studio

Environment: Visual Studio Description: Computers used to work primarily in text mode on screens of 25 rows of 80 columns. In those days it was common for text editors to allow you to exclude groups of lines so that you instead only saw a single special line representing the fact that lines were being hidden […]

Written By
CodeGuru Staff
CodeGuru Staff
Sep 25, 2001
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: Visual Studio

Description:

Computers used to work primarily in text mode on screens of 25 rows of 80 columns. In those days it was common for text editors to allow you to exclude groups of lines so that you instead only saw a single special line representing the fact that lines were being hidden from view. Although displays now allow far more than 25 lines, it is still of use to exclude lines that are otherwise in the way. For example, if you are doing a file conversion it might be convenient to hide from view those portions you have already modified.

The simple VBScript macro below provides this feature that lacks native support within Visual Studio. I won’t argue that this is an ideal implementation but it ought to work in general. To implement it, unzip exclude.dsm from the attached zip file to some place on your computer. Next, do the following:

  1. Unzip exclude.dsm from the zip file below
  2. Within Visual Studio click on Tools/Customize…/Add-ins and Macro Files
  3. Browse and select the exclude.dsm file
  4. Check the box to the left of exclude.dsm in order to enable it

If you’d like to assign keys to these functions:

  1. Click on Tools/Customize…/Keyboard/Category/Macros
  2. Select exclude then assign something to it such as Alt+X
  3. Select unexclude then assign something to it such as Alt+U

How it works:

When you select some lines then perform an exclude it cuts those lines and pastes them into a file named excludes.txt that is placed next to msdev.exe (if you don’t like this location then simply modify the GetExcludeFileName function so that it instead returns where that file ought to be located). Unexclude works in reverse. When you perform an exclude it creates a special line that it puts in place of the removed lines that looks like this:

<===== Excluded Lines=5 Date=9/6/01 Time=1:31:51 PM =====>

This signature is used during an unexclude operation. You must place the cursor on that line when you want to perform an unexclude to bring the lines back.

Limitations and improvements:

You mustn’t exclude two groups of lines within the same second, not that I believe that is possible.

If you have an improvement please let me know!

Downloads

Download source – 1.25 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.