-
Notifications
You must be signed in to change notification settings - Fork 520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support --from-entry option #2500
Comments
Hi @hsanson It makes sens supporting Without IDE support, I find it easier to see on which line is a specific entry (instead of counting entry). We need to define what's happening when the specified line is not an entry obviously. But in the context of an editor, we can begin by implementing " |
The logic to determine entries from a line position is not trivial so supporting "from_line", "to_line", and "at_line" options would make it easier to integrate with other editor's and IDE's. If I had to implement this I would:
|
Very clear, thanks a lot! |
Problem to solve
Would be nice to have a
--from-entry
option similar to--to-entry
to run sections of the hurl file.Proposal
Add
--from-entry
option that accepts an entry index and runs the hurl file starting from that entry up to--to-entry
if defined or to end of file if not.Additional context and resources
Trying to improve hurl.nvim plugin capability to run visually selected sections of a Hurl file.
Tasks to complete
The text was updated successfully, but these errors were encountered: