Is there a 'scratch pad' window in Visual Studio
Asked Answered
C

6

14

I currently use notepad to store little notes to myself about my code. This is usually a mixture of code and requirements.

Is there a 'scratch pad' type window in VS where i could do this.

The other alternative is to use code comment blocks in the source files, but that's not quite what I'm looking for.

Copilot answered 29/10, 2008 at 10:4 Comment(2)
Does this answer your question? VScode equivalent of Jetbrains/IntelliJ/Rubymine scratches (throwaway notes)Staurolite
Answers here are quite outdated, while the [proposed] dupe has a 2021 working one.Staurolite
C
2

I just found that visual studio has support for git style .md or markdown: Screen shot of Visual Studio with .md file open

This provides good way of storing notes, requirements and developer instructions such as a readme.

  • To use: Just add a file to your solution with a .md extension.
Copilot answered 19/2, 2015 at 19:50 Comment(1)
This requires an extension, available here visualstudiogallery.msdn.microsoft.com/…Sago
V
4

Try the sticky notes add in

http://www.davidhayden.com/blog/dave/archive/2008/03/18/VisualStudio2008AddInStickyNotes.aspx

http://code.msdn.microsoft.com/StickyNotes

Valvule answered 29/10, 2008 at 10:7 Comment(1)
Both links are dead now and the addon can't be found in VS marketplace. But found a Scratchpad addon: marketplace.visualstudio.com/…Garwood
S
3

On "Solution Level" you can add files (text, html or code) to act as notes files.

Also in projects, you can add files, and set the Build Action to None.

Squatness answered 29/10, 2008 at 10:6 Comment(0)
C
2

Most of the time I'd simply add a .txt file to the solution or abuse comments to do it. However, if you use the scratch pad to store todo lists et cetera you can use TODO: in your comments and visual studio will add them to the built in todo list.

Carpathoukraine answered 29/10, 2008 at 10:8 Comment(0)
C
2

I just found that visual studio has support for git style .md or markdown: Screen shot of Visual Studio with .md file open

This provides good way of storing notes, requirements and developer instructions such as a readme.

  • To use: Just add a file to your solution with a .md extension.
Copilot answered 19/2, 2015 at 19:50 Comment(1)
This requires an extension, available here visualstudiogallery.msdn.microsoft.com/…Sago
D
1

You can use "Bookmarks" window to scratch some notes regarding different parts of your code: enter image description here

Darb answered 19/1 at 11:25 Comment(0)
C
-1

I think Stick notes wont support VS 2005. Anyway WinDBG rocks.

Couteau answered 19/3, 2009 at 10:59 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.