Dan Jacobson <[EMAIL PROTECTED]> writes:
>
> I'm saying there should be some variable the user can toggle to get
> those ~ below that are the default in vi(1) and less(1).
>
> ~
> ~
> ~

Evaluate the expressions I posted using M-: (M-x eval-expression), and
you get that. Or put this in .emacs:

(defun vi-waves ()
  (interactive)
  (setq ol (make-overlay (point-min) (point-max) (current-buffer) t t))
  (overlay-put ol 'after-string "\n~\n~\n~\n~\n~\n~"))

And do M-x vi-waves (repeatedly for more of them). Bind it to a key:
  
(global-set-key [f9] 'vi-waves)

or add it to a hook to enable it whenever you want.


All the best!
Markus Triska


_______________________________________________
emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to