Bookmark Studio: evolving bookmarks in Visual Studio

TL;DR · AI 摘要
Visual Studio 推出 Bookmark Studio,增强书签功能,支持分组、搜索和跨会话持久化。
核心要点
- 新书签功能支持命名、分组和颜色标记,提升代码导航效率
- 书签可跨编辑会话保留,并支持全文搜索定位
- 该功能集成于 Visual Studio 2026 预览版,需手动启用实验性标志
Bookmark Studio: evolving bookmarks in Visual Studio - Visual Studio Blog
[Skip to main content](javascript:void(0))

Dev Blogs
Dev Blogs
* Developer
- Microsoft for Developers
- Visual Studio
- Visual Studio Code
- Develop from the cloud
- All things Azure
- Xcode
- DevOps
- Windows Developer
- ISE Developer
- Azure SDK
- Command Line
- Aspire
* Technology
* Languages
* .NET
* Platform Development
- #ifdef Windows
- Microsoft Foundry
- Azure Government
- Azure VM Runtime Team
- Bing Dev Center
- Microsoft Edge Dev
- Microsoft Azure
- Microsoft 365 Developer
- Microsoft Entra Identity Developer
- Old New Thing
- Power Platform
* Data Development
- More
Search Search
- No results
Cancel
- Dev Blogs
- Visual Studio Blog
- Bookmark Studio: evolving bookmarks in Visual Studio
April 1st, 2026
10 reactions
Bookmark Studio: evolving bookmarks in Visual Studio

Principal Product Manager
[Show more](javascript:)
Download Bookmark Studio
Download and install Bookmark Studio in Visual Studio 2026
Bookmarks in Visual Studio have always been a simple, reliable feature. Many developers use them regularly, and over the years we’ve heard consistent feedback from those users. Bookmarks were useful, but there were a few core gaps that kept them from being as effective and relevant as they could be.
Navigation was one of the biggest pain points. You could move between bookmarks, but there was no easy way to jump directly to a specific bookmark using the keyboard. That made bookmarks harder to rely on once you had more than a few. Another common request was sharing. Bookmarks worked well for personal, local navigation, but there was no good way to share them with teammates or reuse them across repos, branches, or pull requests.
That feedback is what led to Bookmark Studio, a new experimental Visual Studio extension that builds on the existing bookmark experience by filling in those missing pieces, without changing how bookmarks fundamentally work.
Faster, more intentional navigation
One of the core additions in Bookmark Studio is slot‑based navigation.
Bookmarks can be assigned to slots 1 through 9 and jumped to directly using simple keyboard shortcuts like Alt+Shift+1 through Alt+Shift+9. This makes bookmarks feel more deliberate and easier to rely on when you want fast access to a handful of important locations.

New bookmarks are automatically assigned the next available slot when possible, so fast navigation often works without any extra setup. Bookmark Studio also integrates with Visual Studio’s existing bookmark commands, which means your current shortcuts and muscle memory continue to work as expected.
A single place to work with bookmarks
Bookmark Studio also adds a dedicated Bookmark Manager tool window.

The manager shows all bookmarks in one place and makes it easy to browse, search, and navigate between them. You can filter by name, file, location, color, or slot, and jump directly to a bookmark with a double‑click or keyboard navigation. It’s designed to make bookmarks easier to revisit, especially when switching context or coming back to code later.
Optional structure, when you need it
Another piece of feedback we heard was the need for just a bit more organization.
With Bookmark Studio, bookmarks can have labels, colors, and folders. None of this is required, and you can keep using bookmarks exactly as you do today. But when you’re debugging, refactoring, reviewing code, or exploring unfamiliar areas of a codebase, that extra context can make bookmarks more useful and easier to reason about.

All bookmark metadata is stored per solution, so it stays with your work across sessions.
Bookmarks you can share and reuse
Bookmarks are often most valuable when they capture intent, not just location.
Bookmark Studio makes it easy to export bookmarks as plain text, Markdown, or CSV. That means you can include bookmarks in pull requests, share investigation paths with teammates, or move useful bookmark sets between repos. Instead of being a purely personal tool, bookmarks can become a lightweight way to communicate context and decisions.
Bookmarks that stay put as code changes
Bookmark Studio tracks bookmarks as text moves during editing, so they stay attached to the relevant code instead of drifting to the wrong line. This makes bookmarks more dependable during active development, especially when files are changing frequently.

A focused improvement, not a reinvention
Bookmark Studio doesn’t try to replace tasks, TODO comments, or issue tracking. It doesn’t introduce a new workflow you have to learn. Instead, it fills in the gaps that many bookmark users have pointed out over time, making bookmarks easier to navigate, easier to share, and more useful as part of everyday development.
If you already use bookmarks in Visual Studio, Bookmark Studio should feel familiar within minutes. And if you’ve ever wished bookmarks could do just a little more, this extension is worth a look.
You can download Bookmark Studio today from the Visual Studio Marketplace. As always, feedback and pull requests are welcome on the GitHub repo.
[10](https://devblogs.microsoft.com/visualstudio/wp-login.php?redirect_to=https%3A%2F%2Fdevblogs.microsoft.com%2Fvisualstudio%2Fbookmark-studio-evolving-bookmarks-in-visual-studio%2F "Sign in to react")
[7](http://devblogs.microsoft.com/visualstudio/bookmark-studio-evolving-bookmarks-in-visual-studio/#comments "Go to comments section")
3
- 
- [Share on X](https://twitter.com/intent/tweet?url=https://devblogs.microsoft.com/visualstudio/bookmark-studio-evolving-bookmarks-in-visual-studio/&text=Bookmark%20Studio:%20evolving%20bookmarks%20in%20Visual%20Studio "Share on X")
- 
Category
Topics
Share
- [](https://www.facebook.com/sharer/sharer.php?u=https://devblogs.microsoft.com/visualstudio/bookmark-studio-evolving-bookmarks-in-visual-studio/)
- [](https://twitter.com/intent/tweet?url=https://devblogs.microsoft.com/visualstudio/bookmark-studio-evolving-bookmarks-in-visual-studio/&text=Bookmark%20Studio:%20evolving%20bookmarks%20in%20Visual%20Studio)
- [](https://www.linkedin.com/shareArticle?mini=true&url=https://devblogs.microsoft.com/visualstudio/bookmark-studio-evolving-bookmarks-in-visual-studio/)
Author

Principal Product Manager
Mads Kristensen is a Principal Product Manager at Microsoft, working to enhance productivity and usability in Visual Studio. He’s behind popular extensions like Web Essentials and File Nesting and is active in the open-source community. A frequent speaker, Mads is dedicated to making Visual Studio the most enjoyable IDE for developers.
7 comments
Join the discussion.
[Leave a comment](javascript:void(0) "Leave a comment")[Cancel reply](http://devblogs.microsoft.com/visualstudio/bookmark-studio-evolving-bookmarks-in-visual-studio/#respond)
Sort by :
Newest
[Newest](javascript:void(0))[Popular](javascript:void(0))[Oldest](javascript:void(0))
Benjamin Autran 2 hours ago 0 Collapse this comment Copy link Sounds good, and congrats !
I use bookmarks in my development, but one of the major drawbacks is that when you create a new branch of a project, you lose these bookmarks, and there’s no import or export option (which is useful if you want to have them on another machine).
Does this tool handle that? Log in to Vote or Reply
Raj Shah
5 days ago 0 Collapse this comment Copy link This looks awesome – reminds me of vim marks. Any plans to incorporate into mainline VS eventually? Log in to Vote or ReplyJacob Stamm 1 week ago 0 Collapse this comment Copy link In addition to being useful, this looks like a good reference extension to refer to while I’m learning extension development. Mads, do you know if it’s yet possible to have a native search bar control in a VisualStudio.Extensibility tool window, or is VSSDK’s
ToolWindowPane.SearchEnabledstill the only way? Log in to Vote or Reply
Mads Kristensen 1 week ago · Edited 1 Collapse this comment Copy link It is still only possible using ToolWindowPane.SearchEnabledLog in to Vote or Reply
Reza Niroomand April 2, 2026 1 Collapse this comment Copy link This is a great example of how UX improvements can make a feature so much better. I haven’t been using Bookmarks that much to be honest, but I think we this improvement it will become one of my favs. 👍 Log in to Vote or Reply
Mads Kristensen April 1, 2026 3 Collapse this comment Copy link That’s a fanatic idea. I’ll add that Log in to Vote or ReplyDavid Lowndes April 1, 2026 2 Collapse this comment Copy link Nice one Mads.
The “Always prompt for name” option satisfies my use case of wanting to add notes to a bookmark when I find issues to investigate when debugging. If the item in the Bookmark Manager pane could be selected/highlighted when you move to the next/prev bookmark, that’d be nice to have. Log in to Vote or Reply
Read next
April 7, 2026
[Take full control of your floating windows in Visual Studio](https://devblogs.microsoft.com/visualstudio/take-full-control-of-your-floating-windows-in-visual-studio/)

Mads Kristensen
April 15, 2026
[Stop Hunting Bugs: Meet the New Visual Studio Debugger Agent](https://devblogs.microsoft.com/visualstudio/stop-hunting-bugs-meet-the-new-visual-studio-debugger-agent/)

Harshada Hole
Stay informed
Get notified when new posts are published.
Email *
Country/Region *
I would like to receive the Visual Studio Blog Newsletter. Privacy Statement.
Subscribe
Follow this blog
- 
- [](https://twitter.com/VisualStudio "twitter")
- 
- 
- 
- 
- [](https://devblogs.microsoft.com/visualstudio/feed/ "RSS Feed")
Are you sure you wish to delete this comment?
OK Cancel
Theme
Insert/edit link
Close
Enter the destination URL
URL
Link Text
- [x] Open link in a new tab
Or link to existing content
Search
_No search term specified. Showing recent items._ _Search or use up and down arrow keys to select an item._
Cancel
##### Code Block
×
Paste your code snippet
Ok Cancel
What's new
- Surface Pro
- Surface Laptop
- Surface Laptop Studio 2
- Copilot for organizations
- Copilot for personal use
- AI in Windows
- Explore Microsoft products
- Windows 11 apps
Microsoft Store
- Account profile
- Download Center
- Microsoft Store support
- Returns
- Order tracking
- Certified Refurbished
- Microsoft Store Promise
- Flexible Payments
Education
- Microsoft in education
- Devices for education
- Microsoft Teams for Education
- Microsoft 365 Education
- How to buy for your school
- Educator training and development
- Deals for students and parents
- AI for education
Business
- Microsoft AI
- Microsoft Security
- Dynamics 365
- Microsoft 365
- Microsoft Power Platform
- Microsoft Teams
- Microsoft 365 Copilot
- Small Business
Developer & IT
- Azure
- Microsoft Developer
- Microsoft Learn
- Support for AI marketplace apps
- Microsoft Tech Community
- Microsoft Marketplace
- Marketplace Rewards
- Visual Studio
Company
- Careers
- About Microsoft
- Company news
- Privacy at Microsoft
- Investors
- Diversity and inclusion
- Accessibility
- Sustainability
Your Privacy ChoicesConsumer Health Privacy
- Sitemap
- Contact Microsoft
- Privacy
- Manage cookies
- Terms of use
- Trademarks
- Safety & eco
- Recycling
- About our ads
- © Microsoft 2026
[](http://devblogs.microsoft.com/visualstudio/bookmark-studio-evolving-bookmarks-in-visual-studio/#page "Back to top")