mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-23 08:57:14 +03:00
Merge pull request #596 from a-kenji/run-command-action
Add running commands to an action
This commit is contained in:
commit
5c3759e155
@ -10,6 +10,7 @@ use zellij_utils::{
|
||||
channels::SenderWithContext,
|
||||
input::{
|
||||
actions::{Action, Direction},
|
||||
command::TerminalAction,
|
||||
get_mode_info,
|
||||
},
|
||||
ipc::{ClientToServerMsg, ExitReason, ServerToClientMsg},
|
||||
@ -144,6 +145,18 @@ fn route_action(
|
||||
};
|
||||
session.senders.send_to_pty(pty_instr).unwrap();
|
||||
}
|
||||
Action::Run(command) => {
|
||||
let run_cmd = Some(TerminalAction::RunCommand(command.clone().into()));
|
||||
let pty_instr = match command.direction {
|
||||
Some(Direction::Left) => PtyInstruction::SpawnTerminalVertically(run_cmd),
|
||||
Some(Direction::Right) => PtyInstruction::SpawnTerminalVertically(run_cmd),
|
||||
Some(Direction::Up) => PtyInstruction::SpawnTerminalHorizontally(run_cmd),
|
||||
Some(Direction::Down) => PtyInstruction::SpawnTerminalHorizontally(run_cmd),
|
||||
// No direction specified - try to put it in the biggest available spot
|
||||
None => PtyInstruction::SpawnTerminal(run_cmd),
|
||||
};
|
||||
session.senders.send_to_pty(pty_instr).unwrap();
|
||||
}
|
||||
Action::CloseFocus => {
|
||||
session
|
||||
.senders
|
||||
|
@ -1,5 +1,6 @@
|
||||
//! Definition of the actions that can be bound to keys.
|
||||
|
||||
use super::command::RunCommandAction;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use zellij_tile::data::InputMode;
|
||||
|
||||
@ -65,6 +66,8 @@ pub enum Action {
|
||||
CloseTab,
|
||||
GoToTab(u32),
|
||||
TabNameInput(Vec<u8>),
|
||||
/// Run speficied command in new pane.
|
||||
Run(RunCommandAction),
|
||||
/// Detach session and exit
|
||||
Detach,
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
//! Trigger a command
|
||||
use super::actions::Direction;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::path::PathBuf;
|
||||
|
||||
@ -8,9 +9,28 @@ pub enum TerminalAction {
|
||||
RunCommand(RunCommand),
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Deserialize, Default, Serialize, PartialEq)]
|
||||
#[derive(Clone, Debug, Deserialize, Default, Serialize, PartialEq, Eq)]
|
||||
pub struct RunCommand {
|
||||
pub command: PathBuf,
|
||||
#[serde(default)]
|
||||
pub args: Vec<String>,
|
||||
}
|
||||
|
||||
/// Intermediate representation
|
||||
#[derive(Clone, Debug, Deserialize, Default, Serialize, PartialEq, Eq)]
|
||||
pub struct RunCommandAction {
|
||||
pub command: PathBuf,
|
||||
#[serde(default)]
|
||||
pub args: Vec<String>,
|
||||
#[serde(default)]
|
||||
pub direction: Option<Direction>,
|
||||
}
|
||||
|
||||
impl From<RunCommandAction> for RunCommand {
|
||||
fn from(action: RunCommandAction) -> Self {
|
||||
RunCommand {
|
||||
command: action.command,
|
||||
args: action.args,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user