Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3310564
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:46:29+00:00 2026-05-17T21:46:29+00:00

Vim is almost perfect for me. But I still want a line comment and

  • 0

Vim is almost perfect for me. But I still want a line comment and block comment feature, I want to know how to write a vimrc to do this in python and javascript.

No Addons

  • 1 1 Answer
  • 3 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T21:46:29+00:00Added an answer on May 17, 2026 at 9:46 pm

    If you want c-style line comments (which I believe are legal in javascript), you can set the following in your .vimrc, which will comment out the line the cursor (in normal mode) is currently on.

    map \lo I/*<Esc>A*/<Esc>
    

    If you want python comments, you can do the following:

    map \lo I#<Esc>
    

    If you want to only have one statement, you could do:

    if match(expand("%:t"), ".py") != -1
      map \lo I#<Esc>
    else
      map \lo I/*<Esc>A*/<Esc>
    endif
    

    which will use the # comment if you are editing a .py file, and otherwise use the /* … */ comment.

    EDIT: the following function will comment out a visually selected block with the appropriate style comments by checking the filetype. You can then map it to something easy like the vmap statement following the function.

      function! BlockComment(top,bottom)
    
        " deal with filetypes that don't have block comments 
        let fileName = expand("%:t")
        echo fileName
    
        if fileName =~ "\.py" || fileName =~ "\.sh" || fileName =~ "\.pl"
            execute "normal I# "
            return
        elseif fileName =~ "\.vim"
            execute 'normal I" '
            return
        endif
    
        " for c-style block comments (should work for javascript)
        let topLine = line("'<")
    
        " the + 1 is because we're inserting a new line above the top line
        let bottomLine = line("'>") + 1
    
        " this gets called as a range, so if we've already done it once we need to
        " bail
        let checkLine = getline(topLine - 1)
        if (checkLine =~ '\/\*')
            return
        endif
    
        let topString = "normal " . topLine . "GO/*"
        let bottomString = "normal " . bottomLine . "Go*/"
    
        execute topString
        execute bottomString
    
      endfunction
    
      vmap <Leader>bco<CR> :call BlockComment()<CR>
    

    Ignore the wacky syntax highlighting. It appears that the syntax highlighter is not vimscript-aware.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Vim I often want to replace a block of code with a block
In vim, I set shiftwidth=2, but all my previous indents are still at the
I'm new to Vim (almost new) and have some questions. The problem came from
ViM has this option hlsearch where a searched string is displayed in highlight mode
Vim is indenting method definitions an extra level after an attribute. This is driving
In Vim editor I opted ]I on a function (in C++ code). This presented
I get the feeling almost everybody uses an editor (Vim, Notepad++, etc.) for the
Vim has support for matching pairs of curly brackets, parentheses, and square brackets. This
Vim customization -- I have added these lines in my .vimrc inoremap /* /**/<
Vim (actually, gvim is in question, but I believe it works both ways) upon

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.