emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/exwm cc97455 1/2: Add prefix arguments support for vari


From: Chris Feng
Subject: [elpa] externals/exwm cc97455 1/2: Add prefix arguments support for various commands
Date: Sat, 3 Mar 2018 12:41:28 -0500 (EST)

branch: externals/exwm
commit cc974555db6056ac799b3ce67234aec4e019cf84
Author: Chris Feng <address@hidden>
Commit: Chris Feng <address@hidden>

    Add prefix arguments support for various commands
    
    * exwm-workspace.el (exwm-workspace-switch)
    (exwm-workspace-switch-create, exwm-workspace-move)
    (exwm-workspace-move-window): Add prefix arguments support.
---
 exwm-workspace.el | 57 +++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 41 insertions(+), 16 deletions(-)

diff --git a/exwm-workspace.el b/exwm-workspace.el
index b423b26..0651b57 100644
--- a/exwm-workspace.el
+++ b/exwm-workspace.el
@@ -500,12 +500,18 @@ workspace frame as the first option or making use of the 
rest options are
 for internal use only."
   (interactive
    (list
-    (unless (and (eq major-mode 'exwm-mode)
-                 ;; The prompt is invisible in fullscreen mode.
-                 (memq xcb:Atom:_NET_WM_STATE_FULLSCREEN exwm--ewmh-state))
-      (let ((exwm-workspace--prompt-add-allowed t)
-            (exwm-workspace--prompt-delete-allowed t))
-        (exwm-workspace--prompt-for-workspace "Switch to [+/-]: ")))))
+    (cond
+     ((null current-prefix-arg)
+      (unless (and (eq major-mode 'exwm-mode)
+                   ;; The prompt is invisible in fullscreen mode.
+                   (memq xcb:Atom:_NET_WM_STATE_FULLSCREEN exwm--ewmh-state))
+        (let ((exwm-workspace--prompt-add-allowed t)
+              (exwm-workspace--prompt-delete-allowed t))
+          (exwm-workspace--prompt-for-workspace "Switch to [+/-]: "))))
+     ((and (integerp current-prefix-arg)
+           (<= 0 current-prefix-arg (exwm-workspace--count)))
+      current-prefix-arg)
+     (t 0))))
   (let* ((frame (exwm-workspace--workspace-from-frame-or-index frame-or-index))
          (old-frame exwm-workspace--current)
          (index (exwm-workspace--position frame))
@@ -600,7 +606,14 @@ for internal use only."
   "Switch to workspace INDEX or creating it first if it does not exist yet.
 
 Passing a workspace frame as the first option is for internal use only."
-  (interactive)
+  (interactive
+   (list
+    (cond
+     ((integerp current-prefix-arg)
+      current-prefix-arg)
+     (t 0))))
+  (unless frame-or-index
+    (setq frame-or-index 0))
   (if (or (framep frame-or-index)
           (< frame-or-index (exwm-workspace--count)))
       (exwm-workspace-switch frame-or-index)
@@ -654,12 +667,18 @@ Passing a workspace frame as the first option is for 
internal use only."
 When called interactively, prompt for a workspace and move current one just
 before it."
   (interactive
-   (unless (and (eq major-mode 'exwm-mode)
-                ;; The prompt is invisible in fullscreen mode.
-                (memq xcb:Atom:_NET_WM_STATE_FULLSCREEN exwm--ewmh-state))
-     (list exwm-workspace--current
-           (exwm-workspace--position
-            (exwm-workspace--prompt-for-workspace "Move workspace to: ")))))
+   (cond
+    ((null current-prefix-arg)
+     (unless (and (eq major-mode 'exwm-mode)
+                  ;; The prompt is invisible in fullscreen mode.
+                  (memq xcb:Atom:_NET_WM_STATE_FULLSCREEN exwm--ewmh-state))
+       (list exwm-workspace--current
+             (exwm-workspace--position
+              (exwm-workspace--prompt-for-workspace "Move workspace to: ")))))
+    ((and (integerp current-prefix-arg)
+          (<= 0 current-prefix-arg (exwm-workspace--count)))
+     (list exwm-workspace--current current-prefix-arg))
+    (t (list exwm-workspace--current 0))))
   (let ((pos (exwm-workspace--position workspace))
         flag start end index)
     (if (= nth pos)
@@ -723,9 +742,15 @@ INDEX must not exceed the current number of workspaces."
 (defun exwm-workspace-move-window (frame-or-index &optional id)
   "Move window ID to workspace FRAME-OR-INDEX."
   (interactive (list
-                (let ((exwm-workspace--prompt-add-allowed t)
-                      (exwm-workspace--prompt-delete-allowed t))
-                  (exwm-workspace--prompt-for-workspace "Move to [+/-]: "))))
+                (cond
+                 ((null current-prefix-arg)
+                  (let ((exwm-workspace--prompt-add-allowed t)
+                        (exwm-workspace--prompt-delete-allowed t))
+                    (exwm-workspace--prompt-for-workspace "Move to [+/-]: ")))
+                 ((and (integerp current-prefix-arg)
+                       (<= 0 current-prefix-arg (exwm-workspace--count)))
+                  current-prefix-arg)
+                 (t 0))))
   (let ((frame (exwm-workspace--workspace-from-frame-or-index frame-or-index))
         old-frame container)
     (unless id (setq id (exwm--buffer->id (window-buffer))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]