Can I make “comment-region” comment empty lines?Modify org-mode's definition of comment lines?How to change comment string used by comment-region?If I am in a comment (including empty lines), how do I get to the beginning of the comment?add a space after the comment delimiterHow to get emacs to automatically insert block comment prefixes?How to treat region between conflict markers as comment?How to protect LaTeX comment lines from indentation?auto-fill-mode fails in comment with empty second linecommand to mark a block comment as regionHow to align both of comments and macro of multiple lines with space instead tabs for C/C++ code?

In a Spin are Both Wings Stalled?

How can I make my BBEG immortal short of making them a Lich or Vampire?

Should I tell management that I intend to leave due to bad software development practices?

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

How to draw the figure with four pentagons?

Assassin's bullet with mercury

How to take photos in burst mode, without vibration?

Why is Collection not simply treated as Collection<?>

What's the point of deactivating Num Lock on login screens?

Theorems that impeded progress

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

Neighboring nodes in the network

What is the intuition behind short exact sequences of groups; in particular, what is the intuition behind group extensions?

Blender 2.8 I can't see vertices, edges or faces in edit mode

Stopping power of mountain vs road bike

Is it possible to create light that imparts a greater proportion of its energy as momentum rather than heat?

How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?

How do I write bicross product symbols in latex?

How can saying a song's name be a copyright violation?

What exploit are these user agents trying to use?

Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?

Modeling an IP Address

How to show the equivalence between the regularized regression and their constraint formulas using KKT

Arrow those variables!



Can I make “comment-region” comment empty lines?


Modify org-mode's definition of comment lines?How to change comment string used by comment-region?If I am in a comment (including empty lines), how do I get to the beginning of the comment?add a space after the comment delimiterHow to get emacs to automatically insert block comment prefixes?How to treat region between conflict markers as comment?How to protect LaTeX comment lines from indentation?auto-fill-mode fails in comment with empty second linecommand to mark a block comment as regionHow to align both of comments and macro of multiple lines with space instead tabs for C/C++ code?













3















In LaTeX code I can have:



Lorem ipsum dolor sit amet, consectetur
begincomment
adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Ut enim ad minim veniam, quis nostrud exercitation
endcomment
ullamco laboris nisi ut aliquip ex ea commodo consequat.


If I use comment-region (in a script) to comment the comment environment in la LaTeX code i obtain:



Lorem ipsum dolor sit amet, consectetur
%% begincomment
%% adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

%% Ut enim ad minim veniam, quis nostrud exercitation
%% endcomment
ullamco laboris nisi ut aliquip ex ea commodo consequat.


This is not good because LaTeX interpret the empty line(s) (outside of comment environment) as a paragraph break.



My question is: Can I make comment-region comment empty lines?



I tried customizing (let-bind) the comment-syle variable but all the options I've seen do not comment empty lines.



An alternative could be a "built-in" (otherwise I already know how to make this funcion by myself) function that let me append a string on every line of a region (not a triangle). Remember, I need to do it programmatically.










share|improve this question




























    3















    In LaTeX code I can have:



    Lorem ipsum dolor sit amet, consectetur
    begincomment
    adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

    Ut enim ad minim veniam, quis nostrud exercitation
    endcomment
    ullamco laboris nisi ut aliquip ex ea commodo consequat.


    If I use comment-region (in a script) to comment the comment environment in la LaTeX code i obtain:



    Lorem ipsum dolor sit amet, consectetur
    %% begincomment
    %% adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

    %% Ut enim ad minim veniam, quis nostrud exercitation
    %% endcomment
    ullamco laboris nisi ut aliquip ex ea commodo consequat.


    This is not good because LaTeX interpret the empty line(s) (outside of comment environment) as a paragraph break.



    My question is: Can I make comment-region comment empty lines?



    I tried customizing (let-bind) the comment-syle variable but all the options I've seen do not comment empty lines.



    An alternative could be a "built-in" (otherwise I already know how to make this funcion by myself) function that let me append a string on every line of a region (not a triangle). Remember, I need to do it programmatically.










    share|improve this question


























      3












      3








      3








      In LaTeX code I can have:



      Lorem ipsum dolor sit amet, consectetur
      begincomment
      adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

      Ut enim ad minim veniam, quis nostrud exercitation
      endcomment
      ullamco laboris nisi ut aliquip ex ea commodo consequat.


      If I use comment-region (in a script) to comment the comment environment in la LaTeX code i obtain:



      Lorem ipsum dolor sit amet, consectetur
      %% begincomment
      %% adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

      %% Ut enim ad minim veniam, quis nostrud exercitation
      %% endcomment
      ullamco laboris nisi ut aliquip ex ea commodo consequat.


      This is not good because LaTeX interpret the empty line(s) (outside of comment environment) as a paragraph break.



      My question is: Can I make comment-region comment empty lines?



      I tried customizing (let-bind) the comment-syle variable but all the options I've seen do not comment empty lines.



      An alternative could be a "built-in" (otherwise I already know how to make this funcion by myself) function that let me append a string on every line of a region (not a triangle). Remember, I need to do it programmatically.










      share|improve this question
















      In LaTeX code I can have:



      Lorem ipsum dolor sit amet, consectetur
      begincomment
      adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

      Ut enim ad minim veniam, quis nostrud exercitation
      endcomment
      ullamco laboris nisi ut aliquip ex ea commodo consequat.


      If I use comment-region (in a script) to comment the comment environment in la LaTeX code i obtain:



      Lorem ipsum dolor sit amet, consectetur
      %% begincomment
      %% adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

      %% Ut enim ad minim veniam, quis nostrud exercitation
      %% endcomment
      ullamco laboris nisi ut aliquip ex ea commodo consequat.


      This is not good because LaTeX interpret the empty line(s) (outside of comment environment) as a paragraph break.



      My question is: Can I make comment-region comment empty lines?



      I tried customizing (let-bind) the comment-syle variable but all the options I've seen do not comment empty lines.



      An alternative could be a "built-in" (otherwise I already know how to make this funcion by myself) function that let me append a string on every line of a region (not a triangle). Remember, I need to do it programmatically.







      comment






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 11 hours ago







      Gabriele Nicolardi

















      asked 11 hours ago









      Gabriele NicolardiGabriele Nicolardi

      514212




      514212




















          1 Answer
          1






          active

          oldest

          votes


















          6














          Customize option comment-empty-lines.




          comment-empty-lines is a variable defined in newcomment.el.



          Documentation:
          If nil, comment-region does not comment out empty lines.
          If t, it always comments out empty lines.
          If eol it only comments out empty lines if comments are
          terminated by the end of line (i.e. comment-end is empty).







          share|improve this answer

























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "583"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2femacs.stackexchange.com%2fquestions%2f48764%2fcan-i-make-comment-region-comment-empty-lines%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            6














            Customize option comment-empty-lines.




            comment-empty-lines is a variable defined in newcomment.el.



            Documentation:
            If nil, comment-region does not comment out empty lines.
            If t, it always comments out empty lines.
            If eol it only comments out empty lines if comments are
            terminated by the end of line (i.e. comment-end is empty).







            share|improve this answer





























              6














              Customize option comment-empty-lines.




              comment-empty-lines is a variable defined in newcomment.el.



              Documentation:
              If nil, comment-region does not comment out empty lines.
              If t, it always comments out empty lines.
              If eol it only comments out empty lines if comments are
              terminated by the end of line (i.e. comment-end is empty).







              share|improve this answer



























                6












                6








                6







                Customize option comment-empty-lines.




                comment-empty-lines is a variable defined in newcomment.el.



                Documentation:
                If nil, comment-region does not comment out empty lines.
                If t, it always comments out empty lines.
                If eol it only comments out empty lines if comments are
                terminated by the end of line (i.e. comment-end is empty).







                share|improve this answer















                Customize option comment-empty-lines.




                comment-empty-lines is a variable defined in newcomment.el.



                Documentation:
                If nil, comment-region does not comment out empty lines.
                If t, it always comments out empty lines.
                If eol it only comments out empty lines if comments are
                terminated by the end of line (i.e. comment-end is empty).








                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 10 hours ago









                Drew

                49k463108




                49k463108










                answered 10 hours ago









                muffinmadmuffinmad

                33112




                33112



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Emacs Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2femacs.stackexchange.com%2fquestions%2f48764%2fcan-i-make-comment-region-comment-empty-lines%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Reverse int within the 32-bit signed integer range: [−2^31, 2^31 − 1]Combining two 32-bit integers into one 64-bit integerDetermine if an int is within rangeLossy packing 32 bit integer to 16 bitComputing the square root of a 64-bit integerKeeping integer addition within boundsSafe multiplication of two 64-bit signed integersLeetcode 10: Regular Expression MatchingSigned integer-to-ascii x86_64 assembler macroReverse the digits of an Integer“Add two numbers given in reverse order from a linked list”

                    Category:Fedor von Bock Media in category "Fedor von Bock"Navigation menuUpload mediaISNI: 0000 0000 5511 3417VIAF ID: 24712551GND ID: 119294796Library of Congress authority ID: n96068363BnF ID: 12534305fSUDOC authorities ID: 034604189Open Library ID: OL338253ANKCR AUT ID: jn19990000869National Library of Israel ID: 000514068National Thesaurus for Author Names ID: 341574317ReasonatorScholiaStatistics

                    Kiel Indholdsfortegnelse Historie | Transport og færgeforbindelser | Sejlsport og anden sport | Kultur | Kendte personer fra Kiel | Noter | Litteratur | Eksterne henvisninger | Navigationsmenuwww.kiel.de54°19′31″N 10°8′26″Ø / 54.32528°N 10.14056°Ø / 54.32528; 10.14056Oberbürgermeister Dr. Ulf Kämpferwww.statistik-nord.deDen danske Stats StatistikKiels hjemmesiderrrWorldCat312794080n790547494030481-4