Add task templates for running PowerShell code (F8 run selection)#24
Draft
jnichols0 wants to merge 1 commit into
Draft
Add task templates for running PowerShell code (F8 run selection)#24jnichols0 wants to merge 1 commit into
jnichols0 wants to merge 1 commit into
Conversation
Add tasks.json with two task templates: - 'PowerShell: Run Selection' to run selected text via pwsh - 'PowerShell: Run File' to run the current file via pwsh This enables the F8 run-selection workflow familiar to PowerShell ISE and VS Code users when bound via keymap.json. Update README with documentation on the new tasks and example keybinding configuration. Closes zed-extensions#10 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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
Add task templates that enable running PowerShell code directly from the editor, addressing the feature request in #10.
Changes
languages/powershell/tasks.json— Two new task templates:pwsh -Commandpwsh -FileREADME.md— Documents the new tasks and provides an example keybinding for F8How it works
Zed's task system supports
$ZED_SELECTED_TEXTand$ZED_FILEvariables. The "Run Selection" task only appears when text is selected (Zed filters tasks with unavailable variables). Users can bind F8 to this task in theirkeymap.json:{ "context": "Editor && extension == powershell", "bindings": { "f8": ["task::Spawn", { "task_name": "PowerShell: Run Selection" }] } }This follows the same pattern used by the Ruby and PHP extensions for their run-selection tasks.
Closes #10