workmux 0.1.215

An opinionated workflow tool that orchestrates git worktrees and tmux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
//! Kitty backend implementation for the Multiplexer trait.
//!
//! This module provides KittyBackend, which wraps all kitty-specific operations
//! and exposes them through the Multiplexer trait interface.
//!
//! Note on terminology:
//! - Kitty "window" = workmux "pane" (a terminal split)
//! - Kitty "tab" = workmux "window" (a named tab)
//! - Kitty "OS window" = the actual window on screen

use crate::cmd::Cmd;
use crate::config::SplitDirection;
use anyhow::{Context, Result, anyhow};
use serde::Deserialize;
use std::collections::{HashMap, HashSet};
use std::path::{Path, PathBuf};
use std::time::Duration;

use super::Multiplexer;
use super::types::*;
use super::util;

/// Kitty process info from `foreground_processes` in ls output
#[derive(Debug, Deserialize)]
struct KittyProcess {
    pid: u32,
    #[allow(dead_code)]
    cwd: String,
    cmdline: Vec<String>,
}

/// Kitty window (= workmux pane) from `kitten @ ls`
#[derive(Debug, Deserialize)]
struct KittyWindow {
    id: u64,
    title: String,
    cwd: String,
    pid: u32,
    is_focused: bool,
    #[allow(dead_code)]
    is_active: bool,
    #[serde(default)]
    foreground_processes: Vec<KittyProcess>,
}

/// Kitty tab (= workmux window) from `kitten @ ls`
#[derive(Debug, Deserialize)]
struct KittyTab {
    id: u64,
    title: String,
    is_active: bool,
    #[allow(dead_code)]
    is_focused: bool,
    windows: Vec<KittyWindow>,
}

/// Kitty OS window from `kitten @ ls`
#[derive(Debug, Deserialize)]
struct KittyOsWindow {
    id: u64,
    is_focused: bool,
    tabs: Vec<KittyTab>,
}

/// Flattened pane info for internal use
#[derive(Debug, Clone)]
struct FlatPane {
    os_window_id: u64,
    tab_id: u64,
    tab_title: String,
    window_id: u64,
    is_focused: bool,
    #[allow(dead_code)]
    is_tab_active: bool,
    cwd: PathBuf,
    pid: u32,
    title: String,
    foreground_command: Option<String>,
    foreground_pid: Option<u32>,
}

/// Kitty backend implementation.
///
/// Relies on inherited KITTY_WINDOW_ID and KITTY_LISTEN_ON environment variables.
/// Requires kitty configuration with `allow_remote_control yes` and `listen_on`.
#[derive(Debug)]
pub struct KittyBackend;

impl Default for KittyBackend {
    fn default() -> Self {
        Self::new()
    }
}

impl KittyBackend {
    /// Create a new KittyBackend instance.
    pub fn new() -> Self {
        Self
    }

    /// Create a kitten @ command.
    fn kitten_cmd(&self) -> Cmd<'static> {
        Cmd::new("kitten").arg("@")
    }

    /// Query all windows/tabs/panes as flat list.
    fn list_panes(&self) -> Result<Vec<FlatPane>> {
        let output = self
            .kitten_cmd()
            .arg("ls")
            .run_and_capture_stdout()
            .context("Failed to list kitty panes")?;

        let os_windows: Vec<KittyOsWindow> =
            serde_json::from_str(&output).context("Failed to parse kitty ls output")?;

        let mut panes = Vec::new();
        for os_win in os_windows {
            for tab in os_win.tabs {
                for win in tab.windows {
                    // Get foreground process info. Use the process with the lowest
                    // PID, which is the most stable (the original user command like
                    // "claude"), not transient children (like "kitten" or "node").
                    // This matters because set-window-status calls kitten @ ls to
                    // capture foreground info, and without min_by we'd capture the
                    // kitten subprocess itself, causing reconciliation to delete the
                    // agent on the next check.
                    let fg = win.foreground_processes.iter().min_by_key(|p| p.pid);
                    let foreground_command = fg.and_then(|p| {
                        p.cmdline.first().map(|c| {
                            Path::new(c)
                                .file_name()
                                .map(|n| n.to_string_lossy().to_string())
                                .unwrap_or_else(|| c.clone())
                        })
                    });
                    let foreground_pid = fg.map(|p| p.pid);

                    panes.push(FlatPane {
                        os_window_id: os_win.id,
                        tab_id: tab.id,
                        tab_title: tab.title.clone(),
                        window_id: win.id,
                        is_focused: win.is_focused && tab.is_focused && os_win.is_focused,
                        is_tab_active: tab.is_active,
                        cwd: PathBuf::from(&win.cwd),
                        pid: win.pid,
                        title: win.title,
                        foreground_command,
                        foreground_pid,
                    });
                }
            }
        }

        Ok(panes)
    }

    /// Get current window ID from environment.
    fn current_window_id(&self) -> Option<u64> {
        std::env::var("KITTY_WINDOW_ID").ok()?.parse().ok()
    }

    /// Get current OS window ID by looking up the current window.
    fn current_os_window_id(&self) -> Option<u64> {
        let window_id = self.current_window_id()?;
        let panes = self.list_panes().ok()?;
        panes
            .iter()
            .find(|p| p.window_id == window_id)
            .map(|p| p.os_window_id)
    }

    /// Filter panes to current OS window scope.
    fn panes_in_current_scope<'a>(&self, panes: &'a [FlatPane]) -> Vec<&'a FlatPane> {
        let current_os = self.current_os_window_id();
        panes
            .iter()
            .filter(|p| current_os.is_none() || Some(p.os_window_id) == current_os)
            .collect()
    }

    /// Collect window IDs for tabs matching `full_name`, deduplicated by `tab_id`.
    ///
    /// Uses `window_id` (not `tab_id`) because kitty's `--match id:N` resolves
    /// window IDs, not tab IDs.
    fn scoped_tab_window_ids(&self, full_name: &str) -> Result<Vec<u64>> {
        let panes = self.list_panes()?;
        let scoped_panes = self.panes_in_current_scope(&panes);
        let mut seen_tabs = HashSet::new();
        Ok(scoped_panes
            .iter()
            .filter(|p| p.tab_title == full_name)
            .filter(|p| seen_tabs.insert(p.tab_id))
            .map(|p| p.window_id)
            .collect())
    }

    /// Return the first scoped tab's window ID for `full_name`.
    fn first_scoped_tab_window_id(&self, full_name: &str) -> Result<u64> {
        let panes = self.list_panes()?;
        let scoped_panes = self.panes_in_current_scope(&panes);
        let target = scoped_panes
            .iter()
            .find(|p| p.tab_title == full_name)
            .ok_or_else(|| anyhow!("Window '{}' not found", full_name))?;
        Ok(target.window_id)
    }

    /// Set the tab title for a window.
    #[allow(dead_code)]
    fn set_tab_title(&self, window_id: &str, title: &str) -> Result<()> {
        self.kitten_cmd()
            .args(&[
                "set-tab-title",
                "--match",
                &format!("id:{}", window_id),
                title,
            ])
            .run()
            .context("Failed to set tab title")?;
        Ok(())
    }

    /// Internal split pane implementation.
    fn split_pane_internal(
        &self,
        target_pane_id: &str,
        direction: SplitDirection,
        cwd: &Path,
        _size: Option<u16>,
        _percentage: Option<u8>,
        command: Option<&str>,
    ) -> Result<String> {
        // kitty's naming refers to the split line orientation, opposite of tmux:
        //   hsplit = horizontal divider = top/bottom panes
        //   vsplit = vertical divider   = left/right panes
        let location_arg = match direction {
            SplitDirection::Horizontal => "vsplit",
            SplitDirection::Vertical => "hsplit",
        };

        let cwd_str = cwd.to_string_lossy();
        let match_arg = format!("id:{}", target_pane_id);

        let mut args = vec![
            "launch",
            "--location",
            location_arg,
            "--match",
            &match_arg,
            "--cwd",
            &*cwd_str,
        ];

        // Pass command as separate argv tokens for kitten @ launch
        if let Some(cmd) = command {
            args.push("sh");
            args.push("-c");
            args.push(cmd);
        }

        let output = self
            .kitten_cmd()
            .args(&args)
            .run_and_capture_stdout()
            .context("Failed to split kitty pane")?;

        // kitten @ launch returns the new window ID
        Ok(output.trim().to_string())
    }

    fn live_pane_snapshot(p: FlatPane) -> util::LivePaneSnapshot {
        util::LivePaneSnapshot {
            pane_id: p.window_id.to_string(),
            pid: Some(p.foreground_pid.unwrap_or(p.pid)),
            current_command: p.foreground_command.or_else(|| Some("unknown".to_string())),
            working_dir: p.cwd,
            title: p.title,
            session: format!("os-window-{}", p.os_window_id),
            window: p.tab_title,
        }
    }
}

impl Multiplexer for KittyBackend {
    fn name(&self) -> &'static str {
        "kitty"
    }

    // === Server/Session ===

    fn is_running(&self) -> Result<bool> {
        self.kitten_cmd().arg("ls").run_as_check()
    }

    fn current_pane_id(&self) -> Option<String> {
        std::env::var("KITTY_WINDOW_ID").ok()
    }

    fn active_pane_id(&self) -> Option<String> {
        self.list_panes().ok().and_then(|panes| {
            panes
                .into_iter()
                .find(|p| p.is_focused)
                .map(|p| p.window_id.to_string())
        })
    }

    fn get_client_active_pane_path(&self) -> Result<PathBuf> {
        let window_id = self
            .current_window_id()
            .ok_or_else(|| anyhow!("KITTY_WINDOW_ID not set or invalid"))?;

        let panes = self.list_panes()?;
        let current = panes
            .iter()
            .find(|p| p.window_id == window_id)
            .ok_or_else(|| anyhow!("Current window {} not found", window_id))?;

        if current.cwd.as_os_str().is_empty() {
            return Err(anyhow!("Empty path returned from kitty"));
        }

        Ok(current.cwd.clone())
    }

    // === Session Management (not supported in Kitty) ===

    fn create_session(&self, _params: CreateSessionParams) -> Result<String> {
        Err(anyhow!(
            "Session mode (--session) is not supported in Kitty.\n\
             Kitty does not have a session concept like tmux.\n\
             Use the default window mode instead (omit --session flag)."
        ))
    }

    fn switch_to_session(&self, _prefix: &str, _name: &str) -> Result<()> {
        Err(anyhow!(
            "Session mode is not supported in Kitty.\n\
             Use the default window mode instead."
        ))
    }

    fn schedule_session_close(&self, _full_name: &str, _delay: Duration) -> Result<()> {
        Err(anyhow!(
            "Session mode is not supported in Kitty. Use window mode instead."
        ))
    }

    fn wait_until_session_closed(&self, _full_session_name: &str) -> Result<()> {
        Err(anyhow!(
            "Session mode is not supported in Kitty. Use window mode instead."
        ))
    }

    // === Window/Tab Management ===

    fn create_window(&self, params: CreateWindowParams) -> Result<String> {
        let full_name = util::prefixed(params.prefix, params.name);
        let cwd_str = params.cwd.to_string_lossy();

        // Note: kitty doesn't support "insert after" - tabs appear at end
        // params.after_window is ignored (same as WezTerm)
        let output = self
            .kitten_cmd()
            .args(&[
                "launch",
                "--type=tab",
                "--tab-title",
                &full_name,
                "--cwd",
                &*cwd_str,
                "--dont-take-focus",
            ])
            .run_and_capture_stdout()
            .context("Failed to create kitty tab")?;

        let window_id = output.trim().to_string();

        // Persistently set the tab title. The --tab-title flag on launch gets
        // overridden by kitty's dynamic title updates, but set-tab-title locks it.
        let _ = self
            .kitten_cmd()
            .args(&[
                "set-tab-title",
                "--match",
                &format!("id:{}", window_id),
                &full_name,
            ])
            .run();

        Ok(window_id)
    }

    fn kill_window(&self, full_name: &str) -> Result<()> {
        let window_ids = self.scoped_tab_window_ids(full_name)?;

        if window_ids.is_empty() {
            return Ok(()); // Already gone
        }

        for window_id in window_ids {
            let _ = self
                .kitten_cmd()
                .args(&["close-tab", "--match", &format!("id:{}", window_id)])
                .run();
        }
        Ok(())
    }

    fn schedule_window_close(&self, full_name: &str, delay: Duration) -> Result<()> {
        let window_ids = self.scoped_tab_window_ids(full_name)?;

        if window_ids.is_empty() {
            return Ok(());
        }

        // Build close commands for all tabs
        let close_cmds: String = window_ids
            .iter()
            .map(|id| format!("kitten @ close-tab --match 'id:{}'", id))
            .collect::<Vec<_>>()
            .join("; ");

        // Use nohup to run in background
        let script = format!(
            "nohup sh -c 'sleep {}; {}' >/dev/null 2>&1 &",
            delay.as_secs_f64(),
            close_cmds
        );

        Cmd::new("sh").args(&["-c", &script]).run()?;
        Ok(())
    }

    fn run_deferred_script(&self, script: &str) -> Result<()> {
        util::run_detached_sh_c(script)
    }

    fn shell_select_window_cmd(&self, full_name: &str) -> Result<String> {
        let window_id = self.first_scoped_tab_window_id(full_name)?;
        Ok(format!(
            "kitten @ focus-tab --match 'id:{}' >/dev/null 2>&1",
            window_id
        ))
    }

    fn shell_kill_window_cmd(&self, full_name: &str) -> Result<String> {
        let window_id = self.first_scoped_tab_window_id(full_name)?;
        Ok(format!(
            "kitten @ close-tab --match 'id:{}' >/dev/null 2>&1",
            window_id
        ))
    }

    fn shell_switch_session_cmd(&self, _full_name: &str) -> Result<String> {
        Err(anyhow!(
            "Session mode is not supported in Kitty. Use window mode instead."
        ))
    }

    fn shell_kill_session_cmd(&self, _full_name: &str) -> Result<String> {
        Err(anyhow!(
            "Session mode is not supported in Kitty. Use window mode instead."
        ))
    }

    fn select_window(&self, prefix: &str, name: &str) -> Result<()> {
        let full_name = util::prefixed(prefix, name);
        let window_id = self.first_scoped_tab_window_id(&full_name)?;
        self.kitten_cmd()
            .args(&["focus-tab", "--match", &format!("id:{}", window_id)])
            .run()
            .context("Failed to focus tab")?;
        Ok(())
    }

    fn current_window_name(&self) -> Result<Option<String>> {
        let window_id = match self.current_window_id() {
            Some(id) => id,
            None => return Ok(None),
        };

        let panes = self.list_panes()?;
        let current = panes.iter().find(|p| p.window_id == window_id);

        Ok(current.map(|p| p.tab_title.clone()))
    }

    fn get_all_window_names(&self) -> Result<HashSet<String>> {
        let panes = self.list_panes()?;
        let scoped_panes = self.panes_in_current_scope(&panes);

        // Collect unique tab_titles (our window names)
        let names: HashSet<String> = scoped_panes.iter().map(|p| p.tab_title.clone()).collect();

        Ok(names)
    }

    // === Pane Management ===

    fn select_pane(&self, pane_id: &str) -> Result<()> {
        self.kitten_cmd()
            .args(&["focus-window", "--match", &format!("id:{}", pane_id)])
            .run()
            .context("Failed to focus window")?;
        Ok(())
    }

    fn switch_to_pane(&self, pane_id: &str, _window_hint: Option<&str>) -> Result<()> {
        // In kitty, focusing a window also focuses its containing tab
        self.select_pane(pane_id)
    }

    fn kill_pane(&self, pane_id: &str) -> Result<()> {
        self.kitten_cmd()
            .args(&["close-window", "--match", &format!("id:{}", pane_id)])
            .run()?;
        Ok(())
    }

    fn respawn_pane(&self, pane_id: &str, cwd: &Path, cmd: Option<&str>) -> Result<String> {
        // Unified approach: split the current pane, then close the original.
        // This preserves tab position regardless of whether there were siblings.
        // The new window will expand to fill the space of the closed one.
        let new_pane_id =
            self.split_pane_internal(pane_id, SplitDirection::Vertical, cwd, None, None, cmd)?;

        // Close old window
        let _ = self.kill_pane(pane_id);

        Ok(new_pane_id)
    }

    fn capture_pane(&self, pane_id: &str, lines: u16) -> Option<String> {
        let output = self
            .kitten_cmd()
            .args(&["get-text", "--match", &format!("id:{}", pane_id), "--ansi"])
            .run_and_capture_stdout()
            .ok()?;

        Some(util::tail_lines(&output, lines))
    }

    // === Text I/O ===

    fn send_text_fragment(&self, pane_id: &str, text: &str) -> Result<()> {
        self.kitten_cmd()
            .args(&["send-text", "--match", &format!("id:{}", pane_id), text])
            .run()
            .context("Failed to send text to pane")
            .map(|_| ())
    }

    fn send_enter(&self, pane_id: &str) -> Result<()> {
        self.kitten_cmd()
            .args(&["send-text", "--match", &format!("id:{}", pane_id), "\r"])
            .run()
            .context("Failed to send Enter key to pane")
            .map(|_| ())
    }

    fn send_key(&self, pane_id: &str, key: &str) -> Result<()> {
        // Translate tmux key names to ANSI escape sequences for kitty.
        // The dashboard sends tmux-style names like "BSpace", "Enter", etc.
        let translated = match key {
            "BSpace" => "\x7f",
            "Enter" => "\r",
            "Tab" => "\t",
            "Up" => "\x1b[A",
            "Down" => "\x1b[B",
            "Right" => "\x1b[C",
            "Left" => "\x1b[D",
            "Escape" => "\x1b",
            _ => key,
        };
        self.kitten_cmd()
            .args(&[
                "send-text",
                "--match",
                &format!("id:{}", pane_id),
                translated,
            ])
            .run()
            .context("Failed to send key to pane")?;
        Ok(())
    }

    fn paste_text(&self, pane_id: &str, content: &str) -> Result<()> {
        // Use bracketed paste mode
        self.kitten_cmd()
            .args(&[
                "send-text",
                "--match",
                &format!("id:{}", pane_id),
                "--bracketed-paste",
                content,
            ])
            .run()
            .context("Failed to paste content to pane")?;

        Ok(())
    }

    // === Status ===

    fn set_status(&self, pane_id: &str, icon: &str, auto_clear_on_focus: bool) -> Result<()> {
        // Use kitty user variables for status
        // This stores the status per-window, which can be read by custom tab bar scripts
        let match_arg = format!("id:{}", pane_id);
        let _ = self
            .kitten_cmd()
            .args(&[
                "set-user-vars",
                "--match",
                &match_arg,
                &format!("workmux_status={}", icon),
            ])
            .run();

        // Set auto-clear flag so the watcher can clear status on focus
        let auto_clear_val = if auto_clear_on_focus { "1" } else { "" };
        let _ = self
            .kitten_cmd()
            .args(&[
                "set-user-vars",
                "--match",
                &match_arg,
                &format!("workmux_auto_clear={}", auto_clear_val),
            ])
            .run();

        Ok(())
    }

    fn clear_status(&self, pane_id: &str) -> Result<()> {
        // Clear by setting empty value
        let _ = self
            .kitten_cmd()
            .args(&[
                "set-user-vars",
                "--match",
                &format!("id:{}", pane_id),
                "workmux_status=",
            ])
            .run();
        Ok(())
    }

    fn ensure_status_format(&self, _pane_id: &str) -> Result<()> {
        // No-op for kitty - status is displayed via user variables
        // Users need custom tab_bar.py to display status icons
        Ok(())
    }

    // === Multi-Session/Workspace Support ===

    fn current_session(&self) -> Option<String> {
        // Kitty doesn't have named sessions like tmux
        // Use OS window ID as a pseudo-session identifier
        self.current_os_window_id()
            .map(|id| format!("os-window-{}", id))
    }

    fn get_all_window_names_all_sessions(&self) -> Result<HashSet<String>> {
        // Return all tab titles across all OS windows
        let panes = self.list_panes()?;
        let names: HashSet<String> = panes.iter().map(|p| p.tab_title.clone()).collect();
        Ok(names)
    }

    // === State Reconciliation ===

    fn instance_id(&self) -> String {
        // Use KITTY_LISTEN_ON socket path as instance ID
        std::env::var("KITTY_LISTEN_ON").unwrap_or_else(|_| "default".to_string())
    }

    fn get_live_pane_info(&self, pane_id: &str) -> Result<Option<LivePaneInfo>> {
        // Parse pane ID, returning None if it's not a valid number
        let pane_id_num: u64 = match pane_id.parse() {
            Ok(id) => id,
            Err(_) => return Ok(None),
        };

        let panes = self.list_panes()?;
        let pane = panes.into_iter().find(|p| p.window_id == pane_id_num);

        match pane {
            Some(p) => Ok(Some(Self::live_pane_snapshot(p).into_pair().1)),
            None => Ok(None),
        }
    }

    fn get_all_live_pane_info(&self) -> Result<HashMap<String, LivePaneInfo>> {
        Ok(util::live_pane_map(
            self.list_panes()?.into_iter().map(Self::live_pane_snapshot),
        ))
    }

    fn split_pane(
        &self,
        target_pane_id: &str,
        direction: &SplitDirection,
        cwd: &Path,
        size: Option<u16>,
        percentage: Option<u8>,
        command: Option<&str>,
    ) -> Result<String> {
        self.split_pane_internal(
            target_pane_id,
            direction.clone(),
            cwd,
            size,
            percentage,
            command,
        )
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_kitty_backend_name() {
        let backend = KittyBackend::new();
        assert_eq!(backend.name(), "kitty");
    }
}