From 060f6a36d3f00cf704477c281278f53a66307933 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 29 Sep 2019 12:50:20 -0400 Subject: [PATCH] Fix +workspace/delete initially filtering workspaces SPC u SPC TAB d will prompt you for the workspace you want to delete, with the name of the current workspace prefilled into the the minibuffer. This filters out all other workspaces from the get go, which may fool you into thinking you can only delete the current workspace. Now it only selects the current workspace by default, without filtering them. --- modules/ui/workspaces/autoload/workspaces.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/workspaces/autoload/workspaces.el b/modules/ui/workspaces/autoload/workspaces.el index 215253ad3..ca0bc61b3 100644 --- a/modules/ui/workspaces/autoload/workspaces.el +++ b/modules/ui/workspaces/autoload/workspaces.el @@ -240,7 +240,7 @@ workspace to delete." (if current-prefix-arg (completing-read (format "Delete workspace (default: %s): " current-name) (+workspace-list-names) - nil nil current-name) + nil nil nil nil current-name) current-name)))) (condition-case-unless-debug ex (let ((workspaces (+workspace-list-names)))