Add built-in HTTP Language Server with interactive request execution#7
Open
dreygur wants to merge 3 commits intotie304:mainfrom
Open
Add built-in HTTP Language Server with interactive request execution#7dreygur wants to merge 3 commits intotie304:mainfrom
dreygur wants to merge 3 commits intotie304:mainfrom
Conversation
- Add http-lsp crate with tree-sitter-http parsing - Implement code lens provider (Send, Headers, Save buttons) - Add HTTP client using reqwest for request execution - Update extension to download/start LSP binary - Add JSON/XML/GraphQL language injections - Add comprehensive documentation in docs/ Note: Code lens awaiting Zed support (Issue #11565)
- Add inlay hints with visual buttons for HTTP requests - Add code actions (Ctrl+.) for Send, Show, Save, Headers commands - Add hover provider showing request info and action hints - Add response caching for Show command - Fix parser slice bounds issue - Enable inlay hints by default for http language
1. Fixed save response to path 2. Updated readme 3. Added zed settings for inlay_hints Co-authored-by: Yeasir Hossain <yeasir06@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Features
Technical Details
Setup Required
Users need to enable inlay hints in settings:
{ "languages": { "http": { "inlay_hints": { "enabled": true } } } }Test Plan