From cdf9ae55fb14975bc8f3e9297f6dd9d6167cf0a9 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Thu, 3 Apr 2025 06:36:29 -0400 Subject: [PATCH] compat: adjust patches of modified functions --- config.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index ec04cd6..cc7284c 100644 --- a/config.org +++ b/config.org @@ -2641,6 +2641,7 @@ Emacs Everywhere is a great idea. Unfortunately, the default package on MELPA us (pcase emacs-everywhere--display-server (`(x11 . ,_) (emacs-everywhere--app-info-linux-x11)) (`(wayland . KDE) (emacs-everywhere--app-info-linux-kde)) + (`(wayland . sway) (emacs-everywhere--app-info-linux-sway)) (el-patch-add (`(wayland . Hyprland) (emacs-everywhere--app-info-linux-hyprland))) (_ (user-error "Unable to fetch app info with display server %S" @@ -4071,7 +4072,7 @@ it defaults to `project-current'." (require 'dirvish-side) (let ((fullframep (when-let ((dv (dirvish-curr))) (car (dv-layout dv)))) (visible (dirvish-side--session-visible-p)) - (path (or path (dirvish--get-project-root) default-directory))) + (path (or path (dirvish--vc-root-dir) default-directory))) (cond (fullframep (user-error "Can not create side session here")) (visible (select-window visible)) (t (dirvish-side--new path)))))