help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Mark current column


From: Peter Tury
Subject: Re: Mark current column
Date: Thu, 03 Nov 2005 08:48:13 GMT
User-agent: 40tude_Dialog/2.0.15.1

On Wed, 02 Nov 2005 19:57:34 GMT, Peter Tury wrote:

> I tried to create another solution. Here it is (as in my .emacs):
> 
> (defun vvb-toggle-curr-in-columns ()
>    "Toggles the current column inside vvb-columns."
>    (interactive)
>    (if (member (current-column) vvb-columns)
>        (setq vvb-columns (remove (current-column) vvb-columns))
>      (setq vvb-columns (append vvb-columns (list (current-column))))))
> (global-set-key [?\C-c ?l] 'vvb-toggle-curr-in-columns)
> 
> And this is what I wanted. However, unfortunately, it needs vvb-mode :-(

Finally I found (almost) the same functionality in vvb-mode as
vvb-set-column =:-o


reply via email to

[Prev in Thread] Current Thread [Next in Thread]