Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7664077
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T14:12:45+00:00 2026-05-31T14:12:45+00:00

For Emacs, how do I store what view-lossage collects into an external file? Ideally

  • 0

For Emacs, how do I store what view-lossage collects into an external file? Ideally I’d like to store these keystroke data into an external log file incrementally and automatically, meaning it is done so by default when Emacs is started.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T14:12:46+00:00Added an answer on May 31, 2026 at 2:12 pm

    In Emacs 24 at least (I can’t check a prior version right now), the docstring for view-lossage states:

    Display last 300 input keystrokes.

    To record all your input on a file, use `open-dribble-file’.

    And C-hf open-dribble-file RET tells me:

    open-dribble-file is an interactive built-in function in `C source
    code’.

    (open-dribble-file FILE)

    Start writing all keyboard characters to a dribble file called FILE.
    If FILE is nil, close any open dribble file.
    The file will be closed when Emacs exits.

    So simply add something like the following to your .emacs file:

    (open-dribble-file (expand-file-name "~/.emacs.d/lossage.txt"))
    

    Experimentally this clobbers the file if it already exists, so you’ll need to deal with that.

    Here’s one approach. It accounts for multiple Emacs sessions by using make-temp-name to generate a semi-random filename for the dribble file, and then appends the contents of that to a primary lossage log file when Emacs exists. (If Emacs crashes, it would leave behind the temp file for you to deal with manually.)

    (defmacro my-persistent-dribble-file (file)
      "Append the dribble-file for this session to persistent lossage log FILE."
      `(let* ((persistent-file (expand-file-name ,file))
              (temporary-file (make-temp-name (concat persistent-file "-")))
              (persistent-arg (shell-quote-argument persistent-file))
              (temporary-arg (shell-quote-argument temporary-file))
              (append-dribble-command (format
                                       "cat %s >>%s && rm %s"
                                       temporary-arg persistent-arg temporary-arg)))
         (open-dribble-file temporary-file)
         (eval `(add-hook 'kill-emacs-hook
                          (lambda () (shell-command ,append-dribble-command))))))
    
    (my-persistent-dribble-file "~/.emacs.d/lossage")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to use a keycode with modifiers in my .emacs file. However my
Emacs is confusing syntax after a line like fileparse($file, qr\.[^.]+$); And thinks the rest
Emacs and Java change propagation Hi, I'm mostly used to code in IDE like
My .emacs is like a roadmap for me where I source many files. Their
Sample HTML Data <body style=width:300px;> <h3>Long-Text</h3> A simple tool to store and display texts
In emacs I can specify that a file is SQL using this notation: --
In emacs, it is possible to start a file off with a line this:
Emacs reindents the current line whenever I type certain things, like ; or //.
I read in the Emacs documentation that Emacs supports storing file names in registers
Emacs 24 added optional lexical bindings for local variables. I would like to use

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.