Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

changing comint-input-ring-file-name in process in shell

8 views
Skip to first unread message

Seb

unread,
Nov 6, 2009, 7:50:05 PM11/6/09
to help-gn...@gnu.org
Hi,

A program that runs in shell mode uses a local history file. Therefore,
I'd like to set `comint-input-ring-file-name' to that file. I use the
program by doing "M-x shell", and then start the program in the shell
buffer by typing its name and hitting ENTER. The program's prompt
replaces the shell's at this point. I thought that subsequently
evaluating the following in the shell buffer would allow me to cycle
through the local history file:

(setq comint-input-ring-file-name
"/path/to/local/.bash_history"))

However, cycling with "M-p" or "M-n" cycles the input through the
initial `comint-input-ring-file-name' set by the shell buffer, in my
case ~/.bash_history since I'm using bash. Doing "C-h v
comint-input-ring-file-name" does show the new value
("/path/to/loca/.bash_history"), so I don't understand what is going
on. Any help would be appreciated.

Cheers,

--
Seb

Kevin Rodgers

unread,
Nov 7, 2009, 2:10:28 AM11/7/09
to help-gn...@gnu.org

The file is read once by shell-mode (not comint-mode), when you execute
`M-x shell'. That is why the doc string for comint-input-ring-file-name
says "This variable is buffer-local, and is a good thing to set in mode hooks."

How about:

(let ((comint-input-ring-file-name "/path/to/local/.bash_history"))
(shell))

--
Kevin Rodgers
Denver, Colorado, USA

Seb

unread,
Nov 7, 2009, 4:44:09 PM11/7/09
to help-gn...@gnu.org
On Sat, 07 Nov 2009 00:10:28 -0700,
Kevin Rodgers <kevin.d...@gmail.com> wrote:

[...]

> How about:

> (let ((comint-input-ring-file-name "/path/to/local/.bash_history"))
> (shell))

Thanks for the explanation Kevin. There is no difference with your
suggestion, however. In the resulting shell buffer I see:

,-----[ C-h v comint-input-ring-file-name RET ]
| comint-input-ring-file-name's value is "~/.bash_history"
| Local in buffer *shell*; global value is nil
|
| Documentation:
| If non-nil, name of the file to read/write input history.
| See also `comint-read-input-ring' and `comint-write-input-ring'.


|
| This variable is buffer-local, and is a good thing to set in mode hooks.
|

| You can customize this variable.
|
| [back]
`-----

and cycling shows that: i.e. "M-n" and "M-p" cycle through
~/bash_history, rather than the value in the `let' statement. This is
strange. This is on Emacs 23.


--
Seb

Kevin Rodgers

unread,
Nov 11, 2009, 9:47:02 AM11/11/09
to help-gn...@gnu.org

How do you set comint-input-ring-file-name to "~/.bash_history"?

i.e. at the top-level or within shell-mode-hook?

If the latter, the hook will override the let binding.

0 new messages