Far-Beyond-Pulsar/Pulsar-Native

Consider adding nested templates for subfolders

Open

#49 opened on Jan 3, 2026

 (0 comments) (0 reactions) (1 assignee)Rust (29 forks)auto 404
enhancementgood first issue

Repository metrics

Stars
 (348 stars)
PR merge metrics
 (Avg merge 11h 37m) (69 merged PRs in 30d)

Description

https://github.com/Far-Beyond-Pulsar/Pulsar-Native/blob/358da2a2ba1e7921e33f8662389430cfc12b43cc/crates/plugin_editor_api/src/lib.rs#L310-L344

Like this for example:

pub enum PathTemplate {
    /// Create a file with default content
    File {
        path: String,
        content: String,
    },
    /// Create a folder
    Folder {
        path: String,
        template_structure: Option<Vec<PathTemplate>>
    },
}

Contributor guide