Hi Stefan,
I tried this:
(add-hook 'eshell-mode-hook (lambda () (setq-local inhibit-field-text-motion nil)))
but this doesn't work (retains current behavior and describe-variable says that the default value for "inhibit-field-text-motion" is nil).
This worked:
(add-hook 'eshell-mode-hook (lambda () (setq-local inhibit-field-text-motion t)))
but then I lose the completions I get when I type a command like `cd <tab>`
It would be nice if I could get back the behavior I was used to in emacs 29.
Currently, I'm managing by first hitting `C-b` followed by `M-b`.
:)
Regards,
Hrishi