mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Module to visually select windows with either ace-window or switch-window
Modularize ace-window and add switch-window as a replacement: Issue #218
This commit is contained in:
11
modules/ui/window-select/packages.el
Normal file
11
modules/ui/window-select/packages.el
Normal file
@ -0,0 +1,11 @@
|
||||
;; -*- no-byte-compile: t; -*-
|
||||
;;; ui/window-select/packages.el
|
||||
|
||||
(cond ((featurep! +switch-window)
|
||||
;; Install switch-window if the user indicated the '+switch-window' module flag
|
||||
(package! switch-window))
|
||||
((or (featurep! +ace-window) t)
|
||||
;; Install ace-window if the user selects the flag '+ace-window' or by default
|
||||
;; ... if the user did not specify a module flag
|
||||
(package! ace-window)))
|
||||
|
Reference in New Issue
Block a user