all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Felicián Németh" <felician.nemeth@gmail.com>
To: Michael Albinus <michael.albinus@gmx.de>
Cc: 34221@debbugs.gnu.org, Dmitry Gutov <dgutov@yandex.ru>
Subject: bug#34221: [PATCH] Make project-files work with remote files
Date: Wed, 30 Jan 2019 09:15:22 +0100	[thread overview]
Message-ID: <CAGLaV2b_wyOS=JvZ_yfQgPMRBnUT=i9MNpWGV2J1MfdLwRuuZg@mail.gmail.com> (raw)
In-Reply-To: <87tvhtgp7r.fsf@gmx.de>

[-- Attachment #1: Type: text/plain, Size: 128 bytes --]

Hi Michael,

I've attached another version of the patch.  Hopefully, this will be
the last one.

Thanks again,
Felicián

[-- Attachment #2: 0001-Make-project-files-work-with-remote-files.patch --]
[-- Type: text/x-patch, Size: 2081 bytes --]

From 084718636decb292b9da4ab04c1d782dc61e4d1d Mon Sep 17 00:00:00 2001
From: Felician Nemeth <felician.nemeth@gmail.com>
Date: Tue, 29 Jan 2019 17:32:39 +0100
Subject: [PATCH] Make project-files work with remote files

* lisp/progmodes/project.el (project--file-remote-name): New function.
(project--files-in-directory): Use it to support remote files.
---
 lisp/progmodes/project.el | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index 3603e751fe..2da0348c6e 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -186,12 +186,22 @@ project--find-in-directory
                                   (project--dir-ignores project dir)))
    (or dirs (project-roots project))))
 
+(defun project--file-remote-name (local-files)
+  "Return LOCAL-FILES as if they were on the system of `default-directory'."
+  (let ((remote-id (file-remote-p default-directory)))
+    (if (not remote-id)
+        local-files
+      (mapcar (lambda (file)
+                (concat remote-id file))
+              local-files))))
+
 (defun project--files-in-directory (dir ignores &optional files)
   (require 'find-dired)
   (defvar find-name-arg)
-  (let ((command (format "%s %s %s -type f %s -print0"
+  (let ((default-directory dir)
+        (command (format "%s %s %s -type f %s -print0"
                          find-program
-                         dir
+                         (file-local-name dir)
                          (xref--find-ignores-arguments
                           ignores
                           (expand-file-name dir))
@@ -205,7 +215,8 @@ project--files-in-directory
                                      " "
                                      (shell-quote-argument ")"))"")
                          )))
-    (split-string (shell-command-to-string command) "\0" t)))
+    (project--file-remote-name
+     (split-string (shell-command-to-string command) "\0" t))))
 
 (defgroup project-vc nil
   "Project implementation using the VC package."
-- 
2.11.0


  reply	other threads:[~2019-01-30  8:15 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-27 12:21 bug#34221: [PATCH] Make project-files work with remote files Felicián Németh
2019-01-28  7:12 ` Michael Albinus
2019-01-28  8:10   ` Felicián Németh
2019-01-28  8:29     ` Michael Albinus
2019-01-30  8:15       ` Felicián Németh [this message]
2019-01-30  8:34         ` Michael Albinus
2019-02-01  3:16           ` Dmitry Gutov
2019-02-01  8:14             ` Michael Albinus
2019-02-02  0:10               ` Dmitry Gutov
2019-02-02  8:36                 ` Felicián Németh
2019-02-02  9:18                   ` Michael Albinus
2019-02-02 10:16                     ` Felicián Németh
2019-02-02 11:59                       ` Dmitry Gutov
2019-02-02 12:13                         ` Michael Albinus
2019-02-07 11:05                           ` Dmitry Gutov
2019-02-07 11:14                             ` Michael Albinus
2019-02-02 12:26                       ` Michael Albinus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAGLaV2b_wyOS=JvZ_yfQgPMRBnUT=i9MNpWGV2J1MfdLwRuuZg@mail.gmail.com' \
    --to=felician.nemeth@gmail.com \
    --cc=34221@debbugs.gnu.org \
    --cc=dgutov@yandex.ru \
    --cc=michael.albinus@gmx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.