emacs-devel
[Top][All Lists]
Advanced

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

awesome feature (yet to be added?)


From: Bric
Subject: awesome feature (yet to be added?)
Date: Sat, 3 May 2014 14:47:44 -0400 (EDT)

Hi, all

unless it already exists, I thought of an awesome time-saving command: 
invert-comment

this to be on a par with "comment-region" and "uncomment-region".

"invert-comment" would change something like this :

   /* int b_progress; */
    /* int i_seek; */
    /* hnd_t hin; */
    /* hnd_t hout; */

    int c_progress;
    int j_seek;
    hnd_e hin;
    hnd_f hout;


to:


    int b_progress;
    int i_seek;
    hnd_t hin;
    hnd_t hout;

    /* int c_progress; */
    /* int j_seek; */
    /* hnd_e hin; */
    /* hnd_f hout; */


-------------

not for all occasions, but can be very useful for some, it seems to me.

Maybe it's easily added with a scheme script or something.

thanks!



reply via email to

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