Real Vim ninjas count every keystroke - do you?

Pick a challenge, fire up Vim, and show us what you got.

Changelog, Rules & FAQ, updates: @vimgolf, RSS.

Your VimGolf key: please sign in

$ gem install vimgolf
$ vimgolf setup
$ vimgolf put 5b6e21c9a893790006232531

Swap the operands under comparison

Swap the operands under comparison to prevent null pointer exception (at least in java)

Start file
if(lang.equals("en_US")) {
	System.out.println("The lang is en_US i.e english US"+
}

if(lang.equals("es_US")) {
	System.out.println("The lang is es_US i.e spanish US"+
}

if(lang.equals("fr_US")) {
	System.out.println("The lang is fr_US i.e france US"+
}
End file
if("en_US".equals(lang)) {
	System.out.println("The lang is en_US i.e english US"+
}

if("es_US".equals(lang)) {
	System.out.println("The lang is es_US i.e spanish US"+
}

if("fr_US".equals(lang)) {
	System.out.println("The lang is fr_US i.e france US"+
}

View Diff

1c1
< if(lang.equals("en_US")) {
---
> if("en_US".equals(lang)) {
5c5
< if(lang.equals("es_US")) {
---
> if("es_US".equals(lang)) {
9c9
< if(lang.equals("fr_US")) {
---
> if("fr_US".equals(lang)) {

Solutions by @andou2106:

Unlock 5 remaining solutions by signing in and submitting your own entry
Created by: @saurabh908583

98 active golfers, 270 entries

Solutions by @andou2106:
24
#62 - 安藤 / @andou2106

09/03/2018 at 03:47PM

25
#>67 - 安藤 / @andou2106

09/03/2018 at 03:45PM

27
#>81 - 安藤 / @andou2106

09/03/2018 at 03:44PM

28
#>82 - 安藤 / @andou2106

09/03/2018 at 03:39PM

29
#>83 - 安藤 / @andou2106

09/03/2018 at 03:35PM