all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#28064: eshell-cmpl should not auto-complete ~/./
@ 2017-08-12 13:44 Yegor Timoshenko
  2023-03-12  8:02 ` Jim Porter
  0 siblings, 1 reply; 3+ messages in thread
From: Yegor Timoshenko @ 2017-08-12 13:44 UTC (permalink / raw)
  To: 28064

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

GNU Emacs 25.2.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.22.16)
 of 2017-08-09

To reproduce:

M-x eshell
Type `cd ~/.` and press TAB.

It will auto-complete to `cd ~/./`. I don't think it's useful.

[-- Attachment #2: Type: text/html, Size: 337 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#28064: eshell-cmpl should not auto-complete ~/./
  2017-08-12 13:44 bug#28064: eshell-cmpl should not auto-complete ~/./ Yegor Timoshenko
@ 2023-03-12  8:02 ` Jim Porter
  2023-03-19  2:58   ` Jim Porter
  0 siblings, 1 reply; 3+ messages in thread
From: Jim Porter @ 2023-03-12  8:02 UTC (permalink / raw)
  To: Yegor Timoshenko, 28064

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

On 8/12/2017 6:44 AM, Yegor Timoshenko wrote:
> M-x eshell
> Type `cd ~/.` and press TAB.
> 
> It will auto-complete to `cd ~/./`. I don't think it's useful.

A much-delayed thanks for reporting this. I looked into this, and it was 
due to 'eshell-expand-user-reference' calling 'expand-file-name' on the 
argument. This meant that when you press TAB, the "~/." gets converted 
into "/home/user" before passing the command to Pcomplete. Then 
Pcomplete would incorrectly assume you wanted to complete "/home/user", 
which just becomes "/home/user/".

Attached is a fix. Normally I'd write a regression test for this, but I 
haven't come up with a good way to do this without messing up the user's 
real home directory...

[-- Attachment #2: 0001-Don-t-over-normalize-file-names-starting-with-in-Esh.patch --]
[-- Type: text/plain, Size: 1600 bytes --]

From 74b57726ed08940e9744b77934e7e8077e359801 Mon Sep 17 00:00:00 2001
From: Jim Porter <jporterbugs@gmail.com>
Date: Sat, 11 Mar 2023 23:53:34 -0800
Subject: [PATCH] Don't over-normalize file names starting with "~" in Eshell

Previously, this would call 'expand-file-name' on the file name, but
that normalizes the value, turning something like "~/." into
"/home/user".  As a result, Pcomplete didn't work for dotfiles after
"~/" (bug#28064).

* lisp/eshell/em-dirs.el (eshell-expand-user-reference): New
function...
(eshell-expand-user-reference): ... use it.
---
 lisp/eshell/em-dirs.el | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/lisp/eshell/em-dirs.el b/lisp/eshell/em-dirs.el
index eb679b80cb5..4bc6342d422 100644
--- a/lisp/eshell/em-dirs.el
+++ b/lisp/eshell/em-dirs.el
@@ -253,11 +253,17 @@ eshell-dirs-substitute-cd
     (throw 'eshell-replace-command
 	   (eshell-parse-command "cd" (flatten-tree args)))))
 
+(defun eshell-expand-user-reference (file)
+  "Expand a user reference in FILE to its real directory name."
+  (replace-regexp-in-string
+   (rx bos (group "~" (*? anychar)) (or "/" eos))
+   #'expand-file-name file))
+
 (defun eshell-parse-user-reference ()
   "An argument beginning with ~ is a filename to be expanded."
   (when (and (not eshell-current-argument)
-	     (eq (char-after) ?~))
-    (add-to-list 'eshell-current-modifiers 'expand-file-name)
+             (eq (char-after) ?~))
+    (add-to-list 'eshell-current-modifiers #'eshell-expand-user-reference)
     (forward-char)
     (char-to-string (char-before))))
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#28064: eshell-cmpl should not auto-complete ~/./
  2023-03-12  8:02 ` Jim Porter
@ 2023-03-19  2:58   ` Jim Porter
  0 siblings, 0 replies; 3+ messages in thread
From: Jim Porter @ 2023-03-19  2:58 UTC (permalink / raw)
  To: Yegor Timoshenko, 28064-done

On 3/12/2023 12:02 AM, Jim Porter wrote:
> Attached is a fix. Normally I'd write a regression test for this, but I 
> haven't come up with a good way to do this without messing up the user's 
> real home directory...

Merged as 6afa91f7966. Closing this now.





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-03-19  2:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-12 13:44 bug#28064: eshell-cmpl should not auto-complete ~/./ Yegor Timoshenko
2023-03-12  8:02 ` Jim Porter
2023-03-19  2:58   ` Jim Porter

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.