Back to Blog
Engineering, Release, News
May 13, 2026
Max Binshtoknash Core Team

Nash Tasks and VS Code Tasks Support

It's official! We are excited to announce the first official release of Nash, our AI-centric terminal that puts productivity and speed first.

Nash Tasks Explained

[[task]]
id = "variant-split-horizontal-default-flags"
title = "Variant: Split Horizontal (Default Flags)"
description = "Split horizontal with default focus=true and keep=false."
cwd = "."
target = "split_horizontal"
command = "echo '[variant-split-horizontal-default-flags]' && pwd"
fn shell_argv(shell: Option<&Vec<String>>, command: &str) -> anyhow::Result<Vec<String>> {
    let mut argv = shell.cloned().unwrap_or_else(default_shell);
    if argv.is_empty() {
        bail!("task shell must contain at least one argv element");
    }
    argv.push(command.to_string());
    Ok(argv)
}

Head over to the download page to get the latest version of Nash for your Mac.

-Nash Team

P.S. don't hesitate to reach out if you have any questions or feedback!