30440 active golfers, 371052 entries, 513 challenges
Open VimGolf challenges
Inverting Lines - 261 entries
A simple challenge to invert all lines, except the first.
Rural Post - 3622 entries
Simple challenge to remove all but the post code on each line
Add semicolons - 10286 entries
Simply add a semicolon at the end of each line
Simple, Practical, and Common - 32648 entries
Simple things we do all the time should be able to be done with very few keystrokes, but sometimes I find something I need to do makes me go, "There MUST be a better way." This challenge is just a simple movement and entering text at a certain place.
prepend * to every non-blank line - 5702 entries
Prepend an asterisk to every non-blank line in the input file.
simple replacements - 66 entries
The goal is to see the replacement commands in action.
Box it - 7592 entries
Create a box around a line.
One number per line - 18189 entries
Just give me the numbers.
swap number pairs - 1037 entries
Swap the numbers in a bunch of 2-element arrays.
I forgot quotes - 15627 entries
Oops.
Satisfy the go linter - 1464 entries
You just came up with this briliant go vars package. But dang, you forgot to add comments to the exported variables. Can you add a comment over each variable with a TODO-placeholder?
Just the middle - 11070 entries
Delete the instructions at the top and bottom.
Words in parens - 12676 entries
We should all ace this, right?
Modernise code - 377 entries
Modernise and clean up some C++ code.
remove lines containing the word "reader" - 3410 entries
easy stuff
A HAPPY NEW YEAR 2014 ! - 10507 entries
A HAPPY NEW YEAR 2014 !
Com(m)a Trouble - 3264 entries
Someone was real stupid when placing his commas. Can you fix it?
Vice versa - 7383 entries
Little role switching.
HS Final exam vimgolf - 418 entries
Change the initial file to a single line containing all names comma-separated with numbers inside parentheses.
Line under headers - 1851 entries
Put a line under each header, and remove the other markdown formatting.
Bad Copy Syntax - 1881 entries
Copy should be from right to left, but sometimes you type it wrong.
Applying same text modification in several lines - 2697 entries
Remove identical text at the beginning of several lines and the closing parenthesis.
Simple text editing with Vim - 11332 entries
Make the pairs of lines match up by making each second line same as first
Yo To Hello - 833 entries
Simply Turn Yo To Hello
Replace pattern with 1, 2, 3, ... on each line - 867 entries
For each line replace a search pattern (in this case $) with numbers starting at 1 and then increasing by 1 for each replaced match. a$b$c$ -> a0b1c2
One to Ten - 2030 entries
Generate the sequence of numbers from 1 to 10, one number per line. Inspired by this Reddit thread: https://redd.it/ak4it2
Swap values inside brackets - 2397 entries
Easy challenge.
Quote modules - 969 entries
Complete golang import statement.
Swap values - 4374 entries
Well, swap the values...
Basic renumbering - 5393 entries
Renumbering Basic.
From a Thunderlink to a Markdown link - 571 entries
ThunderLinks are durable hyperlinks to specific email messages generated from Thunderbird in HTML format. Leverage the power of vim to make them suitable for a markdown-formatted file.
Collect List - 4138 entries
Convert to comma separated list.
SCREAMING_SNAKE_CASE to Title Case - 1059 entries
Convert strings in SCREAMING_SNAKE_CASE to Title Case. Examples: EMPLOYEE_NAME -> Employee Name REVENUE_YEAR_TO_DATE -> Revenue Year To Date SALARY -> Salary
Aliases for cd - 778 entries
Create these beautiful aliases with as few strokes as possible. Are you up for the challenge?
V to the i - 4591 entries
Input is 99 V's. Output is 100 i's.
Hogwarts Email Sorting - 769 entries
Given a list of emails, get the students full name and their associated house.
xrandr outputs and dashes - 480 entries
uh oh, different video drivers identify display outputs with more dashes. Quick, need to change this xrandr script!
ninja substitution - 1200 entries
How can you reuse a previous substitution ?
Add quotes to ansible playbook - 398 entries
You created an ansible playbook, but forgot to add quotes. Can you fix it?
Every other line - 2769 entries
AaAaAaA
Array transposition - 2234 entries
Transpose two arrays into one.
Reorder the groups - 1061 entries
Change the order so that the groups of fruit come before the vegetables.
CSV to MD format - 23 entries
To convert a CSV list to Markdown list
Copy three lines - 2747 entries
If the site is up (by some miracle), make the text under every header identical.
Reformat/Refactor a Golfer Class - 5781 entries
A simple case of removing unneeded code and fixing broken indentation.
Python dataclasses - 54 entries
Simple challenge to extract fields from a Python class
Get mail address from outlook format - 496 entries
Create a mail list space separated of mail list formatted by outlook
switch variable - 4863 entries
how fast can you switch two variable ?
Team names - 1752 entries
The team names are misspelled.
Unsemantic linewrapping - 797 entries
[Inspired by a blog post I read: https://scott.mn/2014/02/21/semantic_linewrapping/. Text adapted.] Sometimes when editing a Markdown file, I wrap the lines semantically. Instead of inserting a newline at 70 columns (or whatever), or making paragraphs one long line, I put in newlines at a point that seems logical to me. This may seem silly, but it produces better diffs. Semantic linewrapping also makes editing snappier. I can delete, edit or insert sentences easily using linewise operations. Code-oriented text editors like Vim and [REDACTED] are really good at this kind of manipulation. Editing text that hasn't been wrapped semantically is a pain, though: