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 4d22dcfa7f75b01e0700010e

Getters & Setters: Java

Boilerplate getters & setters - it's a tedious fact of life in Java, and probably the only thing that still pulls me back to an IDE. Perhaps someone knows a fast, pure vim way...

Start file
package com.vimgolf.challenge;

public class Person {
       
private String firstName;
       
private String surname;
       
private Integer age;
}
End file
package com.vimgolf.challenge;

public class Person {
       
private String firstName;
       
private String surname;
       
private Integer age;

       
public String getFirstName() { return firstName; }
       
public void setFirstName( String firstName ) {
               
this.firstName = firstName;
       
}

       
public String getSurname() { return surname; }
       
public void setSurname( String surname ) {
               
this.surname = surname;
       
}

       
public Integer getAge() { return age; }
       
public void setAge( Integer age ) {
               
this.age = age;
       
}
}

View Diff

6a7,21
>
>       public String getFirstName() { return firstName; }
>       public void setFirstName( String firstName ) {
>               this.firstName = firstName;
>       }
>
>       public String getSurname() { return surname; }
>       public void setSurname( String surname ) {
>               this.surname = surname;
>       }
>
>       public Integer getAge() { return age; }
>       public void setAge( Integer age ) {
>               this.age = age;
>       }

Solutions by @timhoa:

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

59 active golfers, 211 entries

Solutions by @timhoa:
123
#37 - timhoa / @timhoa

01/23/2011 at 03:36PM

125
#>38 - timhoa / @timhoa

01/23/2011 at 03:31PM

127
#>40 - timhoa / @timhoa

01/23/2011 at 02:34PM

131
#>42 - timhoa / @timhoa

01/23/2011 at 02:20PM

138
#>47 - timhoa / @timhoa

01/23/2011 at 01:45PM