Damian Conway, "More Instantly Better Vim" - OSCON 2013
Video Statistics and Information
Channel: O'Reilly
Views: 264,153
Rating: 4.8987474 out of 5
Keywords: Vim (Software), O'Reilly Open Source Convention (Conference Series), Damian Conway, Thoughtstream, Mainstage, OSCON, Open Source Software (Industry), programming tips, open source tips, open source tools, open source tricks, text editing, open source convention, O'Reilly Media (Business Operation), tech convention, technology convention, tech conference, Technology (Professional Field), O'Reilly, O'Reilly Media, OReilly, OReilly Media, OReillyMedia
Id: aHm36-na4-4
Channel Id: undefined
Length: 38min 51sec (2331 seconds)
Published: Tue Sep 10 2013
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.
Damian Conway is the Hemingway of technical writers. I consider his Object Oriented Perl text to be a timeless classic and probably the single book that influenced + helped me out the most back in my early programming years.
I long ago reached the point where I spend more time fiddling with my vim settings than actually using vim for real work. My time wasters at the moment are http://learnvimscriptthehardway.stevelosh.com and Google maktaba. For sure vim makes me less productive...
Dude, what's with the tough crowd? I thought the jokes were funny! OsCon crew must have pretty high standards I guess.
pretty weird to focus so much on some things and completely dismiss syntax highlighting- i think good syntax highlighting is the most important because it helps you find mistakes
I would love to see something like this but in Emacs.
came to comments looking for a link to the tarball... Since nobody linked it, here it is:
https://docs.google.com/file/d/0Bx3f0gFZh5Jqc0MtcUstV3BKdTQ
That was painful to watch. He was so proud of those jokes.
He's not using gVim, instead using console vim in an ugly console with a non-blinking white cursor on black background. Writes an ugly hack to blink highlight current line when searching. I disapprove.
btw why no syntax highlighting?
What's up with a plugin for converting comma-separated lists into bullet lists, I guarantee that you'd spend more time and mental effort remembering its name and how it's used, rather than 1) select the text and replace commas with newlines (
V :s/,/\r/
) 2) select the first column and insert your bullets (<ctrl-V> <down down down> <shift-I>- <Enter>
). It's better to learn to use general-purpose tools well than to create a very special purpose tool for something you need once a year.