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

Context Insensitive completion 1

Finish writing this simple Python HTTP server.

Start file
from SimpleHTTPServer import SimpleHTTPRequestHandler
from SocketServer import TCPServer

ADDR = ("", 8080)
httpd = # Finish this line
httpd.serve_forever()
End file
from SimpleHTTPServer import SimpleHTTPRequestHandler
from SocketServer import TCPServer

ADDR = ("", 8080)
httpd = TCPServer(ADDR, SimpleHTTPRequestHandler)
httpd.serve_forever()

View Diff

5c5
< httpd = # Finish this line
---
> httpd = TCPServer(ADDR, SimpleHTTPRequestHandler)

Solutions by @gezwitschersux:

Unlock 7 remaining solutions by signing in and submitting your own entry
Created by: @wolever

245 active golfers, 498 entries

Solutions by @gezwitschersux:
24
#207 - Shawn Stein / @gezwitschersux

12/29/2010 at 08:43PM

25
#>209 - Shawn Stein / @gezwitschersux

12/29/2010 at 08:57PM

26
#>212 - Shawn Stein / @gezwitschersux

12/29/2010 at 10:13PM

27
#>214 - Shawn Stein / @gezwitschersux

12/29/2010 at 07:50PM

28
#>216 - Shawn Stein / @gezwitschersux

12/29/2010 at 08:42PM

29
#>216 - Shawn Stein / @gezwitschersux

12/29/2010 at 08:46PM

30
#>216 - Shawn Stein / @gezwitschersux

12/29/2010 at 08:39PM