summaryrefslogtreecommitdiffstats
path: root/zellij-utils/src/errors.rs
diff options
context:
space:
mode:
authorKunal Mohan <44079328+kunalmohan@users.noreply.github.com>2021-10-19 20:20:28 +0530
committerGitHub <noreply@github.com>2021-10-19 20:20:28 +0530
commitd90e3d4cacbafd395a9df7ee3a02d5e908b5df2d (patch)
tree28c7a09ef3018cd6af868f7e4ab9ea7307733911 /zellij-utils/src/errors.rs
parent76a96b538b2bb8715f9fcd2d4f02603199671b46 (diff)
Feature: Move panes directionally (#762)
* Feature: Move panes directionally * change keybinds * Fix active pane after move * Add a separate 'Move' mode * Add tests * Add more tests * Send resize message to pty * wrap set_terminal_size_using_fd() in macro * change keybind for Move mode * cargo fmt * fix test * move render functions from tab.rs to screen.rs * undo wrong keybinds
Diffstat (limited to 'zellij-utils/src/errors.rs')
-rw-r--r--zellij-utils/src/errors.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/zellij-utils/src/errors.rs b/zellij-utils/src/errors.rs
index 1859a9042..b6353c5bc 100644
--- a/zellij-utils/src/errors.rs
+++ b/zellij-utils/src/errors.rs
@@ -226,6 +226,10 @@ pub enum ScreenContext {
MoveFocusUp,
MoveFocusRight,
MoveFocusRightOrNextTab,
+ MovePaneDown,
+ MovePaneUp,
+ MovePaneRight,
+ MovePaneLeft,
Exit,
ScrollUp,
ScrollUpAt,