We Recommend

Programming in Objective-C Programming in Objective-C
Programming in Objective-C is a concise, carefully written tutorial on the basics of Objective-C and object-oriented programming. The book makes no assumption about prior experience with object-oriented programming languages or with the C language (upon which Objective-C is based). And because of this, both novice and experienced programmers alike can use this book to quickly and effectively learn the fundamentals of Objective-C.


Ballyhoo


Posted By

tgunr on 04/11/07


Tagged

emacs elisp


Versions (?)


ELisp advice


Published in: Lisp 


Change GUD to show end of buffer after a command.


  1. (require 'gud)
  2. (defadvice gud-basic-call (after goto-comint-buffer-end)
  3. "Go to end of buffer after making call"
  4. (overlay-recenter (point-max)))
  5. (ad-activate 'gud-basic-call)

Report this snippet 

You need to login to post a comment.