[Feature request] Support for code sections
See original GitHub issueSee this on RStudio
support for code sections, which is a great way to navigate in script.
# Section One ---------------------------------
# Section Two =================================
### Section Three #############################
Issue Analytics
- State:
- Created 5 years ago
- Comments:14 (9 by maintainers)
Top Results From Across the Web
3 ways to manage software feature request - Amoeboids
The best way to keep feature requests in one place is to set up a centralized repository. Whether a feature request is received...
Read more >How to Collect and Manage Feature Requests in SaaS
In this article, we'll cover several methods for collecting and managing feature requests to meet customer expectations for your SaaS.
Read more >Writing Good Feature Requests · rstudio/rstudio Wiki - GitHub
Make your feature request better by describing the problem you are facing, and only then proposing the feature request as one solution to...
Read more >How I Translate Feature Requests into Code - Michael-F-Bryan
This process works especially well for larger features which add new functionality with minimal coupling to existing code.
Read more >In-App Feature Requests - Instabug
Showing the feature requests page is as simple as pasting a line of code into your application. This section details this API. Feature...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@mik3y64 Glad to know it works for you. Would you mind putting your comments at https://github.com/REditorSupport/languageserver/pull/163 which seems to be the place we discuss it further since we’ll implement this feature in languageserver?
More detail on how this could be done: When a file is saved, look for section lines using a regex. Add these as symbols using
DocumentSymbolProvider
. They would then appear in the Outline and Breadcrumbs sections.The language server also provides symbols, so it would be necessary to check that the language server symbols and the section symbols don’t conflict.
If anyone wants to have a go at implementing this, I’m happy to provide assistance.