Here is a silly little item that I nevertheless find useful. If I try to work 
at home I'm constantly interrupted. I wanted to quantify this, so I load this 
code at startup:

(defun bugger ()
  "Log interruptions"
  (interactive)
  (with-temp-buffer
    (insert (concat (current-time-string) "\n"))
    (append-to-file (point-min) (point-max) "~/.buggers") 
    (message "Logged.")
  )
)

I tie it to a key (global-set-key (kbd "<f9>")) so that logging an interruption 
is just a single keystroke that doesn't disturb anything on screen (for fully 
silent operation comment out the "Logged" message).

Do I get interrupted as much as I think, or is it mostly psychological? The 
answer's in the .buggers file :)
_______________________________________________
gnu-emacs-sources mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/gnu-emacs-sources

Reply via email to