This file is indexed.

/usr/share/emacs/site-lisp/emacs-goodies-el/lcomp.el is in emacs-goodies-el 35.12.

This file is owned by root:root, with mode 0o655.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
;;; lcomp.el --- list completion hacks!

;; Copyright (C) 2002, 2004, 2010 by Taiki SUGAWARA

;; Author: Taiki SUGAWARA <buzz.taiki@gmail.com>
;; Keywords: tools, convenience
;; Version: 0.03
;; Time-stamp: <2010-02-08 17:16:51 UTC taiki>
;; URL: http://www.emacswiki.org/cgi-bin/wiki/lcomp.el
;; URL: http://bitbucket.org/buzztaiki/elisp/src/tip/lcomp.el

;; This program 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 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This package provides the following features:
;;
;;  - `lcomp-mode': make the completions buffer window disappear after
;;	use.
;;
;;   - `lcomp-keys-mode': add keybindings to the completions buffer.
;;
;; To use this package, add these lines into your ~/.emacs file:
;;
;;     (require 'lcomp)
;;     (lcomp-mode 1)
;;     (lcomp-keys-mode 1)
;;
;; The completions buffer is usually only dismissed after completion
;; when it is created from minibuffer completion, but `lcomp-mode'
;; makes it get dismissed correctly from any buffer (e.g. shell, or by
;; calling `comint-dynamic-complete-filename').

;;; Key Bindings:

;; `lcomp-mode' adds global keybindings if enabled:
;;    "M-v"	  -> lcomp-select-completion-window-or-original
;;     
;; `lcomp-keys-mode' adds keybindings to the completions buffer if enabled:
;;    "C-i"	  -> next-completion
;;    "M-C-i"	  -> previous-completion
;;    "f"	  -> next-completion
;;    "b"	  -> previous-completion
;;    "n"	  -> next-line
;;    "p"	  -> previous-line
;;    " "	  -> scroll-up
;;    [del]	  -> scroll-down
;;    [backspace] -> scroll-down
;;    "q"	  -> delete-completion-window

;;; History:
;; 
;;  2009-02-22 Peter S Galbraith <psgdebian.org>
;;   - Reinsert defcustom `lcomp-enable' as an alternate and user-frienfly
;;     method to enable the advice.

;;; Code:
(require 'easy-mmode)

;; lcomp
(defvar lcomp-before-completion-winconf nil
  "This variable holds the before-completion window configulation.")
(defvar lcomp-completion-halfway-p nil
  "If non-nil, completion is halfway now.")
(defvar lcomp-display-completion-buffer-p nil
  "If non-nil completion buffer is displayed.")
(defvar lcomp-completion-buffer nil
  "This variable holds the completion buffer.")

(defvar lcomp-mode-map
  (let ((map (or (and (boundp 'lcomp-mode-map)
		      (keymapp (symbol-value 'lcomp-mode-map))
		      (symbol-value 'lcomp-mode-map))
		 (make-sparse-keymap))))
    (define-key map "\M-v" 'lcomp-select-completion-window-or-original)
    map))

(defadvice try-completion (after lcomp-ad disable)
  (setq lcomp-completion-halfway-p (stringp ad-return-value)))

(defadvice choose-completion (after lcomp-ad disable)
  (when lcomp-before-completion-winconf
    (lcomp-resume-before-completion-winconf-1)))

(defadvice delete-completion-window (around lcomp-ad disable)
  (if lcomp-before-completion-winconf
      (let ((buf completion-reference-buffer))
	(when (buffer-live-p buf)
	  (switch-to-buffer buf))
	(lcomp-resume-before-completion-winconf))
    ad-do-it))

(defun lcomp-setup-completion ()
  (when (and (not lcomp-before-completion-winconf)
	     (not (window-minibuffer-p)))
    (setq lcomp-display-completion-buffer-p t)
    (setq lcomp-completion-buffer standard-output)
    (setq lcomp-before-completion-winconf (current-window-configuration))))

(defun lcomp-resume-before-completion-winconf-1 ()
  (condition-case err
      (set-window-configuration lcomp-before-completion-winconf)
    (error
     (message "%s occured. bat ignore." (error-message-string err))))
  (setq lcomp-before-completion-winconf nil)
  (setq lcomp-completion-buffer nil))

(defun lcomp-resume-before-completion-winconf ()
  (when (and lcomp-before-completion-winconf
	     (not (or (and (eq this-command 'self-insert-command)
			   (string-match "\\(\\sw\\|\\s_\\)"
					 (this-command-keys)))
		      (eq (current-buffer) lcomp-completion-buffer)
		      (window-minibuffer-p)
		      lcomp-display-completion-buffer-p
		      lcomp-completion-halfway-p)))
    (let ((buf (current-buffer)))
      (lcomp-resume-before-completion-winconf-1)
      (when (and (not (eq buf (current-buffer)))
		 (buffer-live-p buf))
	(switch-to-buffer buf))))
  (setq lcomp-display-completion-buffer-p nil)
  (setq lcomp-completion-halfway-p nil))

(defun lcomp-select-completion-window ()
  (interactive)
  (when (and lcomp-completion-buffer
	     (get-buffer-window lcomp-completion-buffer))
    (select-window (get-buffer-window lcomp-completion-buffer))))

(defun lcomp-select-completion-window-or-original ()
  (interactive)
  (or (lcomp-select-completion-window)
      (let ((minor-mode-overriding-map-alist
	     '((lcomp-mode . nil))))
	(call-interactively (or (key-binding (this-command-keys-vector))
				'ignore)))))

(defun lcomp--install ()
  (add-hook 'completion-setup-hook 'lcomp-setup-completion)
  (add-hook 'post-command-hook 'lcomp-resume-before-completion-winconf)

  (ad-enable-regexp "^lcomp-ad$")
  (ad-activate-regexp "^lcomp-ad$" t))


(defun lcomp--uninstall ()
  (remove-hook 'completion-setup-hook 'lcomp-setup-completion)
  (remove-hook 'post-command-hook 'lcomp-resume-before-completion-winconf)

  (ad-disable-regexp "^lcomp-ad$")
  (ad-activate-regexp "^lcomp-ad$" t))

;;;###autoload
(define-minor-mode lcomp-mode
  "Auto close completion window mode."
  :group 'lcomp
  :global t
  (if lcomp-mode
      (lcomp--install)
    (lcomp--uninstall)))

;; lcomp backward compatibility
(make-obsolete 'lcomp-install 'lcomp-mode)
(make-obsolete 'lcomp-uinstall 'lcomp-mode)
(make-obsolete 'lcomp-activate-advices 'lcomp-mode)

(defun lcomp-install ()
  "Install lcomp.
This adds some hooks, advices, key definitions."
  (interactive)
  (lcomp-mode 1))

(defun lcomp-uninstall ()
  "Uninstall lcomp.
This removes some hooks, advices, key definitions."
  (interactive)
  (lcomp-mode -1))

(defun lcomp-activate-advices (on)
  "Activate lcomp advices if ON is non-nil, disable otherwise."
  (if on
      (lcomp-mode 1)
    (lcomp-mode -1)))

;; lcomp-keys
(defvar lcomp-keys-override-map
  (let ((map (or (and (boundp 'lcomp-keys-override-map)
		      (keymapp (symbol-value 'lcomp-keys-override-map))
		      (symbol-value 'lcomp-keys-override-map))
		 (make-sparse-keymap))))
    (define-key map "\C-i" 'next-completion)
    (define-key map "\M-\C-i" 'previous-completion)
    (define-key map "f" 'next-completion)
    (define-key map "b" 'previous-completion)
    (define-key map "n" 'next-line)
    (define-key map "p" 'previous-line)
    (define-key map " " 'scroll-up)
    (define-key map [del] 'scroll-down)
    (define-key map [backspace] 'scroll-down)
    (define-key map "q" 'delete-completion-window)
    map))

(defun lcomp-keys-override ()
  (push (cons 'lcomp-keys-mode
	      lcomp-keys-override-map)
	minor-mode-overriding-map-alist))

;;;###autoload
(define-minor-mode lcomp-keys-mode
  "Add keybindings to the completions buffer.

\\{lcomp-keys-override-map}"
  :global t
  (if lcomp-keys-mode
      (add-hook 'completion-list-mode-hook 'lcomp-keys-override)
    (remove-hook 'completion-list-mode-hook 'lcomp-keys-override)))

(defgroup lcomp nil
  "list-completion hacks."
  :group 'completion)

(defcustom lcomp-enable nil
  "*Enable advice in lcomp to make completion buffer disappear after use."
  :type 'boolean
  :set (lambda (symbol value)
	 (set-default symbol value)
	 (cond
          ((and lcomp-enable
                (featurep 'lcomp))
           (lcomp-mode 1)
           (lcomp-keys-mode 1))
          ((and (not lcomp-enable)
                (featurep 'lcomp))
           (lcomp-mode 0)
           (lcomp-keys-mode 0))))
  :require 'lcomp
  :group 'lcomp)

(provide 'lcomp)

;;; lcomp.el ends here