this post was submitted on 27 Dec 2023
153 points (75.6% liked)

linuxmemes

20762 readers
2121 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 19 points 8 months ago (4 children)

:ggdGwq (please don't do this)

[–] [email protected] 14 points 8 months ago (1 children)

VIM Golf.... Same outcome, fewer strokes:

%d|wq

[–] [email protected] 6 points 8 months ago (1 children)

you can replace wq with x

:%d|x

[–] [email protected] 5 points 8 months ago

Only in Vim, not in Vi.

[–] [email protected] 11 points 8 months ago (1 children)

I use Vim daily, and i have absolutely no clue what that command would do, what would it do? Delete the document, save and quit?

[–] [email protected] 15 points 8 months ago* (last edited 8 months ago) (2 children)

exactly.

gg -> go to top of document

d -> delete (actually, it's cut, but it destroys the mnemonic)

G -> here is a modifier to "d" and tells it do "delete until end of document"

w -> write current state of buffer to disk

q -> exit program

[–] [email protected] 17 points 8 months ago (2 children)

Actually not, binds and commands aren't the same. ggdG only works as a series of inputs, while wq only works as a command (with the colon).

[–] [email protected] 8 points 8 months ago (1 children)

Exactly. The colon needs to be just before the w, not at the front of the sequence...

[–] [email protected] 6 points 8 months ago (1 children)

And while you're at it, throw an ESC in there at the beginning, will ya?

[–] [email protected] 2 points 8 months ago

If you want to cover every case (mode), indeed. 😊

[–] [email protected] 3 points 8 months ago

yeah, I screwed it up

[–] [email protected] 2 points 8 months ago

gg

Huh.. I always just used :1

[–] [email protected] 11 points 8 months ago

E492: Not an editor command: ggdGwq

[–] [email protected] 1 points 8 months ago

ggdGZZ

This actually does what you intend to do. On nvim atleast.