* [raman@users.sf.net: shell-mode: cursor Point loses on long prompts:]
@ 2006-10-10 16:47 Richard Stallman
2006-10-18 4:59 ` Chong Yidong
0 siblings, 1 reply; 5+ messages in thread
From: Richard Stallman @ 2006-10-10 16:47 UTC (permalink / raw)
It sounds like this is a bug in the field handling of line-move.
Would someone please investigate, then respond with the diagnosis?
I am not sure whether it is better to fix this or leave it alone,
but we should figure out what's wrong before deciding that.
------- Start of forwarded message -------
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Date: Mon, 9 Oct 2006 18:36:00 -0700
To: emacs-devel@gnu.org
From: "T. V. Raman" <raman@users.sf.net>
Subject: shell-mode: cursor Point loses on long prompts:
Reply-To: raman@users.sf.net
X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=failed
version=3.0.4
I admit this is somewhat pathological --- but I've hit it a
couple of times when in directories that have long names (with
lots of white space chars in the dir name).
(you end up running into more and more of these as you rip CDs to
MP3)
If you have bash showing the working directory, for instance my
PS1 is
\t \h \W $
then after executing commands like ls in such a directory, c-p no
longer moves point past the recently displayed prompt.
Here is a test case, comprised the lines pasted from the shell
buffer, interspersed with comments:
#cd to /tmp and make a bogus directory there:
mkdir 'a directory with a very long file name '
18:27:21 labrador tmp $ cd a\ \ \ \ \ directory\ \ \ \ \ \ \ \ \ with\ \ \ \ \ a\ \ \ \ \ very\ \ \ \ \ long\ \ \ \ \ file\ name\ /
18:27:28 labrador a directory with a very long file name $ ls
18:27:39 labrador a directory with a very long file name $
#execute ls, after the next prompt is displayed, pressing c-p
leaves point trapped after the prompt. Hitting C-c C-p moves
prompt correctly to the line where ls was executed.
- --
Best Regards,
- --raman
Email: raman@users.sf.net
WWW: http://emacspeak.sf.net/raman/
AIM: emacspeak GTalk: tv.raman.tv@gmail.com
PGP: http://emacspeak.sf.net/raman/raman-almaden.asc
Google: tv+raman
IRC: irc://irc.freenode.net/#emacs
_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel
------- End of forwarded message -------
^ permalink raw reply [flat|nested] 5+ messages in thread
* [raman@users.sf.net: shell-mode: cursor Point loses on long prompts:]
@ 2006-10-17 12:34 Richard Stallman
0 siblings, 0 replies; 5+ messages in thread
From: Richard Stallman @ 2006-10-17 12:34 UTC (permalink / raw)
[I sent this message a week ago but did not get a response.]
It sounds like this is a bug in the field handling of line-move.
Would someone please investigate, then respond with the diagnosis?
I am not sure whether it is better to fix this or leave it alone,
but we should figure out what's wrong before deciding that.
------- Start of forwarded message -------
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Date: Mon, 9 Oct 2006 18:36:00 -0700
To: emacs-devel@gnu.org
From: "T. V. Raman" <raman@users.sf.net>
Subject: shell-mode: cursor Point loses on long prompts:
Reply-To: raman@users.sf.net
X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=failed
version=3.0.4
I admit this is somewhat pathological --- but I've hit it a
couple of times when in directories that have long names (with
lots of white space chars in the dir name).
(you end up running into more and more of these as you rip CDs to
MP3)
If you have bash showing the working directory, for instance my
PS1 is
\t \h \W $
then after executing commands like ls in such a directory, c-p no
longer moves point past the recently displayed prompt.
Here is a test case, comprised the lines pasted from the shell
buffer, interspersed with comments:
#cd to /tmp and make a bogus directory there:
mkdir 'a directory with a very long file name '
18:27:21 labrador tmp $ cd a\ \ \ \ \ directory\ \ \ \ \ \ \ \ \ with\ \ \ \ \ a\ \ \ \ \ very\ \ \ \ \ long\ \ \ \ \ file\ name\ /
18:27:28 labrador a directory with a very long file name $ ls
18:27:39 labrador a directory with a very long file name $
#execute ls, after the next prompt is displayed, pressing c-p
leaves point trapped after the prompt. Hitting C-c C-p moves
prompt correctly to the line where ls was executed.
- --
Best Regards,
- --raman
Email: raman@users.sf.net
WWW: http://emacspeak.sf.net/raman/
AIM: emacspeak GTalk: tv.raman.tv@gmail.com
PGP: http://emacspeak.sf.net/raman/raman-almaden.asc
Google: tv+raman
IRC: irc://irc.freenode.net/#emacs
_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel
------- End of forwarded message -------
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [raman@users.sf.net: shell-mode: cursor Point loses on long prompts:]
2006-10-10 16:47 Richard Stallman
@ 2006-10-18 4:59 ` Chong Yidong
0 siblings, 0 replies; 5+ messages in thread
From: Chong Yidong @ 2006-10-18 4:59 UTC (permalink / raw)
Cc: emacs-devel
Richard Stallman <rms@gnu.org> writes:
> It sounds like this is a bug in the field handling of line-move.
> Would someone please investigate, then respond with the diagnosis?
The trouble is that line-move-1 calls `beginning-of-line', then
(vertical-motion -1). On field on a continued line, this doesn't move
far enough, and we return to the original position when trying to
return to the old column. I installed a hack to work around this.
> Here is a test case, comprised the lines pasted from the shell
> buffer, interspersed with comments:
>
> #cd to /tmp and make a bogus directory there:
> mkdir 'a directory with a very long file name '
> 18:27:21 labrador tmp $ cd a\ \ \ \ \ directory\ \ \ \ \ \ \ \ \ with\ \ \ \ \ a\ \ \ \ \ very\ \ \ \ \ long\ \ \ \ \ file\ name\ /
> 18:27:28 labrador a directory with a very long file name $ ls
> 18:27:39 labrador a directory with a very long file name $
>
> #execute ls, after the next prompt is displayed, pressing c-p
> leaves point trapped after the prompt. Hitting C-c C-p moves
> prompt correctly to the line where ls was executed.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [raman@users.sf.net: shell-mode: cursor Point loses on long prompts:]
@ 2006-10-24 17:43 Richard Stallman
2006-10-24 19:51 ` Chong Yidong
0 siblings, 1 reply; 5+ messages in thread
From: Richard Stallman @ 2006-10-24 17:43 UTC (permalink / raw)
[I sent this message twice but did not get a response.]
It sounds like this is a bug in the field handling of line-move.
Would someone please investigate, then respond with the diagnosis?
I am not sure whether it is better to fix this or leave it alone,
but we should figure out what's wrong before deciding that.
------- Start of forwarded message -------
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Date: Mon, 9 Oct 2006 18:36:00 -0700
To: emacs-devel@gnu.org
From: "T. V. Raman" <raman@users.sf.net>
Subject: shell-mode: cursor Point loses on long prompts:
Reply-To: raman@users.sf.net
X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=failed
version=3.0.4
I admit this is somewhat pathological --- but I've hit it a
couple of times when in directories that have long names (with
lots of white space chars in the dir name).
(you end up running into more and more of these as you rip CDs to
MP3)
If you have bash showing the working directory, for instance my
PS1 is
\t \h \W $
then after executing commands like ls in such a directory, c-p no
longer moves point past the recently displayed prompt.
Here is a test case, comprised the lines pasted from the shell
buffer, interspersed with comments:
#cd to /tmp and make a bogus directory there:
mkdir 'a directory with a very long file name '
18:27:21 labrador tmp $ cd a\ \ \ \ \ directory\ \ \ \ \ \ \ \ \ with\ \ \ \ \ a\ \ \ \ \ very\ \ \ \ \ long\ \ \ \ \ file\ name\ /
18:27:28 labrador a directory with a very long file name $ ls
18:27:39 labrador a directory with a very long file name $
#execute ls, after the next prompt is displayed, pressing c-p
leaves point trapped after the prompt. Hitting C-c C-p moves
prompt correctly to the line where ls was executed.
- --
Best Regards,
- --raman
Email: raman@users.sf.net
WWW: http://emacspeak.sf.net/raman/
AIM: emacspeak GTalk: tv.raman.tv@gmail.com
PGP: http://emacspeak.sf.net/raman/raman-almaden.asc
Google: tv+raman
IRC: irc://irc.freenode.net/#emacs
_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel
------- End of forwarded message -------
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [raman@users.sf.net: shell-mode: cursor Point loses on long prompts:]
2006-10-24 17:43 [raman@users.sf.net: shell-mode: cursor Point loses on long prompts:] Richard Stallman
@ 2006-10-24 19:51 ` Chong Yidong
0 siblings, 0 replies; 5+ messages in thread
From: Chong Yidong @ 2006-10-24 19:51 UTC (permalink / raw)
Cc: emacs-devel
Richard Stallman <rms@gnu.org> writes:
> [I sent this message twice but did not get a response.]
I fixed this about two weeks ago.
> It sounds like this is a bug in the field handling of line-move.
> Would someone please investigate, then respond with the diagnosis?
>
> I am not sure whether it is better to fix this or leave it alone,
> but we should figure out what's wrong before deciding that.
>
> From: "T. V. Raman" <raman@users.sf.net>
> Subject: shell-mode: cursor Point loses on long prompts:
> To: emacs-devel@gnu.org
>
> I admit this is somewhat pathological --- but I've hit it a
> couple of times when in directories that have long names (with
> lots of white space chars in the dir name).
> (you end up running into more and more of these as you rip CDs to
> MP3)
>
> If you have bash showing the working directory, for instance my
> PS1 is
>
> \t \h \W $
>
>
> then after executing commands like ls in such a directory, c-p no
> longer moves point past the recently displayed prompt.
>
> Here is a test case, comprised the lines pasted from the shell
> buffer, interspersed with comments:
>
> #cd to /tmp and make a bogus directory there:
> mkdir 'a directory with a very long file name '
> 18:27:21 labrador tmp $ cd a\ \ \ \ \ directory\ \ \ \ \ \ \ \ \ with\ \ \ \ \ a\ \ \ \ \ very\ \ \ \ \ long\ \ \ \ \ file\ name\ /
> 18:27:28 labrador a directory with a very long file name $ ls
> 18:27:39 labrador a directory with a very long file name $
>
> #execute ls, after the next prompt is displayed, pressing c-p
> leaves point trapped after the prompt. Hitting C-c C-p moves
> prompt correctly to the line where ls was executed.
>
> - --
> Best Regards,
> - --raman
>
>
> Email: raman@users.sf.net
> WWW: http://emacspeak.sf.net/raman/
> AIM: emacspeak GTalk: tv.raman.tv@gmail.com
> PGP: http://emacspeak.sf.net/raman/raman-almaden.asc
> Google: tv+raman
> IRC: irc://irc.freenode.net/#emacs
>
>
> _______________________________________________
> Emacs-devel mailing list
> Emacs-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-devel
> ----------
>
>
>
>
> _______________________________________________
> Emacs-devel mailing list
> Emacs-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-10-24 19:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-24 17:43 [raman@users.sf.net: shell-mode: cursor Point loses on long prompts:] Richard Stallman
2006-10-24 19:51 ` Chong Yidong
-- strict thread matches above, loose matches on Subject: below --
2006-10-17 12:34 Richard Stallman
2006-10-10 16:47 Richard Stallman
2006-10-18 4:59 ` Chong Yidong
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).