You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

44 lines
2.0 KiB

;;; flymake-cursor-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
;;;### (autoloads (flyc/show-fly-error-at-point-pretty-soon flyc/show-fly-error-at-point-now)
;;;;;; "flymake-cursor" "flymake-cursor.el" (21002 6349 0 0))
;;; Generated autoloads from flymake-cursor.el
(autoload 'flyc/show-fly-error-at-point-now "flymake-cursor" "\
If the cursor is sitting on a flymake error, display
the error message in the minibuffer.
\(fn)" t nil)
(autoload 'flyc/show-fly-error-at-point-pretty-soon "flymake-cursor" "\
If the cursor is sitting on a flymake error, grab the error,
and set a timer for \"pretty soon\". When the timer fires, the error
message will be displayed in the minibuffer.
This allows a post-command-hook to NOT cause the minibuffer to be
updated 10,000 times as a user scrolls through a buffer
quickly. Only when the user pauses on a line for more than a
second, does the flymake error message (if any) get displayed.
\(fn)" nil nil)
(eval-after-load "flymake" '(progn (defadvice flymake-goto-next-error (after flyc/display-message-1 activate compile) "Display the error in the mini-buffer rather than having to mouse over it" (flyc/show-fly-error-at-point-now)) (defadvice flymake-goto-prev-error (after flyc/display-message-2 activate compile) "Display the error in the mini-buffer rather than having to mouse over it" (flyc/show-fly-error-at-point-now)) (defadvice flymake-mode (before flyc/post-command-fn activate compile) "Add functionality to the post command hook so that if the\ncursor is sitting on a flymake error the error information is\ndisplayed in the minibuffer (rather than having to mouse over\nit)" (add-hook 'post-command-hook 'flyc/show-fly-error-at-point-pretty-soon t t))))
;;;***
;;;### (autoloads nil nil ("flymake-cursor-pkg.el") (21002 6349 232496
;;;;;; 0))
;;;***
(provide 'flymake-cursor-autoloads)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; flymake-cursor-autoloads.el ends here