X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/4bc5d7668ef47295810f28a14d67b4a9e12a341f..565c0ca57e89ab1a1b4c378c615a998eb8fc0f99:/lisp/eshell/em-prompt.el diff --git a/lisp/eshell/em-prompt.el b/lisp/eshell/em-prompt.el index 8476e64fc7..6e8abd660d 100644 --- a/lisp/eshell/em-prompt.el +++ b/lisp/eshell/em-prompt.el @@ -1,16 +1,16 @@ ;;; em-prompt.el --- command prompts -;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005, 2006 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, +;; 2008, 2009, 2010 Free Software Foundation, Inc. ;; Author: John Wiegley ;; This file is part of GNU Emacs. -;; GNU Emacs is free software; you can redistribute it and/or modify +;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 2, or (at your option) -;; any later version. +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -18,25 +18,24 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to the -;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -;; Boston, MA 02110-1301, USA. +;; along with GNU Emacs. If not, see . -(provide 'em-prompt) +;;; Commentary: + +;; Most of the prompt navigation commands of `comint-mode' are +;; supported, such as C-c C-n, C-c C-p, etc. + +;;; Code: -(eval-when-compile (require 'esh-maint)) +(eval-when-compile (require 'eshell)) -(defgroup eshell-prompt nil +;;;###autoload +(eshell-defgroup eshell-prompt nil "This module provides command prompts, and navigation between them, as is common with most shells." :tag "Command prompts" :group 'eshell-module) -;;; Commentary: - -;; Most of the prompt navigation commands of `comint-mode' are -;; supported, such as C-c C-n, C-c C-p, etc. - ;;; User Variables: (defcustom eshell-prompt-load-hook '(eshell-prompt-initialize) @@ -47,9 +46,9 @@ as is common with most shells." (defcustom eshell-prompt-function (function (lambda () - (concat (eshell/pwd) + (concat (abbreviate-file-name (eshell/pwd)) (if (= (user-uid) 0) " # " " $ ")))) - "*A function that returns the Eshell prompt string. + "A function that returns the Eshell prompt string. Make sure to update `eshell-prompt-regexp' so that it will match your prompt." :type 'function @@ -77,8 +76,7 @@ re-entered for it to take effect." For highlighting other kinds of strings -- similar to shell mode's behavior -- simply use an output filer which changes text properties." :group 'eshell-prompt) -;; backward-compatibility alias -(put 'eshell-prompt-face 'face-alias 'eshell-prompt) +(define-obsolete-face-alias 'eshell-prompt-face 'eshell-prompt "22.1") (defcustom eshell-before-prompt-hook nil "*A list of functions to call before outputting the prompt." @@ -173,7 +171,11 @@ If this takes us past the end of the current line, don't skip at all." (<= (match-end 0) eol)) (goto-char (match-end 0))))) -;;; Code: +(provide 'em-prompt) + +;; Local Variables: +;; generated-autoload-file: "esh-groups.el" +;; End: -;;; arch-tag: 01c1574b-ce70-4e89-bc38-e6619f61e208 +;; arch-tag: 01c1574b-ce70-4e89-bc38-e6619f61e208 ;;; em-prompt.el ends here