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

  • Home
  • SEARCH
  • 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 8887879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:55:00+00:00 2026-06-14T21:55:00+00:00

Even though I am a relatively precise typist, it is a common error for

  • 0

Even though I am a relatively precise typist, it is a common error for me to wallop the apostrophe character when I go to hit a carriage return in Vim. This happens especially when I am trying to type :w<CR> or wq<CR>. I end up typing :w'<CR>, or even worse, :wq'<CR>, which gives a couple big red error messages in addition to not doing what I intend. Is there a mapping or some other technique that can be used to overcome this? I can’t imagine why I would ever want to write a file named ', so I am not concerned about blocking that possibility entirely.

  • 1 1 Answer
  • 0 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-06-14T21:55:01+00:00Added an answer on June 14, 2026 at 9:55 pm

    You must be careful with using command mappings (and abbreviations), they often fire when they are not supposed to for example during a search or in the middle of a command argument. I typically prefer to use a expression abbreviation.

    Put the following in your ~/.vimrc:

    cnoreabbrev <expr> w getcmdtype() == ':' && getcmdline() ==# 'w' ? 'w' . EatChar("'") : 'w'
    cnoreabbrev <expr> wq getcmdtype() == ':' && getcmdline() ==# 'wq' ? 'wq' . EatChar("'") : 'wq'
    
    function! EatChar(pat)
      let c = nr2char(getchar(0))
      return (c =~ a:pat) ? '' : c
    endfunction
    

    This abbreviation uses a function called EatChar which takes a pattern that will be “eaten” or ignored after the abbreviation is expanded. See :helpg Eatchar for an different example of its usage.

    The abbreviations will only expand and look to “eat” a quote when all the following criteria is met:

    • is in normal ex mode: getcmdtype() == ':'
    • at the beginning of the command: getcmdline() ==# 'w'

    Otherwise the abbreviation is expanded to the same as the {lhs} i.e. w or wq

    Disadvantages to this approach:

    • expression abbrevations require vim 7+
    • if for whatever reason you really do want to type :w' you will have to type the quote twice , use a space to separate the command form the filename, or type Ctrl+v followed by '
    • must create an additional abbreviation for each fat fingering senario

    For more information see:

    :h abbreviations
    :h :map-<expr>
    :h getcmdtype(
    :h getcmdline(
    :helpg Eatchar
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Even though I have a fermi card(gtx 560) I get this error on VS2010:
Even though I know that, at least to my knowledge, this is not the
Even though it's not part of HTTP 1.1/RFC2616 webapps that wish to force a
Even though it is possible to write generic code in C using void pointer(generic
Even though I've been reading other topics about my kind of problem, I can't
...even though pointers to member functions are strange animals ? I am coding a
Why is it necessary even though everything is specified in a makefile?
One would expect that even though strings are immutable, value-equality and reference-equality would not
In C# you can define delegates anonymously (even though they are nothing more than
I've heard of GAE and even though it doesn't support PHP, people have gotten

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.