Update comment.
[emacs.git] / lisp / skeleton.el
blobb75833954fc6a8383279f0d0cb7cf147aaab49f7
1 ;;; skeleton.el --- Lisp language extension for writing statement skeletons
3 ;; Copyright (C) 1993, 1994, 1995, 1996 by Free Software Foundation, Inc.
5 ;; Author: Daniel Pfeiffer <occitan@esperanto.org>
6 ;; Maintainer: FSF
7 ;; Keywords: extensions, abbrev, languages, tools
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;; A very concise language extension for writing structured statement
29 ;; skeleton insertion commands for programming language modes. This
30 ;; originated in shell-script mode and was applied to ada-mode's
31 ;; commands which shrunk to one third. And these commands are now
32 ;; user configurable.
34 ;;; Code:
36 ;; page 1: statement skeleton language definition & interpreter
37 ;; page 2: paired insertion
38 ;; page 3: mirror-mode, an example for setting up paired insertion
41 (defvar skeleton-transformation nil
42 "*If non-nil, function applied to literal strings before they are inserted.
43 It should take strings and characters and return them transformed, or nil
44 which means no transformation.
45 Typical examples might be `upcase' or `capitalize'.")
47 ; this should be a fourth argument to defvar
48 (put 'skeleton-transformation 'variable-interactive
49 "aTransformation function: ")
52 (defvar skeleton-autowrap t
53 "Controls wrapping behaviour of functions created with `define-skeleton'.
54 When the region is visible (due to `transient-mark-mode' or marking a region
55 with the mouse) and this is non-`nil' and the function was called without an
56 explicit ARG, then the ARG defaults to -1, i.e. wrapping around the visible
57 region.
59 We will probably delete this variable in a future Emacs version
60 unless we get a substantial number of complaints about the auto-wrap
61 feature.")
63 (defvar skeleton-end-hook
64 (lambda ()
65 (or (eolp) (newline-and-indent)))
66 "Hook called at end of skeleton but before going to point of interest.
67 By default this moves out anything following to next line.
68 The variables `v1' and `v2' are still set when calling this.")
71 ;;;###autoload
72 (defvar skeleton-filter 'identity
73 "Function for transforming a skeleton proxy's aliases' variable value.")
75 (defvar skeleton-untabify t
76 "When non-`nil' untabifies when deleting backwards with element -ARG.")
78 (defvar skeleton-newline-indent-rigidly nil
79 "When non-`nil', indent rigidly under current line for element `\\n'.
80 Else use mode's `indent-line-function'.")
82 (defvar skeleton-further-elements ()
83 "A buffer-local varlist (see `let') of mode specific skeleton elements.
84 These variables are bound while interpreting a skeleton. Their value may
85 in turn be any valid skeleton element if they are themselves to be used as
86 skeleton elements.")
87 (make-variable-buffer-local 'skeleton-further-elements)
90 (defvar skeleton-subprompt
91 (substitute-command-keys
92 "RET, \\<minibuffer-local-map>\\[abort-recursive-edit] or \\[help-command]")
93 "*Replacement for %s in prompts of recursive subskeletons.")
96 (defvar skeleton-abbrev-cleanup nil
97 "Variable used to delete the character that led to abbrev expansion.")
100 (defvar skeleton-debug nil
101 "*If non-nil `define-skeleton' will override previous definition.")
103 (defvar skeleton-positions nil
104 "List of positions marked with @, after skeleton insertion.
105 The list describes the most recent skeleton insertion, and its elements
106 are integer buffer positions in the reverse order of the insertion order.")
108 ;; reduce the number of compiler warnings
109 (defvar skeleton)
110 (defvar skeleton-modified)
111 (defvar skeleton-point)
112 (defvar skeleton-regions)
114 ;;;###autoload
115 (defmacro define-skeleton (command documentation &rest skeleton)
116 "Define a user-configurable COMMAND that enters a statement skeleton.
117 DOCUMENTATION is that of the command, while the variable of the same name,
118 which contains the skeleton, has a documentation to that effect.
119 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'."
120 (if skeleton-debug
121 (set command skeleton))
122 `(progn
123 (defun ,command (&optional str arg)
124 ,(concat documentation
125 (if (string-match "\n\\>" documentation)
126 "" "\n")
127 "\n"
128 "This is a skeleton command (see `skeleton-insert').
129 Normally the skeleton text is inserted at point, with nothing \"inside\".
130 If there is a highlighted region, the skeleton text is wrapped
131 around the region text.
133 A prefix argument ARG says to wrap the skeleton around the next ARG words.
134 A prefix argument of -1 says to wrap around region, even if not highlighted.
135 A prefix argument of zero says to wrap around zero words---that is, nothing.
136 This is a way of overriding the use of a highlighted region.")
137 (interactive "*P\nP")
138 (skeleton-proxy-new ',skeleton str arg))))
140 ;;;###autoload
141 (defun skeleton-proxy-new (skeleton &optional str arg)
142 "Insert skeleton defined by variable of same name (see `skeleton-insert').
143 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
144 If no ARG was given, but the region is visible, ARG defaults to -1 depending
145 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
146 This command can also be an abbrev expansion (3rd and 4th columns in
147 \\[edit-abbrevs] buffer: \"\" command-name).
149 When called as a function, optional first argument STR may also be a string
150 which will be the value of `str' whereas the skeleton's interactor is then
151 ignored."
152 (interactive "*P\nP")
153 (setq skeleton (funcall skeleton-filter skeleton))
154 (if (not skeleton)
155 (if (memq this-command '(self-insert-command
156 skeleton-pair-insert-maybe
157 expand-abbrev))
158 (setq buffer-undo-list (primitive-undo 1 buffer-undo-list)))
159 (skeleton-insert skeleton
160 (if (setq skeleton-abbrev-cleanup
161 (or (eq this-command 'self-insert-command)
162 (eq this-command
163 'skeleton-pair-insert-maybe)))
165 ;; Pretend C-x a e passed its prefix arg to us
166 (if (or arg current-prefix-arg)
167 (prefix-numeric-value (or arg
168 current-prefix-arg))
169 (and skeleton-autowrap
170 (or (eq last-command 'mouse-drag-region)
171 (and transient-mark-mode mark-active))
172 -1)))
173 (if (stringp str)
174 str))
175 (and skeleton-abbrev-cleanup
176 (setq skeleton-abbrev-cleanup (point))
177 (add-hook 'post-command-hook 'skeleton-abbrev-cleanup nil t))))
179 ;; This command isn't meant to be called, only its aliases with meaningful
180 ;; names are.
181 ;;;###autoload
182 (defun skeleton-proxy (&optional str arg)
183 "Insert skeleton defined by variable of same name (see `skeleton-insert').
184 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
185 If no ARG was given, but the region is visible, ARG defaults to -1 depending
186 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
187 This command can also be an abbrev expansion (3rd and 4th columns in
188 \\[edit-abbrevs] buffer: \"\" command-name).
190 When called as a function, optional first argument STR may also be a string
191 which will be the value of `str' whereas the skeleton's interactor is then
192 ignored."
193 (interactive "*P\nP")
194 (let ((function (nth 1 (backtrace-frame 1))))
195 (if (eq function 'nth) ; uncompiled Lisp function
196 (setq function (nth 1 (backtrace-frame 5)))
197 (if (eq function 'byte-code) ; tracing byte-compiled function
198 (setq function (nth 1 (backtrace-frame 2)))))
199 (if (not (setq function (funcall skeleton-filter (symbol-value function))))
200 (if (memq this-command '(self-insert-command
201 skeleton-pair-insert-maybe
202 expand-abbrev))
203 (setq buffer-undo-list (primitive-undo 1 buffer-undo-list)))
204 (skeleton-insert function
205 (if (setq skeleton-abbrev-cleanup
206 (or (eq this-command 'self-insert-command)
207 (eq this-command
208 'skeleton-pair-insert-maybe)))
210 ;; Pretend C-x a e passed its prefix arg to us
211 (if (or arg current-prefix-arg)
212 (prefix-numeric-value (or arg
213 current-prefix-arg))
214 (and skeleton-autowrap
215 (or (eq last-command 'mouse-drag-region)
216 (and transient-mark-mode mark-active))
217 -1)))
218 (if (stringp str)
219 str))
220 (and skeleton-abbrev-cleanup
221 (setq skeleton-abbrev-cleanup (point))
222 (add-hook 'post-command-hook 'skeleton-abbrev-cleanup nil t)))))
225 (defun skeleton-abbrev-cleanup (&rest list)
226 "Value for `post-command-hook' to remove char that expanded abbrev."
227 (if (integerp skeleton-abbrev-cleanup)
228 (progn
229 (delete-region skeleton-abbrev-cleanup (point))
230 (setq skeleton-abbrev-cleanup)
231 (remove-hook 'post-command-hook 'skeleton-abbrev-cleanup t))))
234 ;;;###autoload
235 (defun skeleton-insert (skeleton &optional regions str)
236 "Insert the complex statement skeleton SKELETON describes very concisely.
238 With optional second argument REGIONS, wrap first interesting point
239 \(`_') in skeleton around next REGIONS words, if REGIONS is positive.
240 If REGIONS is negative, wrap REGIONS preceding interregions into first
241 REGIONS interesting positions \(successive `_'s) in skeleton.
243 An interregion is the stretch of text between two contiguous marked
244 points. If you marked A B C [] (where [] is the cursor) in
245 alphabetical order, the 3 interregions are simply the last 3 regions.
246 But if you marked B A [] C, the interregions are B-A, A-[], []-C.
248 The optional third argument STR, if specified, is the value for the
249 variable `str' within the skeleton. When this is non-nil, the
250 interactor gets ignored, and this should be a valid skeleton element.
252 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
253 not needed, a prompt-string or an expression for complex read functions.
255 If ELEMENT is a string or a character it gets inserted (see also
256 `skeleton-transformation'). Other possibilities are:
258 \\n go to next line and indent according to mode
259 _ interesting point, interregion here, point after termination
260 > indent line (or interregion if > _) according to major mode
261 @ add position to `skeleton-positions'
262 & do next ELEMENT if previous moved point
263 | do next ELEMENT if previous didn't move point
264 -num delete num preceding characters (see `skeleton-untabify')
265 resume: skipped, continue here if quit is signaled
266 nil skipped
268 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
269 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
270 different inputs. The SKELETON is processed as often as the user enters a
271 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
272 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
273 a subskeleton is a prompt-string which contains a \".. %s ..\" it is
274 formatted with `skeleton-subprompt'. Such an INTERACTOR may also be a list of
275 strings with the subskeleton being repeated once for each string.
277 Quoted Lisp expressions are evaluated for their side-effects.
278 Other Lisp expressions are evaluated and the value treated as above.
279 Note that expressions may not return `t' since this implies an
280 endless loop. Modes can define other symbols by locally setting them
281 to any valid skeleton element. The following local variables are
282 available:
284 str first time: read a string according to INTERACTOR
285 then: insert previously read string once more
286 help help-form during interaction with the user or `nil'
287 input initial input (string or cons with index) while reading str
288 v1, v2 local variables for memorizing anything you want
290 When done with skeleton, but before going back to `_'-point call
291 `skeleton-end-hook' if that is non-`nil'."
292 (let ((skeleton-regions regions))
293 (and skeleton-regions
294 (setq skeleton-regions
295 (if (> skeleton-regions 0)
296 (list (point-marker)
297 (save-excursion (forward-word skeleton-regions)
298 (point-marker)))
299 (setq skeleton-regions (- skeleton-regions))
300 ;; copy skeleton-regions - 1 elements from `mark-ring'
301 (let ((l1 (cons (mark-marker) mark-ring))
302 (l2 (list (point-marker))))
303 (while (and l1 (> skeleton-regions 0))
304 (setq l2 (cons (car l1) l2)
305 skeleton-regions (1- skeleton-regions)
306 l1 (cdr l1)))
307 (sort l2 '<))))
308 (goto-char (car skeleton-regions))
309 (setq skeleton-regions (cdr skeleton-regions)))
310 (let ((beg (point))
311 skeleton-modified skeleton-point resume: help input v1 v2)
312 (setq skeleton-positions nil)
313 (unwind-protect
314 (eval `(let ,skeleton-further-elements
315 (skeleton-internal-list skeleton str)))
316 (run-hooks 'skeleton-end-hook)
317 (sit-for 0)
318 (or (pos-visible-in-window-p beg)
319 (progn
320 (goto-char beg)
321 (recenter 0)))
322 (if skeleton-point
323 (goto-char skeleton-point))))))
325 (defun skeleton-read (prompt &optional initial-input recursive)
326 "Function for reading a string from the minibuffer within skeletons.
328 PROMPT must be a string or a form that evaluates to a string.
329 It may contain a `%s' which will be replaced by `skeleton-subprompt'.
330 If non-`nil' second arg INITIAL-INPUT or variable `input' is a string or
331 cons with index to insert before reading. If third arg RECURSIVE is non-`nil'
332 i.e. we are handling the iterator of a subskeleton, returns empty string if
333 user didn't modify input.
334 While reading, the value of `minibuffer-help-form' is variable `help' if that
335 is non-nil or a default string."
336 (let ((minibuffer-help-form (or (if (boundp 'help) (symbol-value 'help))
337 (if recursive "\
338 As long as you provide input you will insert another subskeleton.
340 If you enter the empty string, the loop inserting subskeletons is
341 left, and the current one is removed as far as it has been entered.
343 If you quit, the current subskeleton is removed as far as it has been
344 entered. No more of the skeleton will be inserted, except maybe for a
345 syntactically necessary termination."
347 You are inserting a skeleton. Standard text gets inserted into the buffer
348 automatically, and you are prompted to fill in the variable parts.")))
349 (eolp (eolp)))
350 ;; since Emacs doesn't show main window's cursor, do something noticeable
351 (or eolp
352 (open-line 1))
353 (unwind-protect
354 (setq prompt (if (stringp prompt)
355 (read-string (format prompt skeleton-subprompt)
356 (setq initial-input
357 (or initial-input
358 (symbol-value 'input))))
359 (eval prompt)))
360 (or eolp
361 (delete-char 1))))
362 (if (and recursive
363 (or (null prompt)
364 (string= prompt "")
365 (equal prompt initial-input)
366 (equal prompt (car-safe initial-input))))
367 (signal 'quit t)
368 prompt))
370 (defun skeleton-internal-list (skeleton &optional str recursive)
371 (let* ((start (save-excursion (beginning-of-line) (point)))
372 (column (current-column))
373 (line (buffer-substring start
374 (save-excursion (end-of-line) (point))))
375 opoint)
376 (or str
377 (setq str `(setq str (skeleton-read ',(car skeleton) nil ,recursive))))
378 (while (setq skeleton-modified (eq opoint (point))
379 opoint (point)
380 skeleton (cdr skeleton))
381 (condition-case quit
382 (skeleton-internal-1 (car skeleton))
383 (quit
384 (if (eq (cdr quit) 'recursive)
385 (setq recursive 'quit
386 skeleton (memq 'resume: skeleton))
387 ;; remove the subskeleton as far as it has been shown
388 ;; the subskeleton shouldn't have deleted outside current line
389 (end-of-line)
390 (delete-region start (point))
391 (insert line)
392 (move-to-column column)
393 (if (cdr quit)
394 (setq skeleton ()
395 recursive nil)
396 (signal 'quit 'recursive)))))))
397 ;; maybe continue loop or go on to next outer resume: section
398 (if (eq recursive 'quit)
399 (signal 'quit 'recursive)
400 recursive))
403 (defun skeleton-internal-1 (element &optional literal)
404 (cond ((char-or-string-p element)
405 (if (and (integerp element) ; -num
406 (< element 0))
407 (if skeleton-untabify
408 (backward-delete-char-untabify (- element))
409 (delete-backward-char (- element)))
410 (insert-before-markers (if (and skeleton-transformation
411 (not literal))
412 (funcall skeleton-transformation element)
413 element))))
414 ((eq element '\n) ; actually (eq '\n 'n)
415 (if (and skeleton-regions
416 (eq (nth 1 skeleton) '_))
417 (progn
418 (or (eolp)
419 (newline))
420 (indent-region (point) (car skeleton-regions) nil))
421 (if skeleton-newline-indent-rigidly
422 (indent-to (prog1 (current-indentation)
423 (newline)))
424 (newline)
425 (indent-according-to-mode))))
426 ((eq element '>)
427 (if (and skeleton-regions
428 (eq (nth 1 skeleton) '_))
429 (indent-region (point) (car skeleton-regions) nil)
430 (indent-according-to-mode)))
431 ((eq element '_)
432 (if skeleton-regions
433 (progn
434 (goto-char (car skeleton-regions))
435 (setq skeleton-regions (cdr skeleton-regions))
436 (and (<= (current-column) (current-indentation))
437 (eq (nth 1 skeleton) '\n)
438 (end-of-line 0)))
439 (or skeleton-point
440 (setq skeleton-point (point)))))
441 ((eq element '&)
442 (if skeleton-modified
443 (setq skeleton (cdr skeleton))))
444 ((eq element '|)
445 (or skeleton-modified
446 (setq skeleton (cdr skeleton))))
447 ((eq element '@)
448 (setq skeleton-positions (cons (point) skeleton-positions)))
449 ((eq 'quote (car-safe element))
450 (eval (nth 1 element)))
451 ((or (stringp (car-safe element))
452 (consp (car-safe element)))
453 (if (symbolp (car-safe (car element)))
454 (while (skeleton-internal-list element nil t))
455 (setq literal (car element))
456 (while literal
457 (skeleton-internal-list element (car literal))
458 (setq literal (cdr literal)))))
459 ((null element))
460 ((skeleton-internal-1 (eval element) t))))
463 ;; Maybe belongs into simple.el or elsewhere
464 ;; ;###autoload
465 ;;; (define-skeleton local-variables-section
466 ;; "Insert a local variables section. Use current comment syntax if any."
467 ;; (completing-read "Mode: " obarray
468 ;; (lambda (symbol)
469 ;; (if (commandp symbol)
470 ;; (string-match "-mode$" (symbol-name symbol))))
471 ;; t)
472 ;; '(save-excursion
473 ;; (if (re-search-forward page-delimiter nil t)
474 ;; (error "Not on last page.")))
475 ;; comment-start "Local Variables:" comment-end \n
476 ;; comment-start "mode: " str
477 ;; & -5 | '(kill-line 0) & -1 | comment-end \n
478 ;; ( (completing-read (format "Variable, %s: " skeleton-subprompt)
479 ;; obarray
480 ;; (lambda (symbol)
481 ;; (or (eq symbol 'eval)
482 ;; (user-variable-p symbol)))
483 ;; t)
484 ;; comment-start str ": "
485 ;; (read-from-minibuffer "Expression: " nil read-expression-map nil
486 ;; 'read-expression-history) | _
487 ;; comment-end \n)
488 ;; resume:
489 ;; comment-start "End:" comment-end \n)
491 ;; Variables and command for automatically inserting pairs like () or "".
493 (defvar skeleton-pair nil
494 "*If this is nil pairing is turned off, no matter what else is set.
495 Otherwise modes with `skeleton-pair-insert-maybe' on some keys
496 will attempt to insert pairs of matching characters.")
499 (defvar skeleton-pair-on-word nil
500 "*If this is nil, paired insertion is inhibited before or inside a word.")
503 (defvar skeleton-pair-filter (lambda ())
504 "Attempt paired insertion if this function returns nil, before inserting.
505 This allows for context-sensitive checking whether pairing is appropriate.")
508 (defvar skeleton-pair-alist ()
509 "An override alist of pairing partners matched against `last-command-char'.
510 Each alist element, which looks like (ELEMENT ...), is passed to
511 `skeleton-insert' with no interactor. Variable `str' does nothing.
513 Elements might be (?` ?` _ \"''\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
516 ;;;###autoload
517 (defun skeleton-pair-insert-maybe (arg)
518 "Insert the character you type ARG times.
520 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
521 is visible the pair is wrapped around it depending on `skeleton-autowrap'.
522 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
523 word, and if `skeleton-pair-filter' returns nil, pairing is performed.
525 If a match is found in `skeleton-pair-alist', that is inserted, else
526 the defaults are used. These are (), [], {}, <> and `' for the
527 symmetrical ones, and the same character twice for the others."
528 (interactive "*P")
529 (let ((mark (and skeleton-autowrap
530 (or (eq last-command 'mouse-drag-region)
531 (and transient-mark-mode mark-active))))
532 (skeleton-end-hook))
533 (if (or arg
534 (not skeleton-pair)
535 (and (not mark)
536 (or overwrite-mode
537 (if (not skeleton-pair-on-word) (looking-at "\\w"))
538 (funcall skeleton-pair-filter))))
539 (self-insert-command (prefix-numeric-value arg))
540 (setq last-command-char (logand last-command-char 255))
541 (or skeleton-abbrev-cleanup
542 (skeleton-insert
543 (cons nil (or (assq last-command-char skeleton-pair-alist)
544 (assq last-command-char '((?( _ ?))
545 (?[ _ ?])
546 (?{ _ ?})
547 (?< _ ?>)
548 (?` _ ?')))
549 `(,last-command-char _ ,last-command-char)))
550 (if mark -1))))))
553 ;; A more serious example can be found in sh-script.el
554 ;;; (defun mirror-mode ()
555 ;; "This major mode is an amusing little example of paired insertion.
556 ;;All printable characters do a paired self insert, while the other commands
557 ;;work normally."
558 ;; (interactive)
559 ;; (kill-all-local-variables)
560 ;; (make-local-variable 'skeleton-pair)
561 ;; (make-local-variable 'skeleton-pair-on-word)
562 ;; (make-local-variable 'skeleton-pair-filter)
563 ;; (make-local-variable 'skeleton-pair-alist)
564 ;; (setq major-mode 'mirror-mode
565 ;; mode-name "Mirror"
566 ;; skeleton-pair-on-word t
567 ;; ;; in the middle column insert one or none if odd window-width
568 ;; skeleton-pair-filter (lambda ()
569 ;; (if (>= (current-column)
570 ;; (/ (window-width) 2))
571 ;; ;; insert both on next line
572 ;; (next-line 1)
573 ;; ;; insert one or both?
574 ;; (= (* 2 (1+ (current-column)))
575 ;; (window-width))))
576 ;; ;; mirror these the other way round as well
577 ;; skeleton-pair-alist '((?) _ ?()
578 ;; (?] _ ?[)
579 ;; (?} _ ?{)
580 ;; (?> _ ?<)
581 ;; (?/ _ ?\\)
582 ;; (?\\ _ ?/)
583 ;; (?` ?` _ "''")
584 ;; (?' ?' _ "``"))
585 ;; ;; in this mode we exceptionally ignore the user, else it's no fun
586 ;; skeleton-pair t)
587 ;; (let ((map (make-vector 256 'skeleton-pair-insert-maybe))
588 ;; (i 0))
589 ;; (use-local-map `(keymap ,map))
590 ;; (while (< i ? )
591 ;; (aset map i nil)
592 ;; (aset map (+ i 128) nil)
593 ;; (setq i (1+ i))))
594 ;; (run-hooks 'mirror-mode-hook))
596 (provide 'skeleton)
598 ;; skeleton.el ends here