We Recommend

Smalltalk, Objects, and Design Smalltalk, Objects, and Design
This reference and text treats the Smalltalk programming system and the web of object-oriented ideas within and around it. Thus it is more than a guide to the language; it also examines Smalltalk in its technical and historical setting, and along the way addresses the questions that every Smalltalk developer sooner or later naturally wonders about.


Posted By

noah on 06/02/07


Tagged

emacs history logging kill-ring


Versions (?)


Kill-Ring and mini-buffer history size


Published in: Emacs Lisp 


  1. ;/****************************************************************
  2. ;* Set Size of the Kill-Ring and other histories that we use constantly
  3. ;****************************************************************/
  4. (setq kill-ring-max 500)
  5. (setq extended-command-history-max 50)
  6. (setq query-replace-history-max 50)
  7. (setq replace-string-history-max 50)
  8. (setq file-name-history-max 50)
  9. (setq replace-regex-history-max 50)
  10. (setq minibuffer-history-max 1000)
  11. (setq shell-command-history-max 1000)
  12. (setq find-file-history-max 1000)

Report this snippet 

You need to login to post a comment.