At Mon, 3 Jun 2002 18:01:16 +0800, henry wrote: > I enter shell in emacs by M-x shell . > but I found that I cant get the previous command by press ^ > (up-arrow) , or like doskey in DOS
C-h m will list the available keys for the mode you're currently in. comint (on which shell-mode is based) doesn't really have input history, you usually move up the buffer to the command you want to retype and then press return, which copies the line down to your latest prompt. if you want a "proper" terminal, try M-x term instead. better yet, try eshell (M-x eshell), its kinda zsh-meets-bash-meets-plan9-in-elisp - very cool. -- - Gus -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
