About 5,780,000 results
Open links in new tab
  1. What's the use of the exclamation mark ('!') in Vim's command line ...

    Jun 22, 2010 · The ! qualifier tells Vim to force the operation. For example, if the file was read-only you would use :w! to write it anyway. If the file was modified and you wanted to quit without saving, you …

  2. What do these signs mean in Vim? - Stack Overflow

    Dec 29, 2016 · I've a hard time understanding signs I see in my text editor Vim. I see signs like ^@ and ^A and ^M and ^F. What does this mean? Is there any structured list of these signs and their …

  3. What does :wq stand for in Vim? - Stack Overflow

    Mar 10, 2017 · Some of Vim's command names are obtuse to me and seem to have multiple aliases. It's easier for me to remember things if I know the reason they are used so... What does :wq stand for, if …

  4. file io - ^@ symbol in vim - Stack Overflow

    Feb 3, 2012 · That is the null character, in a format (which Vim uses a lot, as you've probably noticed) called caret notation. Basically, somehow you're getting bytes full of zeros into your file. Since we …

  5. What does the ^M character mean in Vim? - Stack Overflow

    Apr 30, 2011 · Although VIM displayed the '^M' character, none of the above worked for my particular problem, the data would import but was always corrupted in some way. The solution was pretty easy …

  6. Why is "copy" called "yank" in Vim? - Stack Overflow

    The definition of yank in the Merriam-Webster dictionary is: to pull on something with a quick vigorous movement How does "yank" correspond to the copy functionality in Vim?

  7. ^M at the end of every line in Vim - Stack Overflow

    Oct 27, 2022 · When I am editing source files using Vim and other editors, sometimes I get these ^M characters at the end of each line. I think that it has something to do with editing a file on Windows …

  8. Why are h,j,k,l recommended over using arrow keys for vim?

    Nov 3, 2014 · The distinguishing feature of vi / Vim is that it's mode-based. That means: you only stay in insert mode for short bursts of typing in the other modes (mostly normal mode), you have all key …

  9. vim - In a .vimrc, is `set nocompatible` completely useless? - Stack ...

    Jan 23, 2016 · From the documentation section *compatible-default* (emphasis mine): When Vim starts, the 'compatible' option is on. This will be used when Vim starts its initializations. But as soon as a …

  10. Vim Search/Replace, meaning of %s - Stack Overflow

    Jul 14, 2017 · In Vim you can search/replace text in the following way. :%s/old/new What does the %s mean?