summaryrefslogtreecommitdiffstats
path: root/.cargo
diff options
context:
space:
mode:
authora-kenji <aks.kenji@protonmail.com>2022-06-15 11:20:06 +0200
committerGitHub <noreply@github.com>2022-06-15 11:20:06 +0200
commit0b6001305b38359d013e7119f1a649b417b22e59 (patch)
tree1f86b0bac32eea489f8f832b792ee962954b1de4 /.cargo
parent253a14080496ba065399b94c6f6d8ba063e08f43 (diff)
feat: add capability to dispatch actions from cli (#1265)
* feat: add capability to dispatch actions from cli Add capability to dispatch actions from the cli. Can be invoked through `zellij action [actions]` Automatically sends the action either to the current session, or if there is only one session to the single session. If there are multiple sessions, and no session is specified it will error out. Example: 1. ``` zellij action "[NewTab: , NewTab: ]" ``` 2. ``` zellij -s fluffy-cat action '[NewPane: , WriteChars: "echo Purrr\n" ]' ``` 3. ``` zellij -s fluffy-cat action '[ CloseTab, ] ``` * add: error message on malformed input Add an error message on malformed input, for the `action`'s dispatch. Rather than resulting in a panic. * add: function to query the client id * add: send specific actions to certain clients Adds ability to send actions, that don't impact the server state to all connected clients. For example `MoveFocus` * add: client_id to non blocking actions * chore(fmt): `cargo fmt` * add: pick correct session, if there is exactly one * add: use correct `client_id` for detach action * add: make `[ ]` opaque to the user * add: miette to toplevel to improve error message * add: fake client reading configuration Add the fake client reading configuration files, this allows actions, that rely on configuration work correctly. This is an intermediate solution, and should ideally not be needed. It would be better if most of this state would be handled by the server itself. * chore(fmt): rustmt * add: ability to detach multiple clients Add ability to detach multiple clients at the same time. * remove: obsolete functionality * remove: unused functionality * add: send correct action upon exiting * chore(update): cargo update
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
new file mode 100644
index 000000000..d9436ca1c
--- /dev/null
+++ b/.cargo/config.toml
@@ -0,0 +1 @@
+parallel-compiler = true