198 comments

[ 3.1 ms ] story [ 213 ms ] thread
Select a block of text with V, press colon and then type:

s/^$/printf("@%d\\n", __LINE__);

To place a line printf on every empty line in the program, to quickly find out where your code crashes on the next run.

Obviates most of my need for external debuggers, and works over serial lines etc where setting up a debugger is going to be a hassle or simply not possible.

This is pretty cool! would you mind sharing the command to remove it too?

  :%s/^printf("@%d\\n", __LINE__);$//
Wouldn’t this prevent the code from running? It’s just moved into the string literal.

Would this be better?

s/^$/printf("@%d\\n", __LINE__);@

No, yours replaces empty lines with 'printf("@%d\n", __LINE);@'. The GP replaces empty lines with 'printf("@%d\n", __LINE__);' The replacement doesn't wrap any code. It annotates that certain points in the source have been reached at runtime. Yours wouldn't compile, which seriously limits its usefulness.
Ah, I misinterpreted. The trick only replaces blank lines, I thought it would work on any line because I thought that `@` was a special output token that would cause vim to insert a copy of the matched input. It isn't.
Digging into this a bit, here's the command I thought I wanted:

    :s/.*/printf("& -- %d\\n", __LINE__); &
This only works on lines that don't have string literals and behaves badly on lines that span block boundaries.

I had confused @ and &

Makes sense. I suppose one could also use a debug macro that stringifies the statement to avoid the problems you described. Might be something like:

  #define DEBUG_PRINT(stmt) printf(#stmt“ — %d\n”, __LINE__)
Then your replacement could be something like: s/.*/DEBUG_PRINT(&); &;

Which would print out the statement being executed and the line it is at in the program.

Also you’ll want :%s instead of :s, as the latter will only replace on the line on which the cursor is positioned.

Come to think of it, you’ll probably not want this to happen on lines which are themselves preprocessor directives or those with comments, function signatures, or (exclusively) punctuation like with braces. All this to say, I’m sure it could be done, but it gets into the weeds very quickly.

This requires that you put have lines between major pieces of codes.

Which I think is a good habit to have anyway. Some people use comments without preceding empty lines (oh why) to delineate code, so they'd have to change the regex a bit to make this work.

%s/ \s\+$// comes up for me a fair amount (trim trailing whitespace)

  command! StripTrailingWhitespace %s/\s\+$//
I'm more inclined to use it on a regular basis when it has a friendly name, even though I'm pretty handy with regex.
I do the same. For Neovim users, Command Center is a neat customisable command palette (e.g. from VsCode) menu, but there's a few around. I typically create a command but also add it to command center, whose open mapping I have set to shift+enter. You can then fuzzy find command names/content which helps for those commands you don't use all that often.
If you wrap it in a function it wont clobber the last search pattern, and use winsaveview()/winrestview() to not move the cursor/view around.

  fun! TrimWhitespace()
      let l:save = winsaveview()
      keeppatterns %s/\s\+$//e
      call winrestview(l:save)
  endfun
  command! TrimWhitespace call TrimWhitespace()
Little bit more, but not too much and gives a much nicer experience IMHO.
I like to use a shortcut for that :

nnoremap <silent> <Leader>tl :let _s=@/<Bar>:%s/\s\+$//e<Bar>:let @/=_s<Bar>:nohl<CR>

I have these in my .vimrc, to display and auto-trim trailing whitespace:

    augroup trailing_whitespace_show
        autocmd!
        " Make trailing whitespace red.
        autocmd ColorScheme * highlight ExtraWhitespace ctermbg=red guibg=red
        autocmd BufWinEnter,InsertEnter,InsertLeave * match ExtraWhitespace /\s\+$/
        " Can slow things down, but show trailing whitespace as red while typing.
        autocmd InsertCharPre * match ExtraWhitespace /\s\+$/
    augroup END

    augroup trailing_whitespace_kill
        autocmd!
        " Delete all trailing whitespace on-save.
        autocmd FileWritePre,FileAppendPre,FilterWritePre,BufWritePre *
            \ let w:wv = winsaveview() |
            \ :%s/\s\+$//e             |
            \ call winrestview(w:wv)
    augroup END
You can use listchars trail to show trailing whitespace

  set listchars+=trail:·
  set list
I like using `q:` to get at the command history, and recently I realized `ctrl-w _` also works there to get a nearly full screen view of the history!
Lesson two after learning how to quit vim should be that q: opens command history. If I had a dollar for every time that window opened and left me wondering 'wtf, quit damnit', I'd have at least 12 dollars.
My vimrc has:

  # Bloody annoying.
  nnoremap q: :q
No vim thread is complete without a discussion of how it’s hard to quit.
I'm starting to think that many of us who are so fond of vim are simply experiencing the effects of Stockholm syndrome
in command mode: gqq

Reformats the current long line into a paragraph of the specified width. If a word overruns the column width limit, the entire word is moved to the next line.

Awesome, thank you. I'm forever manually adjusting block comments to be a sensible width so this will help. Probably asking a bit much but do you know if there's a command that can operate on a visual line selection and do the same? e.g. I come across a block comment, add to it, then want to re-width it. Worst case, I guess I could create a command to collapse the lines first then run gqq.
The command you want is just gq. In normal mode it accepts a motion, eg gqip or gq}. And it works in visual mode as well. The gqq command is a special case for the current line. Personally I use https://github.com/kana/vim-textobj-line which defines a text object for the current line and maps it to _, so gq_ also formats the current line.

See here for relevant documentation: https://neovim.io/doc/user/change.html#formatting

fyi _ is a built-in motion; that plugin defines a couple others: il and al, which are specifically characterwise (vs. _ can be either that or linewise)

gq is a linewise operation anyway, so gq_, gqil, and gqal all have the same effect

Wait really? Is that new? I could have sworn it wasn't back when I first started (Vim 7 era).
if you have fmt (a console program from coreutils, on Linux it's usually preinstalled) then

1) mark your lines (Shift+v then move your cursor)

2) press ':'

3) '<,'> !fmt -w 80

In the similar way I also use column to format text.

gq after you created the visual line selection.
Also useful: gw is like gq but leaves the cursor where it is.
And it's inverse

  vipJ
> :g/^\s*$/d

I believe I've used a similar 'delete empty lines command' in the past, but it was just:

    :g/^$/d
Can someone explain what the OP's regex is doing differently?
Your version deletes empty lines, but the version you quoted deletes lines that are blank or only have white space.

Edit to be more helpful:

^ is the start of a line

\s is a space character

* means "zero or more of the previous character"

$ is the end of a line

Got it. He specifically said, "Remove all blank lines", so I assumed they were doing the same thing. I should've recognized \s as the space character.
> I should've recognized \s as the space character. … whitespace pattern.
(comment deleted)
Here's my favourite:

   vi"
If your cursor is within two quotes on a line, it will select everything inside those quotes to (c)hange, (y)ank or (d)elete or whatever you want. Great if you're the sort of person who writes HTML by hand all the time.
The v is redundant unless you want highlighting. You can do yi" directly (or ci" or di").

For more fun, activate vim-surround. E.g. to replace surrounding quotes with parentheses: cs"(

it's fun, I have had vim-surround installed for years but keep forgetting how that it exists.
vi"p or vi"P is a great way to overwrite "" contents with the contents of your unnamed register
I habitually use visual mode for a lot of stuff like that so quick flash shows me what was affected (in case of typo). If the highlighted part isn't what I expected I instantly know to undo, rather than having to think about the resulting text for a moment.
Same. Which shows a weakness of vim, I think it’d be much more usable if it had the verb last: iw would select the word then you can delete, yank, or even extend the selection knowing exactly what you’re going to operate on.

I think kakoune works like that, but I don’t have the will to learn another editor and vi is what’s available everywhere anyway

The problem with Kakoune-like object-action order is that you need more modifier keys.
surround and sneak are my desert island vim plugins
(comment deleted)
You can also use yi" to yank it immediately without selecting it first (replace y with c or d to change or delete, respectively). Replace i with a to include the quotes ("around" rather than "inside"). Replace " with ( [ or { to match other kinds of bracketing characters. And include a number to go more than one set out.

E.g.

    y2a(
means yank everything inside (and including) the second nested pair of parentheses out from the current point.
Tbh I hate that vim keeps wanting to make me count. I don’t know if it is the first, second or third nested pair of parentheses, and the time for me to count is probably similar than the time to just select with the mouse. I struggle to believe anybody actually counts when using vim , whether it’s levels of nesting or number of lines.

I wish vim was better at showing what you’re going to operate on, and edit it before the operation. Eg a( could select out of the first parentheses then n to extend until everything I want selected is, then y

You might like Kakoune, which basically works how you describe.
Doesn’t have to be within, will visually select the contents of the first quotes on the line!
It's not a sign of "unparalleled efficiency" having to type these little monstrosities by hand, let alone frequently

:g/\(\d\{1,3}\.\)\{3}\d\{1,3\}/y A

Is there a way to type "ip" and select from a helper list with regex and description sorted by frecency?

Not an answer to your question, but FYI, command history (q:) might be useful for you if you hadn't come across it yet.
Yes, you can define your own commands to do whatever you want. For things like fuzzy search and frecency sorting, there are a handful of plug-ins and frameworks that can help, including an FZF interface and a few other Vim/Neovim-specific plugins like Telescope and Denite.
That was my first thought when I saw these. I’ve been interested in learning Vim but these look like hell to type.
You don’t need these.

I‘ve been viming for 10+ y and just using the normal shortcuts and ways of manipulating text is a major productivity gain.

Vim regex engine descends from vi and ed, which predate Perl Compatible Regular Expressions, whose derivative forms we're all familiar with
Yep I'm familiar with regular expressions, but I don't typically use them as a command prompt.
Yeah, just explaining why it looks weird
if you have already used the command you want recently, just start writing the command you want, then press the up arrow to search through your history for commands that start with whatever you've typed so far.

also, a nit pick, if you use Magic mode (\v), that pattern gets way better:

:g/\v(\d{1,3}\.){3}\d{1,3}/y A

> simple vim one liner which allows you to count the words in the file

> :%s/\w\+/\=submatch(0)+1/g | echo line('$')

Yeah, no. Isn't there a plugin to just display word count in the corner somewhere automatically?

I never want to know the count of words once. If relevant, I want to _always_ see the count.
`g ctrl-g` will do it, but i can barely remember that, so i end up doing `!wc %`
LOL. "simple". I really want to learn vim and be really good at it. I keep trying different tutorials, and I'm starting to be more comfortable with it, but I just keep using sublime text as my main editing tool because it's just easier.
Yep. I love vim but for big projects I have to use VSCode as I need the extensions.
Curious about which extensions are keeping you in vscode?
not OP but for me it's Live Share for remote pairing. I can barely function without vim-mode enabled but have never fully made the jump to (n)vim.
There’s a ViM plugin for VS Code, of course :)
which sadly is a bit lacking
VSCode-Neovim (not VSCodeVim) is a fully working Neovim instance inside VSCode. Even plugins work.
> Isn't there a plugin to just display word count in the corner somewhere automatically?

You can add it to your statusline (or tabline, ruler) with the wordcount() function:

  :let &statusline ..= ' words: %{wordcount().words}'
---

Aside: that "one-liner" doesn't "count the words in the file" at all? It just replaces all words with "1" and echos the last line number. I'm confused because this seems so wrong that I may be missing something? Unless the "67 substitutions on 5 lines" message is intended as the "word count", in which case I submit that 1) this is the ugliest thing I've ever seen, and 2) the author of this article doesn't know Vim all that well (there are so many better/easier ways to do this).

Also, if I’m seeing this correctly, it only recognises ASCII “words” (a–z, A–Z, 0–9, _), so it’s not even accurate and will over-count words with accents, umlauts, etc.
It actually increments each word it finds, so while most words will turn to "1", "356" will become "357". I have to imagine this ending up in the blog is the result of a copy-paste mistake, a LLM hallucination, or something similar.

Others have commented on built-in vim functionality for counting words, but assuming the author copy-pasted a similar looking command, they may have intended something like:

    :%s/\w\+//gn
Knowing that the n flag will return a count instead of doing the substitute may be useful to know, but I personally don't need a search count very often.

Knowing that you can execute a vimscript expression on each search match using \= is also cool and I was unaware of such functionality. https://vimhelp.org/change.txt.html#sub-replace-expression

> It actually increments each word it finds

Did you try it? Because that's not what it does. submatch(0) expands to the first submatch, which is the entire thing that's matched, and +1 adds 1 to this, which will a;ways result in "1" here since any string that doesn't start with a digit will be type-coerced to 0.

Anyway, /n being intended sounds likely; I forgot that would report the number of matches. Still very odd how that got morphed to what's in the article.

> Did you try it?

Yes

> Because that's not what it does. [...]

I don't see how your description significantly differs from my description.

That one made me cringe hard, the guy would just not use the built-in function or have the decency to sling back into the shell with :! wc -w filename.whatever.

Insanity described in that post.

I prefer using the standard Unix utilities

  :%!wc
Also handy is this to run the current buffer through an external command:

  %! somecommand
So, for example, using perl to make everything uppercase:

  %! perl -pe '$_=uc'
one of my favorite is

  :%!column -t
I work with python a lot and recently learned you can use this

    %! python
If the buffer you have open is a python script. Doesn’t work great if you have a bunch of stdout to read, but good for quick tests
For programming in languages where indentation means a nested block:

>>

and

<<

indent the current line right and left by one indent position respectively, typically a tab or 4 spaces, though I need to check whether it works for spaces.

Prefixing those with a number n will indent n lines, starting with the current one.

This works in all filetypes, and the indentation amount is set by shiftwidth. Whether tabs or spaces are inserted is controlled by expandtab (for spaces) or noexpandtab (use tabs).

You can use any navigation command as the target, I find myself often using

  >}
to indent every line until the end of the block.
>You can use any navigation command as the target, I find myself often using

> >}

>to indent every line until the end of the block.

Yes, that's a good one for code in languages where } marks the end of a block, such as C, C++, Java, etc.

I also use

    >G

to indent from current line to end of file in a text file, or

    1G>G 

which is 1G to go to line 1, and then >G to indent to end of file, which indents the whole file, which can be useful for printing on paper, more so when combined with other options like shiftwidth, !fmt, etc. (also mentioned in this thread).

And many other such combinations of the indent operation and some movement, for structuring text or code, are possible.

All such combinations are based on the same principles mentioned in the Stack Overflow "grok vi" comment that I posted about in this thread:

https://news.ycombinator.com/item?id=37018215

> A simple vim one liner...

> :%s/\w\+/\=submatch(0)+1/g | echo line('$')

Uh, thats..... simple???

(comment deleted)
Check out the comments on that page, someone else had a similar response and pointed out this feature is built-in to vim.
One of the beautiful things about vim is that they have multiple ways to skin the cat and, as such, you develop your own mode of using it.

For example to navigate within a single line you can:

- f[character] (jump to character)

- w/e (jump word by word)

- A (jump to end, navigate from there)

- / (search!)

- h/l (move left/right)

- even more ways!

What’s funny is that, theoretically, some of these movements are more “efficient”, for example jumping to a specific character is a lot faster than going character by character. However, I found that I often go character by character or searching instead of f[] just because my brain finds it easier to move that way than to think “what character is that”. I use massive jumps when finding a line; but once on that line, I use very slow movements. Now, it’s totally less efficient, but it’s how my brain/fingers navigate most naturally even after repeated attempts at to train myself to use “better” methods. Perhaps my habits will change over time, but regardless it is remarkable how “personal” vim can be.

Thank you Bram!

(Edited to fix list format)

I would advise anyone who wants to master VIM (and NeoVIM) to get used to all the different ways to move through a document. Here's a good wallpaper about that:

https://www.rosipov.com/blog/vim-movement-cheatsheet/

Ever now, after decades of use, I try to incorporate the most efficient methods of moving around the document and around the screen. Sometimes, when I've just held down movement keys (such as 'hjkl') to get to a specific location, I'll go back to where I was and, for example, use the find character command instead as practice.

Neat! I didn't know # was "backwards" *
Oddly I often navigate in a line by typing “f “ (f space) then press . repeatedly until I’ve gotten to the right place. Never occurred to me to navigate within a line using / but that ought to be faster most of the time
I just mash w, that’s one key instead of 3 (f .)!
I once did a lunch and learn at work where I tried to teach coworkers how to use vim efficiently. It turned out to be the absolute worst lunch and learn I ever did.

It's just so unintuitive and trying to teach it in a "here are some good shortcuts that will save you time" way was a near-total waste.

vim is the closest any editor comes to interfacing directly with my brain. Once you learn to make your neurons fire in the right way to move the cursor to the right spot, it's easy and there's no better way to edit code. Describing the neuron firing order to someone else, though, is futile.

It's like learning to to use your fingers to pick something up for the first time as a kid: you just have to try enough times until it sticks.

> vim is the closest any editor comes to interfacing directly with my brain.

It's funny you mention that. Just today, I had this moment where I realized that if someone asked me which key letters are used to move up/down/left/right, I'd have to pause and think about it.

I've been using Vim for years. Like, my index finger rests on the down key, so J is down. I think? And so on... My middle finger rests on the up key, so K goes up? Do I actually have to move my index finger to go left? What is my pinky doing most of the time?

It's just funny how all this stuff is burned into my brain but I wouldn't even be able to tell someone the basics without a keyboard in front of me.

j goes down because it looks like a down arrow.
https://en.wikipedia.org/wiki/ADM-3A#Legacy

> The use of the HJKL keys for moving the cursor in the vi editor and its descendants originated from the ADM-3A [...] The ←, ↓, ↑, → and Home labels printed on the H, J, K, L, and ~ ^ keys were a visual reference to the control characters Ctrl+H, Ctrl+J, Ctrl+K, Ctrl+L, and Ctrl+~ ^ that were required to move the cursor left, down, up, right, and to the top/left corner (or "Home" position) of the terminal, respectively [...] The Ctrl+H and Ctrl+J functions were the standard ASCII backspace and line feed respectively, but the interpretations of Ctrl+K, Ctrl+L, and Ctrl+~ ^ were new to the ADM-3A.

Seems almost a happy accident. I personally like the placement because the most common movement in a document is down and it's placed right under the most dextrous finger, the index finger, by a coincidence between ASCII encoding and the QWERTY layout. Up being the second most common movement was put under the second most dextrous finger. Nice.

It really is funny how much vi's odd-looking key choices aren't odd at all once you see the keyboard it was developed on:)
The value of being taught something by an expert.
I didn't know about the history, thanks for sharing!

(j = downarrow was a mnemonic I used while learning vim.)

easy, the arrow keys.
> so J is down. I think? And so on... My middle finger rests on the up key, so K goes up?

Nope, j is down. J combines the current line with the next line, reducing whitespace between to 1 space.

Back when I first figured out what J was doing (having typo'd it regularly) I thought it was useless, then one day I just started reflexively using it when manipulating function arguments.

Likewise, k is up, K looks up the word under the cursor in a man page.

I think they were using uppercase to make the keys stand out, but they know they're not used with the shift key.
For their defence, keyboards are annotated with uppercase letters.
>Nope, j is down. J combines the current line with the next line, reducing whitespace between to 1 space.

And so J stands for Join (the next line to the current line), IIRC.

Pretty novice Vim user here. I FOR SURE think about it, and it costs me quite a bit of brain power to navigate. I made my own way pf remembering:

H = the leftmost key, so left L = the rightmost key, so right J = jeet (yeet), so down K = klimb (climb), so up

I look forward to the day this is just burned into my subconscious, but until then, this works I suppose

That's exactly the reason the keys were assigned that way. Pat yourself on the back, kid ;-)
exactly the reason starting with ^H is backspace (left) and ^J is linefeed (down)
Ha ha, good one.

Does the analogy hold for ^M which is carriage return?

Anyway, I remember that stuff. Had a lot of "fun" on Unixes back in the day using things like ^J, ^M, ^H, stty sane, stty -a, stty icrnl, stty onlcr (or is it the other way around), fiddling with termcap and terminfo, and much more ...

It's even weirder for me as I use the Colemak keyboard layout.

When I first switched to Colemak, around 2010, I remapped the movement keys so that they were in the same physical location as hjkl on qwerty.

Then I realised I'd lost compatibility with other readline based software. So I just learned to use the new, not particularly ergonomic, positions under Colemak.

At this point it's almost always from muscle memory now and couldn't tell you what I press half the time.

Vim is like the Great Glass Elevator, it has a button for moving in every direction and using it since the 90s has been like learning to play a musical instrument.

>Vim is like the Great Glass Elevator, it has a button for moving in every direction

Actually vim is more like the Great Glass Elevator cum Excavator, because it has buttons and levers (to extend your simile) for moving in every direction and performing operations of every kind, and most importantly, all sorts of combinations of the two:

>https://news.ycombinator.com/item?id=37018215

So, if tomorrow, either more movements or more operations were added to vim, they would automatically play well with the older ones.

This is orthogonality (1), and genius, IMO :)

(1) As they mean in microprocessor ISA design (, I think, not being a hardware guy, but have just read about it a little here and there, while doing assembly language programming years ago).

>Vim is like the Great Glass Elevator, it has a button for moving in every direction

vim is like the Great Glass Elevator, if the Great Glass Elevator was modal

Passwords are the same way for me. I can type my password on a keyboard, but if I have to enter it on my phone, I have no idea what it actually is. Thankfully, a password manager deals with most of my passwords but there is a few that I don't use it for.
A few weeks ago I was unsure of my PIN code because I got it wrong on the first try, the keypad somehow seemed different (I was getting cash, which I don't often do), and I just completely blanked. I got something from a store and paid by PIN there to make sure I got the right code, and then got my cash.

I've had the same PIN code for over 20 years.

I think all quick learning session of vim invariably turns into bootcamp style "learning to code". Jumps straight into what but not how and why.

To know what modal editing is and understand that first is going to help - but then your learning session is over like that without teaching any "tricks".

I like to think of vim as bytecode for text manipulation. You train your brain to emit the bytecode via your fingers.
Ha ha. Vimcode, though.

And "vim" is pretty close to "vm" for virtual machine that runs that vimcode, or bytecode :)

Yeah, I think you'd have the same issue trying to teach people to play guitar over the lunch hour. It takes a lot of practice to learn vim but it's super rewarding once you do!
I know exactly what you mean. At work people constantly ask me what keys do what and the moment they do my mind goes completely blank. To the point that I even forgot how to use vim for a short while until the conscious part of my brain is preoccupied with something else and suddenly I can use vim again.
The issue with Vim for me is that it takes years for the keybinds to be picked up as muscle memory. Learning takes effort, people can’t learn everything. And there’s an endless amount of things I can learn other than Vim that will give me a more fulfilling life.
In my case, it only took a few months to be more effective with Vim than without it. Since I spend most of my time working, Vim is a great improvement to my quality of life. The benefits of Vim include not just productivity, but also comfort.
It helps to design the yourself in neovim?
I think it's more of a needed mental shift than years or effort that is the stumbling block.

You don't need to pick up a lot of keybinds in order to be fairly productive at text editing in vim.

The extra stuff will just make you more productive, maybe asymptomatically.

>asymptomatically

Heh, dang autocorrect or me, not sure.

I meant asymptotically.

As a side note: "Lunch and learn" is work for me. I have a strikt rule, that whenever someone talks heavily about work at lunch, I consider it a meeting - just as "lunch and work". Therefore I will take a work break afterwards.

Lunch is !work for me.

Agreed completely. “Lunch and learns” and “brown bags”. I didn’t appreciate my old employer frequently co-opting my lunch breaks with more work.
It's just different keyboard shortcuts than the other editors. That is pretty much it. You don't need to be so dramatic.

Also, in the GUI version of vim you have scrollbars, toolbar, and the standard keyboard shortcuts work, too. So you can use it like any other editor.

You can get vim simulators in most editors too. Even Emacs. The interesting question becomes whether you still prefer VIM as an editor. One advantage is you can use the same editor over SSH. If it is not there it is quick to install.
You're a bad teacher. No shame in that.
OTOH watching someone else use vim when you already know the basics of vim is enlightening
(comment deleted)
Im confused by the first one, what's wrong with g CTRL-g?
I tried to switch to it as my PHP IDE from PhpStorm, replicating each feature with config and plugins. Finally I realized I couldn’t get EA Inspections working in vim, the interface just doesn’t exist. JetBrains has a new CI tool for their inspections so that may provide a way with enough effort.
Shouldn't these condensed in the vimrc with a suitable shortcut to avoid needing to remember regex like strings?
You can but I would mostly use that as a reference.

It's not as much about memorizing strings as it's learning a new language.

I guess it depends. There's almost always multiple ways to do anything in Vim and pros and cons to each.

Using a mapping will save you time if you use the same regex often but you can end up having to remember a lot of shortcuts. I find I forget rarely used mappings.

If you learn the Vim command line and regex well it can be quicker to just type what you want on demand and then use one of the methods repeating it. Then forget about it till the next time you need it.

It's also helpful if you have to use configured Vim occasionally.

Hello HN,

I'm the author of this post, and I hope you enjoyed reading it.

I wanted to share this one-liner for fun: :%s/\w\+/\=submatch(0)+1/g | echo line('$')

Although I know there are more efficient ways to count words in a file using Vim, I wanted to be a little creative.

Lastly, I want to express my deep sadness over the passing of Bram Moolenaar. He created an extraordinary text editor that had a profound impact.

Rest in Peace Bram Moolenaar

I also snarked a bit when I saw your word count example, but immediately reversed course when I saw the JSON formatting one-liner. I will use this. I will use the hell out of it. Thanks!

RIP Bram.

What does `%!python -m json.tool` offer that `%!jq` doesn't?
I don’t know. I’m assuming I should install jq (or see if I already have it?)

Here’s the problem I have: I don’t often have to format unformatted JSON, but when I do, it’s almost always an error message I’m trying to parse in order to track down a bug. So I tell myself “I should really figure out how to automate this…I know it’s obviously possible, but I just really wanna fix this bug right now, so I’ll do that later.”

And then the next time it happens, I curse myself for not having researched that, and promise to do it before the next time.

So I’m just happy that I stumbled across this page. Now I don’t have to remember to research it :)

Chances are higher that python is installed than jq, other than that can't think of any
My favorite one liner is :!}fmt which on Linux and UNIX systems runs from where the cursor is, through to the end of the paragraph though the fmt(1) command (which wraps words etc.) When I edit a file that has no line endings this can create a readable document for me.
You can do that by setting textwidth to a value, say "set textwidth=80", and hitting the "gq" action. So to format the current paragraph something like "gq}" would do the same as your snippet
I like fmt better because it works on all vi's. It's also closer to the UNIX philosophy of doing one thing and doing it well.

Also, it's not just fmt you can use. Want to sort a paragraph of lines? !}sort^M and you're done. Or reverse sort till the end of the file with !Gsort -r^M etc.

Really, all UNIX commands are integrated into your editor, and that's the beauty of it.

I didn't know you could use motions like that! <3
>Or reverse sort till the end of the file with !Gsort -r^M etc.

Right. Or flip the case of a section of text, even of an arbitrary block of lines demarcated by marks set by vi(m) commands like ma and mb and the like, by filtering it through tr.

Or filter another section through sed or awk or even through a Unix pipeline, to do whatever you want.

And with just a little practice, you can become fluent and fast with all of this, and it improves your productivity a lot, apart from being fun and creative.

I prefer soft wrapping, since it doesn't force your choice of line width on other people.

    :h 'wrap'
Pretty sure I could do all of these easier in VSCode, except.maybe adding up all the numbers in a file.
Not everyone wants to edit in a browser, maybe many people can't due to their computers spec.
VSCode runs a desktop app as well as in a browser. You knew that though.

And I use VSCode on a 10 year old desktop. VSCode itself is very light. It's the extensions that sometimes have performance issues. Microsoft's C++ one is by far the worst offender.

The parent meant that the “desktop app” is actually a browser.
As (neo)vim user, this article is quite low on the tier list for useful information about vim IMO. I appreciate the vim discussion here but not much more to gain from this posting unfortunately.
My little one liners :

removing trailing spaces : :%s/\s+$//e

replacing tabs for spaces : :%s/\t/ /g

You can also set et and ts to your taste and then :retab.
> :%s/\s+$//e

Annoyingly, "+" matches literal "+" by default.

You need

  \s\+$
or

  \v\s+$

.
Weird because most of it is just regex not vim. Running python tool from inside of vim also doesn’t feel like “vim one liner”.
But the whole idea of vim, is that it leverages other tools.

So in that sense calling python is very much a "vim one liner".

Lets rewrite what I have issue with in clear text: Farming "up-votes/blog impressions" because VIM creator died seems off putting.

Putting VIM in that blog post is unnecessary and I do believe it was posted with bad intentions.

I don't believe article would land on main page if it would not have VIM and it would be only about text editing one liners. Especially when those one liners are not amusing.

While I fully agree, I multiply that by the value they get from these upvotes and impressions to get a solid, "meh".
Vim oneliners are useful thing to know even when Vim provides other ways to achieve the same thing. e.g. g ctrl-g for word count.

What's useful about learning and thinking about Vim's command line is the overlap with tools such as sed, which also descends from the ed command.

Being about to use sed is REALLY useful even if it's just for simple Unix pipelines like renaming multiple files or branches in git.

Pretty confused about this post and comments. Seems everyone is just using custom regexps or piping buffers to external commands. That's how I as an emacs user occasionally use vim. And that's because I don't know vim at all and this way I can work around my ignorance.

I refuse to believe vim power users use it like this.

It's one aspect of using vim, to use the s or g commands efficiently IMO. But it's not as important as using the regular command + movement vim language stuff.
I never pipe buffers, but I do use sed regex replacement pretty often. Like many other vim aspects I always feel it’s clunky though: vim is a _text_ editor when I want it to be a _code_ editor. I don’t operate on paragraphs or regular expressions, I operate on functions and identifiers and imports.
I don’t think that this list is supposed to be an accurate representation of how people typically use vim. More likely this list was compiled precisely because these uses are somewhat non-standard / non-obvious and therefore worth sharing. Having said that, I do believe that using external tools is much more idiomatic for Vim than Emacs.