sweetie 1.0.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. checksums.yaml +5 -5
  2. data/.circleci/config.yml +30 -0
  3. data/.gitignore +3 -0
  4. data/.rubocop.yml +16 -0
  5. data/Gemfile +3 -2
  6. data/README.md +224 -28
  7. data/Rakefile +3 -2
  8. data/lib/sweetie/bitbucket.rb +22 -197
  9. data/lib/sweetie/bitbucket_stati_helper.rb +247 -0
  10. data/lib/sweetie/conversion.rb +91 -62
  11. data/lib/sweetie/helper.rb +60 -51
  12. data/lib/sweetie/version.rb +2 -1
  13. data/lib/sweetie.rb +2 -2
  14. data/spec/fixtures/bitbucket/expected_repositories.txt +1 -0
  15. data/spec/fixtures/bitbucket/repositories.json +1 -0
  16. data/spec/fixtures/jekyll/_config.yml +4 -0
  17. data/spec/fixtures/jekyll/_config_repositories.yml +7 -0
  18. data/spec/fixtures/jekyll/_expected_config.yml +4 -0
  19. data/spec/{source → fixtures/jekyll}/site/404.html +0 -0
  20. data/spec/{source → fixtures/jekyll}/site/about.html +0 -0
  21. data/spec/{source → fixtures/jekyll}/site/archiv.html +0 -0
  22. data/spec/{source → fixtures/jekyll}/site/atom.xml +0 -0
  23. data/spec/{source → fixtures/jekyll}/site/colophon.html +0 -0
  24. data/spec/{source → fixtures/jekyll}/site/contact.html +0 -0
  25. data/spec/{source → fixtures/jekyll}/site/follow.html +0 -0
  26. data/spec/{source → fixtures/jekyll}/site/images/2_avatars.gif +0 -0
  27. data/spec/{source → fixtures/jekyll}/site/images/favicon.png +0 -0
  28. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther.jpg +0 -0
  29. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_normal.jpg +0 -0
  30. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_small.jpg +0 -0
  31. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/closebox.png +0 -0
  32. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-fill.png +0 -0
  33. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-l.png +0 -0
  34. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-r.png +0 -0
  35. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow1.png +0 -0
  36. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow2.png +0 -0
  37. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow3.png +0 -0
  38. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow4.png +0 -0
  39. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow5.png +0 -0
  40. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow6.png +0 -0
  41. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow7.png +0 -0
  42. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow8.png +0 -0
  43. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-1.png +0 -0
  44. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-10.png +0 -0
  45. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-11.png +0 -0
  46. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-12.png +0 -0
  47. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-2.png +0 -0
  48. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-3.png +0 -0
  49. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-4.png +0 -0
  50. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-5.png +0 -0
  51. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-6.png +0 -0
  52. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-7.png +0 -0
  53. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-8.png +0 -0
  54. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-9.png +0 -0
  55. data/spec/{source → fixtures/jekyll}/site/images/rails3.jpg +0 -0
  56. data/spec/{source → fixtures/jekyll}/site/index.html +0 -0
  57. data/spec/{source → fixtures/jekyll}/site/robots.txt +0 -0
  58. data/spec/{source → fixtures/jekyll}/site/sitemap.xml +0 -0
  59. data/spec/{source → fixtures/jekyll}/site/why-i-use-jekyll-for-blogging.html +0 -0
  60. data/spec/fixtures/middleman/build/2012-01-meetup/index.html +238 -0
  61. data/spec/fixtures/middleman/build/2012-03-meetup/index.html +217 -0
  62. data/spec/fixtures/middleman/build/2012-05-meetup/index.html +214 -0
  63. data/spec/fixtures/middleman/build/2012-07-meetup/index.html +210 -0
  64. data/spec/fixtures/middleman/build/2012-08-workshop/index.html +228 -0
  65. data/spec/fixtures/middleman/build/2012-09-meetup/index.html +231 -0
  66. data/spec/fixtures/middleman/build/2012-10-workshop/index.html +227 -0
  67. data/spec/fixtures/middleman/build/2012-11-meetup/index.html +229 -0
  68. data/spec/fixtures/middleman/build/2012-unusual-december-meetup/index.html +186 -0
  69. data/spec/fixtures/middleman/build/2013-01-meetup/index.html +226 -0
  70. data/spec/fixtures/middleman/build/404/index.html +157 -0
  71. data/spec/fixtures/middleman/build/CNAME +1 -0
  72. data/spec/fixtures/middleman/build/april-2014-meetup/index.html +221 -0
  73. data/spec/fixtures/middleman/build/april-2015-meetup/index.html +204 -0
  74. data/spec/fixtures/middleman/build/april-2017-meetup/index.html +210 -0
  75. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-144x144.png +0 -0
  76. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-192x192.png +0 -0
  77. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-36x36.png +0 -0
  78. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-48x48.png +0 -0
  79. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-72x72.png +0 -0
  80. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-96x96.png +0 -0
  81. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-114x114.png +0 -0
  82. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-120x120.png +0 -0
  83. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-144x144.png +0 -0
  84. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-152x152.png +0 -0
  85. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-180x180.png +0 -0
  86. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-57x57.png +0 -0
  87. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-60x60.png +0 -0
  88. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-72x72.png +0 -0
  89. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-76x76.png +0 -0
  90. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-precomposed.png +0 -0
  91. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon.png +0 -0
  92. data/spec/fixtures/middleman/build/assets/favicons/browserconfig.xml +12 -0
  93. data/spec/fixtures/middleman/build/assets/favicons/favicon-16x16.png +0 -0
  94. data/spec/fixtures/middleman/build/assets/favicons/favicon-32x32.png +0 -0
  95. data/spec/fixtures/middleman/build/assets/favicons/favicon-96x96.png +0 -0
  96. data/spec/fixtures/middleman/build/assets/favicons/favicon.ico +0 -0
  97. data/spec/fixtures/middleman/build/assets/favicons/manifest.json +41 -0
  98. data/spec/fixtures/middleman/build/assets/favicons/mstile-144x144.png +0 -0
  99. data/spec/fixtures/middleman/build/assets/favicons/mstile-150x150.png +0 -0
  100. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x150.png +0 -0
  101. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x310.png +0 -0
  102. data/spec/fixtures/middleman/build/assets/favicons/mstile-70x70.png +0 -0
  103. data/spec/fixtures/middleman/build/assets/favicons/safari-pinned-tab.svg +450 -0
  104. data/spec/fixtures/middleman/build/assets/images/launch_co_logo.png +0 -0
  105. data/spec/fixtures/middleman/build/assets/images/vimfest.png +0 -0
  106. data/spec/fixtures/middleman/build/assets/javascripts/application.js +12 -0
  107. data/spec/fixtures/middleman/build/assets/javascripts/jquery.utils.js +12 -0
  108. data/spec/fixtures/middleman/build/assets/javascripts/lib/validate.js +1 -0
  109. data/spec/fixtures/middleman/build/assets/stylesheets/application.css +5 -0
  110. data/spec/fixtures/middleman/build/assets/stylesheets/vendor/bootstrap.css +5 -0
  111. data/spec/fixtures/middleman/build/august-2013-meetup/index.html +208 -0
  112. data/spec/fixtures/middleman/build/blog/index.html +500 -0
  113. data/spec/fixtures/middleman/build/book-club-about-the-viml-primer/index.html +182 -0
  114. data/spec/fixtures/middleman/build/contact/index.html +155 -0
  115. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_ctags/index.html +98 -0
  116. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_vimprofiling/index.html +157 -0
  117. data/spec/fixtures/middleman/build/data/vimberlin-2014-01_vim_writing/index.html +70 -0
  118. data/spec/fixtures/middleman/build/december-2015-meetup/index.html +199 -0
  119. data/spec/fixtures/middleman/build/december-2016-meetup/index.html +224 -0
  120. data/spec/fixtures/middleman/build/february-2013-vim-beer-lin/index.html +190 -0
  121. data/spec/fixtures/middleman/build/february-2015-meetup/index.html +233 -0
  122. data/spec/fixtures/middleman/build/february-2016-meetup/index.html +271 -0
  123. data/spec/fixtures/middleman/build/feed.xml +2106 -0
  124. data/spec/fixtures/middleman/build/fonts/FontAwesome.otf +0 -0
  125. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.eot +0 -0
  126. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.svg +655 -0
  127. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.ttf +0 -0
  128. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff +0 -0
  129. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff2 +0 -0
  130. data/spec/fixtures/middleman/build/humans.txt +12 -0
  131. data/spec/fixtures/middleman/build/imprint/index.html +177 -0
  132. data/spec/fixtures/middleman/build/index.html +157 -0
  133. data/spec/fixtures/middleman/build/january-2014-meetup/index.html +257 -0
  134. data/spec/fixtures/middleman/build/january-2015-meetup/index.html +243 -0
  135. data/spec/fixtures/middleman/build/january-2016-meetup/index.html +202 -0
  136. data/spec/fixtures/middleman/build/january-2017-meetup/index.html +228 -0
  137. data/spec/fixtures/middleman/build/july-2015-meetup/index.html +207 -0
  138. data/spec/fixtures/middleman/build/june-2016-meetup/index.html +260 -0
  139. data/spec/fixtures/middleman/build/march-2-2017-meetup/index.html +201 -0
  140. data/spec/fixtures/middleman/build/march-2014-meetup/index.html +219 -0
  141. data/spec/fixtures/middleman/build/march-2016-meetup/index.html +221 -0
  142. data/spec/fixtures/middleman/build/march-2017-meetup/index.html +222 -0
  143. data/spec/fixtures/middleman/build/may-2013-meetup/index.html +234 -0
  144. data/spec/fixtures/middleman/build/may-2014-meetup/index.html +198 -0
  145. data/spec/fixtures/middleman/build/may-2015-meetup/index.html +202 -0
  146. data/spec/fixtures/middleman/build/may-2016-meetup/index.html +245 -0
  147. data/spec/fixtures/middleman/build/newsletter/index.html +171 -0
  148. data/spec/fixtures/middleman/build/november-2013-meetup/index.html +199 -0
  149. data/spec/fixtures/middleman/build/november-2015-meetup/index.html +402 -0
  150. data/spec/fixtures/middleman/build/november-2016-meetup/index.html +224 -0
  151. data/spec/fixtures/middleman/build/october-2013-meetup/index.html +210 -0
  152. data/spec/fixtures/middleman/build/october-2014-meetup/index.html +196 -0
  153. data/spec/fixtures/middleman/build/october-2016-meetup/index.html +222 -0
  154. data/spec/fixtures/middleman/build/robots.txt +6 -0
  155. data/spec/fixtures/middleman/build/september-2013-meetup/index.html +225 -0
  156. data/spec/fixtures/middleman/build/september-2014-meetup/index.html +211 -0
  157. data/spec/fixtures/middleman/build/sitemap.xml +297 -0
  158. data/spec/fixtures/middleman/build/vimfest-october-2015/index.html +303 -0
  159. data/spec/fixtures/middleman/config.rb +4 -0
  160. data/spec/fixtures/middleman/config_repositories.rb +7 -0
  161. data/spec/fixtures/middleman/expected_config.rb +4 -0
  162. data/spec/spec_helper.rb +2 -2
  163. data/spec/sweetie_bitbucket_spec.rb +26 -51
  164. data/spec/sweetie_bitbucket_stati_helper_spec.rb +124 -0
  165. data/spec/sweetie_conversion_spec.rb +105 -17
  166. data/spec/sweetie_helper_spec.rb +140 -0
  167. data/sweetie.gemspec +10 -9
  168. metadata +163 -56
  169. data/.travis.yml +0 -7
  170. data/spec/source/_config.yml +0 -18
  171. data/spec/source/bitbucket/user_repositories.json +0 -161
  172. data/spec/source/bitbucket/user_repositories_expectation.txt +0 -1
@@ -0,0 +1,2106 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3
+ <channel>
4
+ <title>Vimberlin</title>
5
+ <description>The gathering for Vim-enthusiasts in Berlin</description>
6
+ <link>http://vimberlin.com/</link>
7
+ <item>
8
+ <title>April 2017 Meetup</title>
9
+ <link>http://vimberlin.com/april-2017-meetup/</link>
10
+ <description>&lt;![CDATA[&lt;p&gt;Hi,&lt;/p&gt;
11
+
12
+ &lt;p&gt;the April meetup in 2017 is just around the corner. We&amp;#39;ll meet on 20th Thursday in April at IN-Berlin in Moabit/Tiergarten/Mitte,
13
+ just north of Hauptbahnhof between the bus stops &lt;code&gt;&amp;quot;Quitzowstraße&amp;quot;&lt;/code&gt; (Bus 123, M27) and &lt;code&gt;&amp;quot;Kruppstraße&amp;quot;&lt;/code&gt; (Bus 123).&lt;/p&gt;
14
+
15
+ &lt;p&gt;Interested? We are always interested in short-talks, longer talks as well as presentations about what you&amp;#39;ve learned.&lt;/p&gt;
16
+
17
+ &lt;h2&gt;The venue&lt;/h2&gt;
18
+
19
+ &lt;ul&gt;
20
+ &lt;li&gt;internet: yes. cable+wifi&lt;/li&gt;
21
+ &lt;li&gt;projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&amp;#39;t forget your adapters and/or install
22
+ &lt;a href="http://www.teamviewer.com/de/"&gt;teamviewer.com/&lt;/a&gt;
23
+
24
+ &lt;ul&gt;
25
+ &lt;li&gt;room: 15 people&lt;/li&gt;
26
+ &lt;li&gt;drinks: fridge with drinks. 1€ each.&lt;/li&gt;
27
+ &lt;/ul&gt;&lt;/li&gt;
28
+ &lt;/ul&gt;
29
+
30
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! Be brief.. 5min for each presentation. We are
31
+ open to any kind of questions and suggestions.&lt;/p&gt;
32
+
33
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes (@guckes)&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther
34
+ (@wikimatze)&lt;/a&gt;&lt;/p&gt;
35
+
36
+ &lt;p&gt;See you there!&lt;/p&gt;
37
+ ]]&gt;</description>
38
+ <pubDate>Thu, 20 Apr 2017 00:00:00 +0000</pubDate>
39
+ <guid>http://vimberlin.com/april-2017-meetup/</guid>
40
+ </item>
41
+ <item>
42
+ <title>March 2017 Meetup</title>
43
+ <link>http://vimberlin.com/march-2-2017-meetup/</link>
44
+ <description>&lt;![CDATA[&lt;p&gt;Dear Vim users,&lt;/p&gt;
45
+
46
+ &lt;p&gt;the next meetup is soon. Did you discover a new plugin, learned something about Vim, found a fancy shortcut key or just used Vim
47
+ for developing a cool project -- we want to hear about it!&lt;/p&gt;
48
+
49
+ &lt;p&gt;Interested? We are always interested in short-talks, longer talks as well as presentations about what you&amp;#39;ve learned. Please post your proposal under
50
+ &lt;a title="GitHub" href="https://github.com/vimberlin/vimberlin.de/issues/33"&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
51
+
52
+ &lt;h2&gt;The rest&lt;/h2&gt;
53
+
54
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! Be brief.. 5min for each presentation. We are
55
+ open to any kind of questions and suggestions.&lt;/p&gt;
56
+
57
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes a.k.a. @guckes&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther
58
+ a.k.a @wikimatze&lt;/a&gt;&lt;/p&gt;
59
+
60
+ &lt;p&gt;See you there!&lt;/p&gt;
61
+ ]]&gt;</description>
62
+ <pubDate>Thu, 16 Mar 2017 00:00:00 +0000</pubDate>
63
+ <guid>http://vimberlin.com/march-2-2017-meetup/</guid>
64
+ </item>
65
+ <item>
66
+ <title>March 2017 Meetup (pre-Chemnitz Linux Days)</title>
67
+ <link>http://vimberlin.com/march-2017-meetup/</link>
68
+ <description>&lt;![CDATA[&lt;p&gt;Dear Vim users,&lt;/p&gt;
69
+
70
+ &lt;p&gt;the next meetup is soon. Did you discover a new plugin, learned something about Vim, found a fancy shortcut key or just used Vim
71
+ for developing a cool project -- we want to hear about it!&lt;/p&gt;
72
+
73
+ &lt;p&gt;Interested? We are always interested in short-talks, longer talks as well as presentations about what you&amp;#39;ve learned. Please post your proposal under
74
+ &lt;a title="GitHub" href="https://github.com/vimberlin/vimberlin.de/issues/33"&gt;GitHub&lt;/a&gt;&lt;/p&gt;
75
+
76
+ &lt;h2&gt;Reminder about the Chemnitz Linux Days (aka CLT):&lt;/h2&gt;
77
+ &lt;pre class="highlight plaintext"&gt;&lt;code&gt;Chemnitzer Linux-Tage venue: Hörsaal- und Seminar-Gebäude
78
+ "Barrieren einreissen!" der Technischen Universität Chemnitz
79
+ Sa+So 11.+12. März 2017 Reichenhainer Str 90, 09126 Chemnitz
80
+ Sa 8:30-18h, So 9-18h http://chemnitzer.linux-tage.de/2017/
81
+ Fr 20-24h im Turmbrauhaus http://tinyurl.com/clt17brauhaus
82
+ (OpenStreetMap) map: http://www.osm.org/way/30742889
83
+ &lt;/code&gt;&lt;/pre&gt;
84
+ &lt;p&gt;There will be Vim Workshop:&lt;/p&gt;
85
+ &lt;pre class="highlight plaintext"&gt;&lt;code&gt;date: 2017-03-11 14:00-17:00 Raum W3
86
+ event: "Vim Advanced" - Chemnitzer LinuxTage (CLT)
87
+ url: https://chemnitzer.linux-tage.de/2017/de/programm/beitrag/342
88
+ contact: Sven Guckes chemnitz2017@guckes.net
89
+ announce: https://twitter.com/guckes/status/826483482285182977
90
+ &lt;/code&gt;&lt;/pre&gt;
91
+ &lt;p&gt;Sven is going travelling there by bus:&lt;/p&gt;
92
+ &lt;pre class="highlight plaintext"&gt;&lt;code&gt;2017 03 10 00 Fri 12:45-15:55 Berlin_Süddkreuz -&amp;gt;Chemnitz per flixbus
93
+ 2017 03 12 00 Sun 18:20-21:30 Chemnitz-&amp;gt; Berlin_Südkreuz per flixbus
94
+ &lt;/code&gt;&lt;/pre&gt;
95
+ &lt;p&gt;Join him.&lt;/p&gt;
96
+
97
+ &lt;h2&gt;The rest&lt;/h2&gt;
98
+
99
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! Be brief.. 5min for each presentation. We are
100
+ open to any kind of questions and suggestions.&lt;/p&gt;
101
+
102
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes a.k.a. @guckes&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther
103
+ a.k.a @wikimatze&lt;/a&gt;&lt;/p&gt;
104
+
105
+ &lt;p&gt;See you there!&lt;/p&gt;
106
+ ]]&gt;</description>
107
+ <pubDate>Thu, 9 Mar 2017 00:00:00 +0000</pubDate>
108
+ <guid>http://vimberlin.com/march-2017-meetup/</guid>
109
+ </item>
110
+ <item>
111
+ <title>January 2017 Meetup</title>
112
+ <link>http://vimberlin.com/january-2017-meetup/</link>
113
+ <description>&lt;![CDATA[&lt;p&gt;Hi vimmers,&lt;/p&gt;
114
+
115
+ &lt;p&gt;the first meetup in 2017 is just around the corner. We&amp;#39;ll meet on 19th Thursday in January at IN-Berlin in Moabit/Tiergarten/Mitte,
116
+ just north of Hauptbahnhof between the bus stops &lt;code&gt;&amp;quot;Quitzowstraße&amp;quot;&lt;/code&gt; (Bus 123, M27) and &lt;code&gt;&amp;quot;Kruppstraße&amp;quot;&lt;/code&gt; (Bus 123).&lt;/p&gt;
117
+
118
+ &lt;p&gt;Interested? We are always interested in short-talks, longer talks as well as presentations about what you&amp;#39;ve learned.&lt;/p&gt;
119
+
120
+ &lt;h2&gt;Talks&lt;/h2&gt;
121
+
122
+ &lt;ul&gt;
123
+ &lt;li&gt;&lt;a href="https://cmus.github.io/"&gt;cmus&lt;/a&gt; and &lt;a href="https://github.com/azadkuh/vim-cmus"&gt;vim-cmus&lt;/a&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
124
+ &lt;li&gt;&lt;a href="https://www.nitrokey.com/de"&gt;Nitrokey&lt;/a&gt; with storage and Pass for password management by &lt;a href="https://twitter.com/koehr_in"&gt;Norman Köhring&lt;/a&gt;&lt;/li&gt;
125
+ &lt;li&gt;&lt;a href="http://kakoune.org/"&gt;Kakoune&lt;/a&gt; – a modal text editor by &lt;a href="https://twitter.com/koehr_in"&gt;Norman Köhring&lt;/a&gt;&lt;/li&gt;
126
+ &lt;li&gt;&lt;a href="http://www.jovicailic.org/"&gt;Jovica Ilic&lt;/a&gt; will talk about his book &lt;a href="http://jovicailic.org/mastering-vim-quickly/"&gt;&amp;quot;Mastering Vim Quickly&amp;quot;&lt;/a&gt;&lt;/li&gt;
127
+ &lt;/ul&gt;
128
+
129
+ &lt;h2&gt;The venue&lt;/h2&gt;
130
+
131
+ &lt;ul&gt;
132
+ &lt;li&gt;internet: yes. cable+wifi&lt;/li&gt;
133
+ &lt;li&gt;projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&amp;#39;t forget your adapters and/or install
134
+ &lt;a href="http://www.teamviewer.com/de/"&gt;teamviewer.com/&lt;/a&gt;
135
+
136
+ &lt;ul&gt;
137
+ &lt;li&gt;room: 15 people&lt;/li&gt;
138
+ &lt;li&gt;drinks: fridge with drinks. 1€ each.&lt;/li&gt;
139
+ &lt;/ul&gt;&lt;/li&gt;
140
+ &lt;/ul&gt;
141
+
142
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! Be brief.. 5min for each presentation. We are
143
+ open to any kind of questions and suggestions.&lt;/p&gt;
144
+
145
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes (@guckes)&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther
146
+ (@wikimatze)&lt;/a&gt;&lt;/p&gt;
147
+
148
+ &lt;p&gt;See you there!&lt;/p&gt;
149
+
150
+ &lt;p&gt;&lt;a id="recap"&gt;&lt;/a&gt;&lt;/p&gt;
151
+
152
+ &lt;h2&gt;Recap&lt;/h2&gt;
153
+
154
+ &lt;p&gt;Slides of the talk &lt;strong&gt;&amp;quot;vim-cmus&amp;quot;&lt;/strong&gt;:&lt;/p&gt;
155
+
156
+ &lt;script async class="speakerdeck-embed" data-id="2b48cd9f21464f1cb4dc04701daa682b" data-ratio="1.33159947984395" src="//speakerdeck.com/assets/embed.js"&gt;&lt;/script&gt;
157
+ ]]&gt;</description>
158
+ <pubDate>Thu, 19 Jan 2017 00:00:00 +0000</pubDate>
159
+ <guid>http://vimberlin.com/january-2017-meetup/</guid>
160
+ </item>
161
+ <item>
162
+ <title>December 2016 Meetup</title>
163
+ <link>http://vimberlin.com/december-2016-meetup/</link>
164
+ <description>&lt;![CDATA[&lt;p&gt;Hi vimmers,&lt;/p&gt;
165
+
166
+ &lt;p&gt;the next meetup will be on 15th Thursday in December at IN-Berlin in Moabit/Tiergarten/Mitte,
167
+ just north of Hauptbahnhof between the bus stops &lt;code&gt;&amp;quot;Quitzowstraße&amp;quot;&lt;/code&gt; (Bus 123, M27) and &lt;code&gt;&amp;quot;Kruppstraße&amp;quot;&lt;/code&gt; (Bus 123).&lt;/p&gt;
168
+
169
+ &lt;p&gt;Interested? We are always interested in short-talks, longer talks as well as presentations about what you&amp;#39;ve learned.&lt;/p&gt;
170
+
171
+ &lt;p&gt;We can do the following&lt;/p&gt;
172
+
173
+ &lt;ul&gt;
174
+ &lt;li&gt;vim intro for beginners&lt;/li&gt;
175
+ &lt;li&gt;vim Q&amp;amp;A - questions+answers&lt;/li&gt;
176
+ &lt;li&gt;vim NEWS&lt;/li&gt;
177
+ &lt;li&gt;vim installation from source (git repository)&lt;/li&gt;
178
+ &lt;li&gt;vim installation config with support for lua+perl+python+ruby&lt;/li&gt;
179
+ &lt;li&gt;vimgolf challenge&lt;/li&gt;
180
+ &lt;/ul&gt;
181
+
182
+ &lt;p&gt;Feel free to join us and we will help to setup vim.&lt;/p&gt;
183
+
184
+ &lt;h2&gt;The venue&lt;/h2&gt;
185
+
186
+ &lt;ul&gt;
187
+ &lt;li&gt;internet: yes. cable+wifi&lt;/li&gt;
188
+ &lt;li&gt;projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&amp;#39;t forget your adapters and/or install
189
+ &lt;a href="http://www.teamviewer.com/de/"&gt;teamviewer.com/&lt;/a&gt;
190
+
191
+ &lt;ul&gt;
192
+ &lt;li&gt;room: 15 people&lt;/li&gt;
193
+ &lt;li&gt;drinks: fridge with drinks. 1€ each.&lt;/li&gt;
194
+ &lt;/ul&gt;&lt;/li&gt;
195
+ &lt;/ul&gt;
196
+
197
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! Be brief.. 5min for each presentation. We are
198
+ open to any kind of questions and suggestions.&lt;/p&gt;
199
+
200
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes (@guckes)&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther
201
+ (@wikimatze)&lt;/a&gt;&lt;/p&gt;
202
+
203
+ &lt;p&gt;See you there!&lt;/p&gt;
204
+ ]]&gt;</description>
205
+ <pubDate>Thu, 15 Dec 2016 00:00:00 +0000</pubDate>
206
+ <guid>http://vimberlin.com/december-2016-meetup/</guid>
207
+ </item>
208
+ <item>
209
+ <title>November 2016 Meetup</title>
210
+ <link>http://vimberlin.com/november-2016-meetup/</link>
211
+ <description>&lt;![CDATA[&lt;p&gt;Hi vimmers,&lt;/p&gt;
212
+
213
+ &lt;p&gt;the next meetup will be on 17th Thursday in November at IN-Berlin in Moabit/Tiergarten/Mitte,
214
+ just north of Hauptbahnhof between the bus stops &lt;code&gt;&amp;quot;Quitzowstraße&amp;quot;&lt;/code&gt; (Bus 123, M27) and &lt;code&gt;&amp;quot;Kruppstraße&amp;quot;&lt;/code&gt; (Bus 123).&lt;/p&gt;
215
+
216
+ &lt;p&gt;Interested? We are always interested in short-talks, longer talks as well as presentations about what you&amp;#39;ve learned.&lt;/p&gt;
217
+
218
+ &lt;p&gt;We can do the following&lt;/p&gt;
219
+
220
+ &lt;ul&gt;
221
+ &lt;li&gt;vim intro for beginners&lt;/li&gt;
222
+ &lt;li&gt;vim Q&amp;amp;A - questions+answers&lt;/li&gt;
223
+ &lt;li&gt;vim NEWS&lt;/li&gt;
224
+ &lt;li&gt;vim installation from source (git repository)&lt;/li&gt;
225
+ &lt;li&gt;vim installation config with support for lua+perl+python+ruby&lt;/li&gt;
226
+ &lt;li&gt;vimgolf challenge&lt;/li&gt;
227
+ &lt;/ul&gt;
228
+
229
+ &lt;p&gt;Feel free to join us and we will help to setup vim&lt;/p&gt;
230
+
231
+ &lt;h2&gt;The venue&lt;/h2&gt;
232
+
233
+ &lt;ul&gt;
234
+ &lt;li&gt;internet: yes. cable+wifi&lt;/li&gt;
235
+ &lt;li&gt;projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&amp;#39;t forget your adapters and/or install
236
+ &lt;a href="http://www.teamviewer.com/de/"&gt;teamviewer.com/&lt;/a&gt;
237
+
238
+ &lt;ul&gt;
239
+ &lt;li&gt;room: 15 people&lt;/li&gt;
240
+ &lt;li&gt;drinks: fridge with drinks. 1€ each.&lt;/li&gt;
241
+ &lt;/ul&gt;&lt;/li&gt;
242
+ &lt;/ul&gt;
243
+
244
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! Be brief.. 5min for each presentation. We are
245
+ open to any kind of questions and suggestions.&lt;/p&gt;
246
+
247
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes (@guckes)&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther
248
+ (@wikimatze)&lt;/a&gt;&lt;/p&gt;
249
+
250
+ &lt;p&gt;See you there!&lt;/p&gt;
251
+ ]]&gt;</description>
252
+ <pubDate>Thu, 17 Nov 2016 00:00:00 +0000</pubDate>
253
+ <guid>http://vimberlin.com/november-2016-meetup/</guid>
254
+ </item>
255
+ <item>
256
+ <title>October 2016 Meetup</title>
257
+ <link>http://vimberlin.com/october-2016-meetup/</link>
258
+ <description>&lt;![CDATA[&lt;p&gt;Hi vimmers!&lt;/p&gt;
259
+
260
+ &lt;p&gt;The &lt;a title="vimfest 2016" href="http://vimfest.org/"&gt;vimfest 2016&lt;/a&gt; was a blast (Bram Moolenaar had been there - see
261
+ &lt;a title="picture on flickr" href="https://www.flickr.com/photos/wikimatze/29767624735/in/dateposted-public/"&gt;picture on flickr&lt;/a&gt;) and after our summer break it&amp;#39;s
262
+ time for another meetup. It will be on 2nd Thursday in October, on October 13th at IN-Berlin in Moabit/Tiergarten/Mitte,
263
+ just north of Hauptbahnhof between the bus stops &lt;code&gt;&amp;quot;Quitzowstraße&amp;quot;&lt;/code&gt; (Bus 123, M27) and &lt;code&gt;&amp;quot;Kruppstraße&amp;quot;&lt;/code&gt; (Bus 123).&lt;/p&gt;
264
+
265
+ &lt;h2&gt;Talks so far&lt;/h2&gt;
266
+
267
+ &lt;p&gt;The topics this time:&lt;/p&gt;
268
+
269
+ &lt;ul&gt;
270
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Getting started with vim-test&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
271
+ &lt;li&gt;space for your topic ...&lt;/li&gt;
272
+ &lt;/ul&gt;
273
+
274
+ &lt;p&gt;Interested? We are always interested in short-talks, longer talks as well as presentations about what you&amp;#39;ve learned.&lt;/p&gt;
275
+
276
+ &lt;h2&gt;The venue&lt;/h2&gt;
277
+
278
+ &lt;ul&gt;
279
+ &lt;li&gt;internet: yes. cable+wifi&lt;/li&gt;
280
+ &lt;li&gt;projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&amp;#39;t forget your adapters and/or install
281
+ &lt;a href="http://www.teamviewer.com/de/"&gt;teamviewer.com/&lt;/a&gt;
282
+
283
+ &lt;ul&gt;
284
+ &lt;li&gt;room: 15 people&lt;/li&gt;
285
+ &lt;li&gt;drinks: fridge with drinks. 1€ each.&lt;/li&gt;
286
+ &lt;/ul&gt;&lt;/li&gt;
287
+ &lt;/ul&gt;
288
+
289
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! Be brief.. 5min for each presentation. We are
290
+ open to any kind of questions and suggestions.&lt;/p&gt;
291
+
292
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes (@guckes)&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther
293
+ (@wikimatze)&lt;/a&gt;&lt;/p&gt;
294
+
295
+ &lt;p&gt;See you there!&lt;/p&gt;
296
+ ]]&gt;</description>
297
+ <pubDate>Thu, 13 Oct 2016 00:00:00 +0000</pubDate>
298
+ <guid>http://vimberlin.com/october-2016-meetup/</guid>
299
+ </item>
300
+ <item>
301
+ <title>June 2016 Meetup</title>
302
+ <link>http://vimberlin.com/june-2016-meetup/</link>
303
+ <description>&lt;![CDATA[&lt;p&gt;Hi vimmers!&lt;/p&gt;
304
+
305
+ &lt;p&gt;The next vimberlin meetup will be on 3rd thursday in June, on June 16th at IN-Berlin in Moabit/Tiergarten/Mitte,
306
+ just north of Hauptbahnhof between the bus stops &lt;code&gt;&amp;quot;Quitzowstraße&amp;quot;&lt;/code&gt; (Bus 123, M27) and &lt;code&gt;&amp;quot;Kruppstraße&amp;quot;&lt;/code&gt; (Bus 123).&lt;/p&gt;
307
+
308
+ &lt;h2&gt;Talks so far&lt;/h2&gt;
309
+
310
+ &lt;p&gt;The planned topics this time:&lt;/p&gt;
311
+
312
+ &lt;ul&gt;
313
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Get productive with vimtex for LaTeX&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
314
+ &lt;li&gt;space for your topic ...&lt;/li&gt;
315
+ &lt;/ul&gt;
316
+
317
+ &lt;h2&gt;The venue&lt;/h2&gt;
318
+
319
+ &lt;ul&gt;
320
+ &lt;li&gt;internet: yes. cable+wifi&lt;/li&gt;
321
+ &lt;li&gt;projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&amp;#39;t forget your adapters and/or install &lt;a href="http://www.teamviewer.com/de/"&gt;teamviewer.com/&lt;/a&gt;&lt;/li&gt;
322
+ &lt;li&gt;room: 15 people&lt;/li&gt;
323
+ &lt;li&gt;drinks: fridge with drinks. 1€ each.&lt;/li&gt;
324
+ &lt;/ul&gt;
325
+
326
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! be brief.. 5min for each presentation. We are
327
+ open to any kind of questions and suggestions.&lt;/p&gt;
328
+
329
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes (@guckes)&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther (@wikimatze)&lt;/a&gt;&lt;/p&gt;
330
+
331
+ &lt;p&gt;See you there!&lt;/p&gt;
332
+
333
+ &lt;p&gt;&lt;a id="recap"&gt;&lt;/a&gt;&lt;/p&gt;
334
+
335
+ &lt;h2&gt;Recap&lt;/h2&gt;
336
+
337
+ &lt;h3&gt;wikimatze&lt;/h3&gt;
338
+
339
+ &lt;p&gt;Slides of the talk &lt;strong&gt;&amp;quot;Get productive with vimtex for LaTeX&amp;quot;&lt;/strong&gt;:&lt;/p&gt;
340
+
341
+ &lt;script async class="speakerdeck-embed" data-slide="1" data-id="ff777bb521294bab88ef4d60ac6ac3fb" data-ratio="1.33159947984395" src="//speakerdeck.com/assets/embed.js"&gt;&lt;/script&gt;
342
+
343
+ &lt;h3&gt;Konfekt&lt;/h3&gt;
344
+
345
+ &lt;p&gt;Mentioned his &lt;code&gt;vimtex&lt;/code&gt; configuration file:&lt;/p&gt;
346
+ &lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="s2"&gt;" enable special tex folding
347
+ let g:vimtex_fold_enabled = 1
348
+ "&lt;/span&gt; specify which areas should be detected &lt;span class="k"&gt;for &lt;/span&gt;folding
349
+ &lt;span class="nb"&gt;let &lt;/span&gt;g:vimtex_fold_sections &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="o"&gt;[&lt;/span&gt;
350
+ &lt;span class="se"&gt;\ &lt;/span&gt;&lt;span class="s2"&gt;"chapter"&lt;/span&gt;, &lt;span class="s2"&gt;"section"&lt;/span&gt;,
351
+ &lt;span class="se"&gt;\ &lt;/span&gt;&lt;span class="s2"&gt;"subsection"&lt;/span&gt;, &lt;span class="s2"&gt;"subsubsection"&lt;/span&gt;
352
+ &lt;span class="se"&gt;\ &lt;/span&gt;&lt;span class="o"&gt;]&lt;/span&gt;
353
+ &lt;span class="nb"&gt;let &lt;/span&gt;g:vimtex_fold_comments &lt;span class="o"&gt;=&lt;/span&gt; 0 &lt;span class="s2"&gt;" don't fold comments
354
+
355
+ "&lt;/span&gt; no indentation
356
+ &lt;span class="nb"&gt;let &lt;/span&gt;g:vimtex_indent_enabled &lt;span class="o"&gt;=&lt;/span&gt; 0
357
+
358
+ &lt;span class="s2"&gt;" toc: don't show preample and number
359
+ "&lt;/span&gt;&lt;span class="nb"&gt;let &lt;/span&gt;g:vimtex_toc_show_preamble &lt;span class="o"&gt;=&lt;/span&gt; 0
360
+ &lt;span class="nb"&gt;let &lt;/span&gt;g:vimtex_toc_show_numbers &lt;span class="o"&gt;=&lt;/span&gt; 0
361
+
362
+ &lt;span class="s2"&gt;" don't fold &lt;/span&gt;&lt;span class="se"&gt;\b&lt;/span&gt;&lt;span class="s2"&gt;egin ... &lt;/span&gt;&lt;span class="se"&gt;\e&lt;/span&gt;&lt;span class="s2"&gt;nd environments
363
+ let g:vimtex_fold_envs = 0
364
+ "&lt;/span&gt; use custom section marker
365
+ &lt;span class="nb"&gt;let &lt;/span&gt;g:vimtex_fold_levelmarker &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;'➜'&lt;/span&gt;
366
+
367
+ &lt;span class="s2"&gt;" ignore certain warning types
368
+ let g:vimtex_quickfix_ignored_warnings = ['Underfull', 'Overfull' ]
369
+ &lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
370
+ &lt;ul&gt;
371
+ &lt;li&gt;&lt;a href="https://github.com/unblevable/quick-scope"&gt;quick-scope&lt;/a&gt;: Lightning fast left-right movement in Vim&lt;/li&gt;
372
+ &lt;/ul&gt;
373
+
374
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
375
+
376
+ &lt;p&gt;&lt;img title="IN-Berlin e.V." alt="IN-Berlin e.V." src="/images/inberlin.png" /&gt;&lt;/p&gt;
377
+
378
+ &lt;p&gt;Thanks to &lt;a href="https://www.in-berlin.de"&gt;IN-Berlin e.V.&lt;/a&gt; for hosting this event.&lt;/p&gt;
379
+ ]]&gt;</description>
380
+ <pubDate>Thu, 16 Jun 2016 00:00:00 +0000</pubDate>
381
+ <guid>http://vimberlin.com/june-2016-meetup/</guid>
382
+ </item>
383
+ <item>
384
+ <title>May 2016 Meetup</title>
385
+ <link>http://vimberlin.com/may-2016-meetup/</link>
386
+ <description>&lt;![CDATA[&lt;p&gt;Hi vimmers!&lt;/p&gt;
387
+
388
+ &lt;p&gt;The next vimberlin meetup will be on 3rd thursday in Mai, on Feb 19th at IN-Berlin in Moabit/Tiergarten/Mitte,
389
+ just north of Hauptbahnhof between the bus stops &lt;code&gt;&amp;quot;Quitzowstraße&amp;quot;&lt;/code&gt; (Bus 123, M27) and &lt;code&gt;&amp;quot;Kruppstraße&amp;quot;&lt;/code&gt; (Bus 123).&lt;/p&gt;
390
+
391
+ &lt;h2&gt;Talks so far&lt;/h2&gt;
392
+
393
+ &lt;p&gt;The planned topics this time:&lt;/p&gt;
394
+
395
+ &lt;ul&gt;
396
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Weechat - another IRC client&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
397
+ &lt;/ul&gt;
398
+
399
+ &lt;h2&gt;The venue&lt;/h2&gt;
400
+
401
+ &lt;ul&gt;
402
+ &lt;li&gt;internet: yes. cable+wifi&lt;/li&gt;
403
+ &lt;li&gt;projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&amp;#39;t forget your adapters and/or install &lt;a href="http://www.teamviewer.com/de/"&gt;teamviewer.com/&lt;/a&gt;&lt;/li&gt;
404
+ &lt;li&gt;room: 15 people&lt;/li&gt;
405
+ &lt;li&gt;drinks: fridge with drinks. 1€ each.&lt;/li&gt;
406
+ &lt;/ul&gt;
407
+
408
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! be brief.. 5min for each presentation. We are
409
+ open to any kind of questions and suggestions.&lt;/p&gt;
410
+
411
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes (@guckes)&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther (@wikimatze)&lt;/a&gt;&lt;/p&gt;
412
+
413
+ &lt;p&gt;See you there!&lt;/p&gt;
414
+
415
+ &lt;p&gt;&lt;a id="recap"&gt;&lt;/a&gt;&lt;/p&gt;
416
+
417
+ &lt;h2&gt;Recap&lt;/h2&gt;
418
+
419
+ &lt;h3&gt;wikimatze&lt;/h3&gt;
420
+
421
+ &lt;p&gt;Videos of the talk:&lt;/p&gt;
422
+
423
+ &lt;p&gt;&lt;iframe src="https://player.vimeo.com/video/167374965" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="https://vimeo.com/167374965"&gt;Weechat - another IRC client (Part 1)&lt;/a&gt; from &lt;a href="https://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="https://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
424
+
425
+ &lt;p&gt;&lt;iframe src="https://player.vimeo.com/video/168291013" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="https://vimeo.com/168291013"&gt;Weechat - another IRC client (Part 2)&lt;/a&gt; from &lt;a href="https://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="https://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
426
+
427
+ &lt;p&gt;Slides:&lt;/p&gt;
428
+
429
+ &lt;script async class="speakerdeck-embed" data-id="da19b520fde4424c9a24a5f049a69f82" data-ratio="1.33159947984395" src="//speakerdeck.com/assets/embed.js"&gt;&lt;/script&gt;
430
+
431
+ &lt;h3&gt;Sven&lt;/h3&gt;
432
+
433
+ &lt;p&gt;Questions:&lt;/p&gt;
434
+
435
+ &lt;ul&gt;
436
+ &lt;li&gt;gibt es ein /clear befehl zum löschen des aktuellen fensters?&lt;/li&gt;
437
+ &lt;li&gt;was bedeutet der &amp;quot;User mode +Zi&amp;quot;?&lt;/li&gt;
438
+ &lt;li&gt;wie und wann merkt sich weechat die geänderten einstellungen?&lt;/li&gt;
439
+ &lt;li&gt;wie paßt man die farben an?&lt;/li&gt;
440
+ &lt;/ul&gt;
441
+
442
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
443
+
444
+ &lt;p&gt;&lt;img title="IN-Berlin e.V." alt="IN-Berlin e.V." src="/images/inberlin.png" /&gt;&lt;/p&gt;
445
+
446
+ &lt;p&gt;Thanks to &lt;a href="https://www.in-berlin.de"&gt;IN-Berlin e.V.&lt;/a&gt; for hosting this event.&lt;/p&gt;
447
+ ]]&gt;</description>
448
+ <pubDate>Thu, 19 May 2016 00:00:00 +0000</pubDate>
449
+ <guid>http://vimberlin.com/may-2016-meetup/</guid>
450
+ </item>
451
+ <item>
452
+ <title>March 2016 Meetup</title>
453
+ <link>http://vimberlin.com/march-2016-meetup/</link>
454
+ <description>&lt;![CDATA[&lt;p&gt;Hi vimmers!&lt;/p&gt;
455
+
456
+ &lt;p&gt;The next vimberlin meetup will be on 3rd thursday in February, on Feb 18th - again at IN-Berlin in Moabit/Tiergarten/Mitte,
457
+ just north of Hauptbahnhof between the bus stops &lt;code&gt;&amp;quot;Quitzowstraße&amp;quot;&lt;/code&gt; (Bus 123, M27) and &lt;code&gt;&amp;quot;Kruppstraße&amp;quot;&lt;/code&gt; (Bus 123).&lt;/p&gt;
458
+
459
+ &lt;h2&gt;Talks so far&lt;/h2&gt;
460
+
461
+ &lt;p&gt;The planned topics this time:&lt;/p&gt;
462
+
463
+ &lt;ul&gt;
464
+ &lt;li&gt;&lt;strong&gt;&amp;quot;tmux buffers&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
465
+ &lt;li&gt;&lt;strong&gt;&amp;quot;tmux shortcut - copy command to pane&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
466
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Explain the build of &lt;a href="https://gitter.im/vimberlin/vimberlin.de"&gt;https://gitter.im/vimberlin/vimberlin.de&lt;/a&gt;&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
467
+ &lt;li&gt;&lt;strong&gt;&amp;quot;twitterbot workflow&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/oracle2025"&gt;Richard Spindler&lt;/a&gt;&lt;/li&gt;
468
+ &lt;/ul&gt;
469
+
470
+ &lt;h2&gt;The venue&lt;/h2&gt;
471
+
472
+ &lt;ul&gt;
473
+ &lt;li&gt;internet: yes. cable+wifi&lt;/li&gt;
474
+ &lt;li&gt;projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&amp;#39;t forget your adapters and/or install &lt;a href="http://www.teamviewer.com/de/"&gt;teamviewer.com/&lt;/a&gt;&lt;/li&gt;
475
+ &lt;li&gt;room: 15 people&lt;/li&gt;
476
+ &lt;li&gt;drinks: fridge with drinks. 1€ each.&lt;/li&gt;
477
+ &lt;/ul&gt;
478
+
479
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! be brief.. 5min for each presentation. We are
480
+ open to any kind of questions.&lt;/p&gt;
481
+
482
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther (@wikimatze)&lt;/a&gt;&lt;/p&gt;
483
+
484
+ &lt;p&gt;See you there!&lt;/p&gt;
485
+
486
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
487
+
488
+ &lt;p&gt;&lt;img title="IN-Berlin e.V." alt="IN-Berlin e.V." src="/images/inberlin.png" /&gt;&lt;/p&gt;
489
+
490
+ &lt;p&gt;Thanks to &lt;a href="https://www.in-berlin.de"&gt;IN-Berlin e.V.&lt;/a&gt; for hosting this event.&lt;/p&gt;
491
+ ]]&gt;</description>
492
+ <pubDate>Thu, 24 Mar 2016 00:00:00 +0000</pubDate>
493
+ <guid>http://vimberlin.com/march-2016-meetup/</guid>
494
+ </item>
495
+ <item>
496
+ <title>February 2016 Meetup</title>
497
+ <link>http://vimberlin.com/february-2016-meetup/</link>
498
+ <description>&lt;![CDATA[&lt;p&gt;Hi vimmers!&lt;/p&gt;
499
+
500
+ &lt;p&gt;The next vimberlin meetup will be on 3rd thursday in February, on Feb 18th - again at IN-Berlin in Moabit/Tiergarten/Mitte,
501
+ just north of Hauptbahnhof between the bus stops &lt;code&gt;&amp;quot;Quitzowstraße&amp;quot;&lt;/code&gt; (Bus 123, M27) and &lt;code&gt;&amp;quot;Kruppstraße&amp;quot;&lt;/code&gt; (Bus 123).&lt;/p&gt;
502
+
503
+ &lt;h2&gt;Talks so far&lt;/h2&gt;
504
+
505
+ &lt;p&gt;This time the topic is:&lt;/p&gt;
506
+
507
+ &lt;ul&gt;
508
+ &lt;li&gt;&lt;strong&gt;Vim, Zsh - and more.&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
509
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Extending Mucks&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
510
+ &lt;li&gt;&lt;strong&gt;&amp;quot;:set paste in Vim&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
511
+ &lt;/ul&gt;
512
+
513
+ &lt;h2&gt;The venue&lt;/h2&gt;
514
+
515
+ &lt;ul&gt;
516
+ &lt;li&gt;internet: yes. cable+wifi&lt;/li&gt;
517
+ &lt;li&gt;projector: 2 projectors. (VGA+HDMI)&lt;/li&gt;
518
+ &lt;li&gt;room: 15 people&lt;/li&gt;
519
+ &lt;li&gt;drinks: fridge with 23 drinks. 1€ each.&lt;/li&gt;
520
+ &lt;/ul&gt;
521
+
522
+ &lt;p&gt;Bring your laptops - and join the fun! And show us &lt;em&gt;your&lt;/em&gt; use with Vim! be brief.. 5min for each presentation. We are
523
+ open to any kind of questions.&lt;/p&gt;
524
+
525
+ &lt;p&gt;Your host will be &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes&lt;/a&gt; &amp;amp; &lt;a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/"&gt;Matthias Guenther (@wikimatze)&lt;/a&gt;&lt;/p&gt;
526
+
527
+ &lt;p&gt;See you there!&lt;/p&gt;
528
+
529
+ &lt;p&gt;&lt;a id="recap"&gt;&lt;/a&gt;&lt;/p&gt;
530
+
531
+ &lt;h2&gt;Recap&lt;/h2&gt;
532
+
533
+ &lt;h3&gt;&lt;a href="https://twitter.com/wikimatze"&gt;@wikimatze (Matthias Günther)&lt;/a&gt;&lt;/h3&gt;
534
+
535
+ &lt;ul&gt;
536
+ &lt;li&gt;wikimatze has adapted &amp;quot;mucks&amp;quot; in his &lt;a href="https://github.com/wikimatze/mucks"&gt;fork&lt;/a&gt; and make it possible to run several
537
+ tmux session at ones without using the sockets option&lt;/li&gt;
538
+ &lt;li&gt;&lt;a href="https://github.com/lervag/vimtex"&gt;lervag/vimtex&lt;/a&gt;: A vim plugin that provides support for writing LaTeX. Nice
539
+ toggling, nice support for various PDF viewer and continous building&lt;/li&gt;
540
+ &lt;li&gt;&lt;a href="https://github.com/rhysd/clever-f.vim"&gt;clever-f.vim&lt;/a&gt;: Extended f, F, t, and T mappings - results will be highlighted
541
+ and press the buttons again to repeat the search clever-f plugin
542
+ neoyank&lt;/li&gt;
543
+ &lt;li&gt;&lt;a href="https://github.com/Shougo/neoyank.vim"&gt;Shougo/neoyank.vim&lt;/a&gt;: add documentation for the &lt;a href="https://github.com/Shougo/neoyank.vim/commit/e66dd9b34ae2ac866cfdd7c62fa6863287c03e65"&gt;action-append
544
+ option&lt;/a&gt;&lt;/li&gt;
545
+ &lt;li&gt;&lt;a href="http://www.teamviewer.com/de/"&gt;teamviewer.com/&lt;/a&gt;: is great when Mac machines forget their MiniDisplay-Port so that
546
+ they can display their screen on the machine, which is connected to the beamer&lt;/li&gt;
547
+ &lt;/ul&gt;
548
+
549
+ &lt;h3&gt;&lt;a href="https://github.com/supercrabtree"&gt;George Crabtree&lt;/a&gt;&lt;/h3&gt;
550
+
551
+ &lt;ul&gt;
552
+ &lt;li&gt;&lt;a href="https://github.com/junegunn/vim-peekaboo"&gt;junegunn/vim-peekaboo&lt;/a&gt;: easy way to manager &lt;code&gt;registers&lt;/code&gt;&lt;/li&gt;
553
+ &lt;li&gt;&lt;a href="https://github.com/sandric/ctrlsf"&gt;dyng/ctrlsf.vim&lt;/a&gt;: An ack/ag powered code search and view tool, in an intuitive way
554
+ with fairly more context.&lt;/li&gt;
555
+ &lt;li&gt;&lt;a href="https://github.com/so-fancy/diff-so-fancy"&gt;so-fancy/diff-so-fancy&lt;/a&gt;: good-looking git-diffs without &lt;code&gt;+&lt;/code&gt; and &lt;code&gt;-&lt;/code&gt;&lt;/li&gt;
556
+ &lt;li&gt;&lt;a href="https://getbitbar.com/"&gt;getbitbar&lt;/a&gt;: put script output direct in your Mac menue&lt;/li&gt;
557
+ &lt;li&gt;&lt;a href="https://github.com/jiahaog/Nativefier"&gt;jiahaog/Nativefier&lt;/a&gt;: a great way to create native apps for Windows, Mac, and
558
+ Linux from Webpages&lt;/li&gt;
559
+ &lt;/ul&gt;
560
+
561
+ &lt;h3&gt;&lt;a href="https://twitter.com/oracle2025"&gt;@oracle2025 (Richard Spindler)&lt;/a&gt;&lt;/h3&gt;
562
+
563
+ &lt;p&gt;Explains his desktop publishing tools/flow in Vim&lt;/p&gt;
564
+
565
+ &lt;ul&gt;
566
+ &lt;li&gt;&lt;a href="https://github.com/junegunn/goyo.vim"&gt;junegunn/goyo.vim&lt;/a&gt;: distraction free writing&lt;/li&gt;
567
+ &lt;li&gt;&lt;a href="https://github.com/benmills/vimux"&gt;benmills/vimux&lt;/a&gt;: tmux and vim interaction&lt;/li&gt;
568
+ &lt;li&gt;&lt;code&gt;.vimrc&lt;/code&gt;: map F5 to make: nmap &lt;F5&gt; :call VimuxRunCommand(&amp;quot;make&amp;quot;)&lt;cr&gt;&lt;/li&gt;
569
+ &lt;li&gt;&lt;code&gt;.tmux.conf&lt;/code&gt; hide statusbar: bind h set-option -g status&lt;/li&gt;
570
+ &lt;li&gt;&lt;a href="https://github.com/vim-pandoc/vim-pandoc-syntax"&gt;vim-pandoc/vim-pandoc-syntax&lt;/a&gt;&lt;/li&gt;
571
+ &lt;li&gt;&lt;a href="https://github.com/reedes/vim-pencil"&gt;reedes/vim-pencil&lt;/a&gt;: default settings for writing documents&lt;/li&gt;
572
+ &lt;li&gt;Hints: Set vim-pencil to &amp;quot;wrap hard&amp;quot; (see vim-pencil docs)&lt;/li&gt;
573
+ &lt;li&gt;WordCount: &lt;a href="http://stackoverflow.com/a/116454"&gt;http://stackoverflow.com/a/116454&lt;/a&gt;&lt;/li&gt;
574
+ &lt;li&gt;&lt;a href="http://kevinburke.bitbucket.org/markdowncss/"&gt;http://kevinburke.bitbucket.org/markdowncss/&lt;/a&gt;&lt;/li&gt;
575
+ &lt;li&gt;&lt;a href="http://lincolnmullen.com/blog/make-and-pandoc"&gt;http://lincolnmullen.com/blog/make-and-pandoc&lt;/a&gt;&lt;/li&gt;
576
+ &lt;li&gt;Also, my dotfiles: &lt;a href="https://github.com/oracle2025/.vim"&gt;https://github.com/oracle2025/.vim&lt;/a&gt;&lt;/li&gt;
577
+ &lt;/ul&gt;
578
+
579
+ &lt;h3&gt;Other tools&lt;/h3&gt;
580
+
581
+ &lt;ul&gt;
582
+ &lt;li&gt;&lt;a href="http://surf.suckless.org/"&gt;surf suckless&lt;/a&gt;: simple webbrowser able to display websites and follow links&lt;/li&gt;
583
+ &lt;li&gt;&lt;a href="http://devdocs.io/"&gt;devdocs.io&lt;/a&gt;: combines multiple API for locale documentation&lt;/li&gt;
584
+ &lt;/ul&gt;
585
+ ]]&gt;</description>
586
+ <pubDate>Thu, 18 Feb 2016 00:00:00 +0000</pubDate>
587
+ <guid>http://vimberlin.com/february-2016-meetup/</guid>
588
+ </item>
589
+ <item>
590
+ <title>January 2016 Meetup</title>
591
+ <link>http://vimberlin.com/january-2016-meetup/</link>
592
+ <description>&lt;![CDATA[&lt;p&gt;Happy new vim year, we hope you had a great start in 2016.&lt;/p&gt;
593
+
594
+ &lt;p&gt;Tell others about it by retweeting the tweets mentioned below.&lt;/p&gt;
595
+
596
+ &lt;p&gt;Bring your laptops - and join the fun! Show us &lt;em&gt;your&lt;/em&gt; use with Vim! Be brief.. 5min for each presentation.&lt;/p&gt;
597
+
598
+ &lt;p&gt;The space has seats+tables for about 15 people.&lt;/p&gt;
599
+
600
+ &lt;h2&gt;Talks so far&lt;/h2&gt;
601
+
602
+ &lt;ul&gt;
603
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Zsh with prezto&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
604
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Mucks and tmux management&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
605
+ &lt;/ul&gt;
606
+
607
+ &lt;p&gt;Your host will be &lt;a href="http://www.guckes.net"&gt;Sven Guckes&lt;/a&gt;&lt;/p&gt;
608
+
609
+ &lt;p&gt;See you there!&lt;/p&gt;
610
+ ]]&gt;</description>
611
+ <pubDate>Thu, 21 Jan 2016 00:00:00 +0000</pubDate>
612
+ <guid>http://vimberlin.com/january-2016-meetup/</guid>
613
+ </item>
614
+ <item>
615
+ <title>December 2015 Meetup</title>
616
+ <link>http://vimberlin.com/december-2015-meetup/</link>
617
+ <description>&lt;![CDATA[&lt;p&gt;Hi vimmers!&lt;/p&gt;
618
+
619
+ &lt;p&gt;on thursday, Dec 17th, there will be yet another vimberlin meetup - this time at IN-Berlin in Moabit/Tiergarten/Mitte, just north of Hauptbahnhof.&lt;/p&gt;
620
+
621
+ &lt;p&gt;This time the topic is: Vim! (as usual).&lt;/p&gt;
622
+
623
+ &lt;p&gt;Tell others about it by retweeting the tweets mentioned below.&lt;/p&gt;
624
+
625
+ &lt;p&gt;Bring your laptops - and join the fun! Show us &lt;em&gt;your&lt;/em&gt; use with Vim! be brief.. 5min for each presentation.&lt;/p&gt;
626
+
627
+ &lt;p&gt;The space has seats+tables for about 15 people.&lt;/p&gt;
628
+
629
+ &lt;p&gt;Your host will be &lt;a href="www.guckes.net"&gt;Sven Guckes&lt;/a&gt;&lt;/p&gt;
630
+
631
+ &lt;p&gt;See you there!&lt;/p&gt;
632
+ ]]&gt;</description>
633
+ <pubDate>Thu, 17 Dec 2015 00:00:00 +0000</pubDate>
634
+ <guid>http://vimberlin.com/december-2015-meetup/</guid>
635
+ </item>
636
+ <item>
637
+ <title>November 2015 Meetup</title>
638
+ <link>http://vimberlin.com/november-2015-meetup/</link>
639
+ <description>&lt;![CDATA[&lt;h2&gt;Topics&lt;/h2&gt;
640
+
641
+ &lt;p&gt;We will talk about using &lt;a title="vim" href="http://www.vim.org/"&gt;vim&lt;/a&gt; with &lt;a title="screen window manager" href="https://www.gnu.org/software/screen/"&gt;screen window manager&lt;/a&gt; and &lt;a title="tmux" href="http://tmux.github.io/"&gt;tmux&lt;/a&gt;. This meetup will exchange workflows, shortcuts and the setup of your dotfiles. Please bring your laptop with you, so that we can hack together.&lt;/p&gt;
642
+
643
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
644
+
645
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
646
+
647
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
648
+
649
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
650
+
651
+ &lt;p&gt;&lt;a id="recap"&gt;&lt;/a&gt;&lt;/p&gt;
652
+
653
+ &lt;h2&gt;Recap&lt;/h2&gt;
654
+
655
+ &lt;ul&gt;
656
+ &lt;li&gt;internet:
657
+
658
+ &lt;ul&gt;
659
+ &lt;li&gt;connect to the local wifi (&amp;quot;LAUNCH/CO&amp;quot;);&lt;/li&gt;
660
+ &lt;li&gt;start your browser.. and wait.. for the login page..&lt;/li&gt;
661
+ &lt;li&gt;enter the user+pass for this event (see whiteboard)&lt;/li&gt;
662
+ &lt;/ul&gt;&lt;/li&gt;
663
+ &lt;li&gt;projector:
664
+
665
+ &lt;ul&gt;
666
+ &lt;li&gt;it didnt recognize the laptops with VGA. :-(&lt;/li&gt;
667
+ &lt;li&gt;bring a VGA extension cable next time.&lt;/li&gt;
668
+ &lt;li&gt;the HDMI failed once in a while.. loose connection? overheating?&lt;/li&gt;
669
+ &lt;/ul&gt;&lt;/li&gt;
670
+ &lt;li&gt;room:
671
+
672
+ &lt;ul&gt;
673
+ &lt;li&gt; we had been seven persons. there was maybe room for one more person.&lt;/li&gt;
674
+ &lt;li&gt; then it gets awkward. definitely not enough space for 20 people.&lt;/li&gt;
675
+ &lt;/ul&gt;&lt;/li&gt;
676
+ &lt;li&gt;drinks: club-mate for 1,00€ :)&lt;/li&gt;
677
+ &lt;/ul&gt;
678
+
679
+ &lt;h3&gt;Richard &amp;quot;oracle2025&amp;quot; Spindler&lt;/h3&gt;
680
+
681
+ &lt;ul&gt;
682
+ &lt;li&gt;Vimfiles: &lt;a href="https://github.com/oracle2025/.vim"&gt;https://github.com/oracle2025/.vim&lt;/a&gt;&lt;/li&gt;
683
+ &lt;li&gt;plugin #1: &lt;a href="http://github.com/christoomay/vim-tmux-navigator"&gt;vim-tmux-navigator&lt;/a&gt;&lt;/li&gt;
684
+ &lt;li&gt;plugin #2: &lt;a href="https://github.com/benmills/vimux"&gt;vimux&lt;/a&gt; =&amp;gt; F5 opens the pane below and calls &amp;quot;make&amp;quot; therein.&lt;/li&gt;
685
+ &lt;li&gt;plugin #3: &lt;a href="http://github.com/jpalady/vim-slime"&gt;vim-slime&lt;/a&gt; =&amp;gt; copies the current line/paragraph into the pane below&lt;/li&gt;
686
+ &lt;li&gt;mentioned &lt;em&gt;keycaster&lt;/em&gt;&lt;/li&gt;
687
+ &lt;/ul&gt;
688
+
689
+ &lt;h3&gt;Matthias &amp;quot;wikimatze&amp;quot; Günther&lt;/h3&gt;
690
+
691
+ &lt;ul&gt;
692
+ &lt;li&gt;Vimfiles: &lt;a href="https://github.com/wikimatze/vimfiles"&gt;https://github.com/wikimatze/vimfiles&lt;/a&gt;&lt;/li&gt;
693
+ &lt;li&gt;Dotfiles: &lt;a href="https://github.com/wikimatze/dotfiles"&gt;https://github.com/wikimatze/dotfiles&lt;/a&gt;&lt;/li&gt;
694
+ &lt;li&gt;&lt;a href="https://github.com/tmux-plugins/tpm"&gt;tmux plugin manager (tpm)&lt;/a&gt;&lt;/li&gt;
695
+ &lt;li&gt;&lt;a href="https://github.com/tmux-plugins/tmux-sensible"&gt;tmux-sensible&lt;/a&gt;: common settings for every tmux.conf&lt;/li&gt;
696
+ &lt;li&gt;&lt;a href="https://github.com/tmux-plugins/tmux-resurrect"&gt;tmux-resurrect&lt;/a&gt;: store and save several tmux sessions&lt;/li&gt;
697
+ &lt;li&gt;&lt;a href="https://github.com/tmux-plugins/tmux-open"&gt;tmux-open&lt;/a&gt;: press &amp;#39;o&amp;#39; in Edit-Mode to open txt, mp3, pngs in your system default programms&lt;/li&gt;
698
+ &lt;li&gt;&lt;a href="https://github.com/tmux-plugins/tmux-yank"&gt;tmux-yank&lt;/a&gt;: copy text in tmux to system clipboard on various platforms&lt;/li&gt;
699
+ &lt;li&gt;&lt;a href="https://github.com/tmux-plugins/tmux-copycat"&gt;tmux-copycat&lt;/a&gt;: better searching with highlights&lt;/li&gt;
700
+ &lt;li&gt;&lt;a href="https://github.com/jimeh/tmuxifier"&gt;tmuxifer&lt;/a&gt;: Window and pane management for tmux&lt;/li&gt;
701
+ &lt;/ul&gt;
702
+
703
+ &lt;h3&gt;Philip&lt;/h3&gt;
704
+
705
+ &lt;p&gt;&amp;quot;uses the mouse&amp;quot; ;)&lt;/p&gt;
706
+
707
+ &lt;ul&gt;
708
+ &lt;li&gt;fzf: &amp;quot;command line fuzzy finder&amp;quot;
709
+
710
+ &lt;ul&gt;
711
+ &lt;li&gt;&lt;a href="https://github.com/junegunn/fzf"&gt;https://github.com/junegunn/fzf&lt;/a&gt;&lt;/li&gt;
712
+ &lt;li&gt;&lt;a href="https://github.com/junegunn/fzf/wiki"&gt;https://github.com/junegunn/fzf/wiki&lt;/a&gt;&lt;/li&gt;
713
+ &lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=hO8vd1y0h6g10"&gt;https://www.youtube.com/watch?v=hO8vd1y0h6g10&lt;/a&gt;&lt;/li&gt;
714
+ &lt;/ul&gt;&lt;/li&gt;
715
+ &lt;li&gt;mucks: another way to manage sessions in both screen and tmux written in awk by Serge Zaitsev
716
+
717
+ &lt;ul&gt;
718
+ &lt;li&gt;&lt;a href="http://zserge.com/blog/mucks.html"&gt;http://zserge.com/blog/mucks.html&lt;/a&gt;&lt;/li&gt;
719
+ &lt;li&gt;&lt;a href="http://zserge.com/blog/mucks2.html"&gt;http://zserge.com/blog/mucks2.html&lt;/a&gt;&lt;/li&gt;
720
+ &lt;/ul&gt;&lt;/li&gt;
721
+ &lt;/ul&gt;
722
+
723
+ &lt;h3&gt;Christian &amp;quot;wellle&amp;quot; Wellenbrock&lt;/h3&gt;
724
+
725
+ &lt;ul&gt;
726
+ &lt;li&gt;Vimfiles: &lt;a href="https://github.com/wellle/dotfiles"&gt;https://github.com/wellle/dotfiles&lt;/a&gt;&lt;/li&gt;
727
+ &lt;li&gt;uses the &lt;a href="https://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard"&gt;dvorak keyboard layout&lt;/a&gt;&lt;/li&gt;
728
+ &lt;li&gt;&lt;a href="http://ranger.nongnu.org/"&gt;ranger&lt;/a&gt;: minimalistic file-browser
729
+
730
+ &lt;ul&gt;
731
+ &lt;li&gt;ranger: plugin for vim: &lt;a href="https://raw.githubusercontent.com/hut/ranger/master/examples/vim_file_chooser.vim"&gt;https://raw.githubusercontent.com/hut/ranger/master/examples/vim_file_chooser.vim&lt;/a&gt;&lt;/li&gt;
732
+ &lt;/ul&gt;&lt;/li&gt;
733
+ &lt;li&gt;tmux: zoom with &amp;#39;Prefix z&amp;#39;&lt;/li&gt;
734
+ &lt;li&gt;&lt;a href="https://github.com/wellle/tmux-complete.vim"&gt;tmux-complete&lt;/a&gt;: completes words from other panes&lt;/li&gt;
735
+ &lt;li&gt;tmux: enable tmux with mouse support for dragging borders between panes&lt;/li&gt;
736
+ &lt;li&gt;&lt;a href="https://github.com/tpope/vim-tbone"&gt;vim-tbone&lt;/a&gt;: a good plugin to send keys to certain panes&lt;/li&gt;
737
+ &lt;/ul&gt;
738
+
739
+ &lt;h3&gt;Sven Guckes&lt;/h3&gt;
740
+
741
+ &lt;ul&gt;
742
+ &lt;li&gt;almost never uses the mouse&lt;/li&gt;
743
+ &lt;li&gt;current window manager: &amp;quot;i3&amp;quot; (small+fast!)&lt;/li&gt;
744
+ &lt;li&gt;has been using screen as an environment for 20+ years&lt;/li&gt;
745
+ &lt;li&gt;maintainer of the screen maillist gnu-screen 2000-2004 &lt;a href="https://groups.yahoo.com/neo/groups/gnu-screen/info"&gt;https://groups.yahoo.com/neo/groups/gnu-screen/info&lt;/a&gt;
746
+
747
+ &lt;ul&gt;
748
+ &lt;li&gt;&lt;a href="http://www.guckes.net/Screen"&gt;http://www.guckes.net/Screen&lt;/a&gt; webpages on screen&lt;/li&gt;
749
+ &lt;/ul&gt;&lt;/li&gt;
750
+ &lt;li&gt; setup files:
751
+
752
+ &lt;ul&gt;
753
+ &lt;li&gt;&lt;a href="http://www.guckes.net/Setup/screenrc.minimal"&gt;http://www.guckes.net/Setup/screenrc.minimal&lt;/a&gt; 450byte&lt;/li&gt;
754
+ &lt;li&gt;&lt;a href="http://www.guckes.net/Setup/screenrc"&gt;http://www.guckes.net/Setup/screenrc&lt;/a&gt; (58KB): includes many examples, links about screen, a description of copy mode, and some general problems on screen&lt;/li&gt;
755
+ &lt;/ul&gt;&lt;/li&gt;
756
+ &lt;li&gt;screen or tmux? tmux!
757
+
758
+ &lt;ul&gt;
759
+ &lt;li&gt;comparison: &lt;a href="http://www.guckes.net/tmux/vs.screen.txt"&gt;http://www.guckes.net/tmux/vs.screen.txt&lt;/a&gt;&lt;/li&gt;
760
+ &lt;/ul&gt;&lt;/li&gt;
761
+ &lt;/ul&gt;
762
+
763
+ &lt;p&gt;&lt;strong&gt;screen: some remarks:&lt;/strong&gt;&lt;/p&gt;
764
+
765
+ &lt;ul&gt;
766
+ &lt;li&gt;screen+tmux: keep programs running&lt;/li&gt;
767
+ &lt;li&gt;terminology:
768
+
769
+ &lt;ul&gt;
770
+ &lt;li&gt;screen: windows with regions&lt;/li&gt;
771
+ &lt;li&gt;tmux: windows with panes&lt;/li&gt;
772
+ &lt;/ul&gt;&lt;/li&gt;
773
+ &lt;li&gt;splitting: horizontal und vertikal
774
+
775
+ &lt;ul&gt;
776
+ &lt;li&gt;screen: global layout&lt;/li&gt;
777
+ &lt;li&gt;tmux: each window can have different panes&lt;/li&gt;
778
+ &lt;/ul&gt;&lt;/li&gt;
779
+ &lt;li&gt;useful shell aliases:&lt;/li&gt;
780
+ &lt;/ul&gt;
781
+ &lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;alias&lt;/span&gt; &lt;span class="se"&gt;\\&lt;/span&gt;?&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;'screen -ls'&lt;/span&gt;
782
+ &lt;span class="nb"&gt;alias&lt;/span&gt; &lt;span class="se"&gt;\\&lt;/span&gt;!&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;'screen -r'&lt;/span&gt;
783
+ &lt;span class="nb"&gt;alias &lt;/span&gt;&lt;span class="nv"&gt;x&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;'screen -x'&lt;/span&gt;
784
+ &lt;/code&gt;&lt;/pre&gt;
785
+ &lt;ul&gt;
786
+ &lt;li&gt;screen: starting sessions with config files&lt;/li&gt;
787
+ &lt;/ul&gt;
788
+ &lt;pre class="highlight shell"&gt;&lt;code&gt;screen -c &lt;span class="nv"&gt;$file&lt;/span&gt;
789
+ &lt;span class="nb"&gt;alias &lt;/span&gt;&lt;span class="nv"&gt;WORK&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;'screen -m -c ~/.screenrc.work'&lt;/span&gt;
790
+ &lt;span class="nb"&gt;alias &lt;/span&gt;&lt;span class="nv"&gt;COMM&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;'screen -t COMM 9 -m -c ~/.screenrc.comm'&lt;/span&gt;
791
+ &lt;span class="gp"&gt;-&amp;gt; &lt;/span&gt;&lt;span class="s2"&gt;":source"&lt;/span&gt; allows splitting of config files
792
+ &lt;span class="o"&gt;(&lt;/span&gt;shells, mutt and vim allows this, &lt;span class="nv"&gt;too&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;
793
+ &lt;/code&gt;&lt;/pre&gt;
794
+ &lt;ul&gt;
795
+ &lt;li&gt;bindings: allows to start programs and webpages easily (zB htop, imdb, mtr, mutt,vim; web: dict,google,imdbhj)&lt;/li&gt;
796
+ &lt;/ul&gt;
797
+
798
+ &lt;p&gt;&lt;strong&gt;other tools:&lt;/strong&gt;&lt;/p&gt;
799
+
800
+ &lt;ul&gt;
801
+ &lt;li&gt;irssi: &amp;quot;a modular IRC client for UNIX&amp;quot; backlog completion - ading tab completion for prefix of words which had been used in conversation (private or in public, ie on channels)&lt;/li&gt;
802
+ &lt;li&gt;&lt;a href="http://www.guckes.net/irssi/scripts/backlog_completion.txt"&gt;http://www.guckes.net/irssi/scripts/backlog_completion.txt&lt;/a&gt; written by Florian Ragwitz&lt;/li&gt;
803
+ &lt;li&gt;xsel: &amp;quot;manipulate the X selection&amp;quot; &lt;a href="http://www.vergenet.net/%7Econrad/software/xsel/"&gt;http://www.vergenet.net/~conrad/software/xsel/&lt;/a&gt; copies text from shell/vim from/into the X clipboard -&amp;gt; no need for vim to be compiled with clipboard support
804
+
805
+ &lt;ul&gt;
806
+ &lt;li&gt;same functionality for MacOSX: pbcopy + pbpaste &lt;a href="http://osxdaily.com/2007/03/05/manipulating-the-clipboard-from-the-command-line/"&gt;http://osxdaily.com/2007/03/05/manipulating-the-clipboard-from-the-command-line/&lt;/a&gt;&lt;/li&gt;
807
+ &lt;/ul&gt;&lt;/li&gt;
808
+ &lt;li&gt;zsh: fc - &amp;quot;The fc command controls the interactive history mechanism.&amp;quot; builtin command to edit last command&lt;/li&gt;
809
+ &lt;/ul&gt;
810
+
811
+ &lt;h3&gt;Questions&lt;/h3&gt;
812
+
813
+ &lt;ul&gt;
814
+ &lt;li&gt;screen: backlog search with patterns? -&amp;gt; tmux+copycat!&lt;/li&gt;
815
+ &lt;li&gt;tmux: does it have a zombie mode?&lt;/li&gt;
816
+ &lt;li&gt;vim: tab management. &amp;quot;jump to tab with &amp;#39;foo&amp;#39; in its name&amp;quot; - possible?&lt;/li&gt;
817
+ &lt;li&gt;vim: how do you handle empty/new buffers?
818
+
819
+ &lt;ul&gt;
820
+ &lt;li&gt;eg &amp;quot;list all buffers without a file&amp;quot;&lt;/li&gt;
821
+ &lt;/ul&gt;&lt;/li&gt;
822
+ &lt;/ul&gt;
823
+
824
+ &lt;h3&gt;Video&lt;/h3&gt;
825
+
826
+ &lt;ul&gt;
827
+ &lt;li&gt;&lt;a href="https://github.com/tpope/vim-dispatch"&gt;https://github.com/tpope/vim-dispatch&lt;/a&gt;&lt;/li&gt;
828
+ &lt;li&gt;&lt;a href="https://github.com/keycastr/keycastr"&gt;https://github.com/keycastr/keycastr&lt;/a&gt;&lt;/li&gt;
829
+ &lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=hO8vd1y0h6g10"&gt;https://www.youtube.com/watch?v=hO8vd1y0h6g10&lt;/a&gt; &amp;quot;fzf - Fuzzy Finder For Your Shell - Linux TUI&amp;quot;&lt;/li&gt;
830
+ &lt;/ul&gt;
831
+
832
+ &lt;h3&gt;Ideas&lt;/h3&gt;
833
+
834
+ &lt;p&gt;Christian:
835
+ - tmux: allow naming of panes/windows with letters (instead of numbers)&lt;/p&gt;
836
+
837
+ &lt;p&gt;Sven:
838
+ - CryoPID: &amp;quot;A Process Freezer for Linux&amp;quot; &lt;a href="https://code.google.com/p/cryopid/"&gt;https://code.google.com/p/cryopid/&lt;/a&gt;
839
+ - CryoPID can move your running Linux programs from one computer to another. has anyone used this yet?
840
+ - reptyr: &amp;quot;Tool for moving running programs between ptys&amp;quot;
841
+ - feh: &amp;quot;image viewer and cataloguer&amp;quot;&lt;/p&gt;
842
+ &lt;pre class="highlight shell"&gt;&lt;code&gt;bilder sortieren per key bindings -&amp;gt; actions
843
+ parameter: --action1 .. --action9
844
+ action1: save pictures to subdir1 &lt;span class="o"&gt;(&lt;/span&gt;good -&amp;gt; keep&lt;span class="o"&gt;)&lt;/span&gt;
845
+ action2: save pictures to subdir2 &lt;span class="o"&gt;(&lt;/span&gt;bad -&amp;gt; keep &lt;span class="k"&gt;for &lt;/span&gt;now&lt;span class="o"&gt;)&lt;/span&gt;
846
+ action3: save pictures to subdir3 &lt;span class="o"&gt;(&lt;/span&gt;ugly -&amp;gt; to be deleted&lt;span class="o"&gt;)&lt;/span&gt;
847
+ &lt;/code&gt;&lt;/pre&gt;
848
+ &lt;ul&gt;
849
+ &lt;li&gt;screen: use case embedded device -&amp;gt; Bjoern Buerger&lt;/li&gt;
850
+ &lt;li&gt;mutt+vim: colouring/farben&lt;/li&gt;
851
+ &lt;li&gt;tmux: use extra pane to show key input (four/five lines)&lt;/li&gt;
852
+ &lt;li&gt;vim: running several instances on the same files (swapfile issues)&lt;/li&gt;
853
+ &lt;li&gt;vim: compare nerdtree to Explore to vimnegar(?)&lt;/li&gt;
854
+ &lt;/ul&gt;
855
+
856
+ &lt;p&gt;Thanks to &lt;a title="Sven Guckes" href="http://www.guckes.net"&gt;Sven Guckes&lt;/a&gt; for writing the notes.&lt;/p&gt;
857
+ ]]&gt;</description>
858
+ <pubDate>Thu, 19 Nov 2015 00:00:00 +0000</pubDate>
859
+ <guid>http://vimberlin.com/november-2015-meetup/</guid>
860
+ </item>
861
+ <item>
862
+ <title>Vimfest October 2015</title>
863
+ <link>http://vimberlin.com/vimfest-october-2015/</link>
864
+ <description>&lt;![CDATA[&lt;p&gt;&lt;img src="/assets/images/vimfest.png" /&gt;&lt;/p&gt;
865
+
866
+ &lt;blockquote&gt;
867
+ &lt;p&gt;Sign up under &lt;a href="http://doodle.com/poll/mpzzamenz5npq3f7"&gt;http://doodle.com/poll/mpzzamenz5npq3f7&lt;/a&gt; if you want come to the event&lt;/p&gt;
868
+ &lt;/blockquote&gt;
869
+
870
+ &lt;p&gt;Vimfest Berlin 2015 is the first community-driven &lt;a href="http://www.vim.org/"&gt;Vim&lt;/a&gt; &amp;quot;&lt;a href="http://en.wikipedia.org/wiki/Hackathon"&gt;Hackathon&lt;/a&gt;&amp;quot;, happening
871
+ the weekend of 10 – 11 October at &lt;a href="http://www.thoughtworks.com/locations/berlin"&gt;ThoughtWorks&lt;/a&gt; in Berlin, organized by the
872
+ &lt;a href="http://vimberlin.de"&gt;Vim Berlin&lt;/a&gt; user group and Vim enthusiasts from other cities.&lt;/p&gt;
873
+
874
+ &lt;p&gt;We will spend the whole weekend on topics around the popular editor, such as:
875
+ efficient ways of writing with Vim. Setting up &lt;code&gt;.vimrc&lt;/code&gt;. Using plugins that
876
+ rock, and writing plugins that rock. And also: other useful tools with vim
877
+ keybindings, like &lt;code&gt;mutt&lt;/code&gt; or &lt;code&gt;newsbeuter&lt;/code&gt;. What ever you&amp;#39;re interested in:
878
+ Vimfest Berlin is an open space, everything is up to you!&lt;/p&gt;
879
+
880
+ &lt;p&gt;So don&amp;#39;t hesitate, and save the date: &lt;strong&gt;10 – 11 October&lt;/strong&gt; in Berlin: Be with us
881
+ and join the very first Vimfest – try, learn and talk about the editor we all
882
+ love.&lt;/p&gt;
883
+
884
+ &lt;p&gt;Ain&amp;#39;t enough? Wait, there&amp;#39;s more.&lt;/p&gt;
885
+
886
+ &lt;p&gt;Berlin is a great place that has a lot to offer. Once having many Vim lovers
887
+ and interested people united at one place, we&amp;#39;ll use the opportunity and,
888
+ guided by our locals, go find some of the most interesting buffers of Berlin
889
+ and celebrate Vim a bit at Saturday night.&lt;/p&gt;
890
+
891
+ &lt;p&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt; and &lt;a href="https://github.com/tqmz"&gt;Tim Quellmalz&lt;/a&gt;&lt;/p&gt;
892
+
893
+ &lt;h2&gt;Venue&lt;/h2&gt;
894
+
895
+ &lt;p&gt;We got a confirmation from &lt;a href="http://www.thoughtworks.com/locations/berlin"&gt;ThoughtWorks&lt;/a&gt; and are happy to announce they&amp;#39;ll
896
+ host our weekend for &lt;em&gt;free&lt;/em&gt;! Here is the location:&lt;/p&gt;
897
+
898
+ &lt;iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2427.020216472162!2d13.419111299999994!3d52.53306839999992!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47a84e037767de0b%3A0xeea2f7a5ae27f3c0!2zTcO8bGhhdXNlciBTdHJhw59l!5e0!3m2!1sen!2sus!4v1401733194428" width="600" height="450" frameborder="0" style="border:0"&gt;&lt;/iframe&gt;
899
+
900
+ &lt;p&gt;Venues for Saturday night to be announced. Watch &lt;a href="http://twitter.com/vimberlin"&gt;@vimberlin&lt;/a&gt; for updates.&lt;/p&gt;
901
+
902
+ &lt;h2&gt;Schedule&lt;/h2&gt;
903
+
904
+ &lt;p&gt;Here is the rough agenda:&lt;/p&gt;
905
+
906
+ &lt;ul&gt;
907
+ &lt;li&gt;present the projects to work on,&lt;/li&gt;
908
+ &lt;li&gt;jump into the projects,&lt;/li&gt;
909
+ &lt;li&gt;present learnings and results.&lt;/li&gt;
910
+ &lt;/ul&gt;
911
+
912
+ &lt;p&gt;There is enough time to chat, relax in the garden and socialize with other
913
+ people. We will have drinks, wifi, a beamer - you can bring our own food there
914
+ (there is a small cuisine), restaurants are around the corner.&lt;/p&gt;
915
+
916
+ &lt;p&gt;The best way to get things done is to sit together and work on things with a
917
+ limited amount of time. No time pressure or will to reach a goal - explore and
918
+ try out new things. Let&amp;#39;s have a great time together! Let&amp;#39;s have a great time
919
+ together!&lt;/p&gt;
920
+
921
+ &lt;h2&gt;Sessions&lt;/h2&gt;
922
+
923
+ &lt;h3&gt;Vim&lt;/h3&gt;
924
+
925
+ &lt;p&gt;Ideas for Vim sessions so far:&lt;/p&gt;
926
+
927
+ &lt;ul&gt;
928
+ &lt;li&gt;&lt;p&gt;Vim for Newbies&lt;/p&gt;&lt;/li&gt;
929
+ &lt;li&gt;&lt;p&gt;Plugin showcase: everyone giving a brief description of plugins used
930
+ and their purpose, experience and value + ad hoc sessions on
931
+ plugins others are especially interested in&lt;/p&gt;&lt;/li&gt;
932
+ &lt;li&gt;&lt;p&gt;VimL first steps: a rough overview for getting into vim plugin
933
+ development&lt;/p&gt;&lt;/li&gt;
934
+ &lt;li&gt;&lt;p&gt;Issues: an occasion for helping each other fixing current issues with
935
+ their setups&lt;/p&gt;&lt;/li&gt;
936
+ &lt;li&gt;&lt;p&gt;&lt;a href="https://twitter.com/wikimatze"&gt;@wikimatze&lt;/a&gt;&lt;/p&gt;
937
+
938
+ &lt;ul&gt;
939
+ &lt;li&gt;write a &lt;a href="https://github.com/tpope/vim-rails"&gt;rails-vim&lt;/a&gt; plugin for &lt;a href="http://www.padrinorb.com/"&gt;Padrino&lt;/a&gt;&lt;/li&gt;
940
+ &lt;/ul&gt;&lt;/li&gt;
941
+ &lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/tqmz"&gt;@tqmz&lt;/a&gt;&lt;/p&gt;
942
+
943
+ &lt;ul&gt;
944
+ &lt;li&gt;Tim on &lt;a href="http://www.vim.org/"&gt;Vim&lt;/a&gt; w/ &lt;a href="http://www.zim-wiki.org/"&gt;Zim&lt;/a&gt; (and more wiki-like stuff)&lt;/li&gt;
945
+ &lt;/ul&gt;&lt;/li&gt;
946
+ &lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/nkoehring"&gt;@koehr&lt;/a&gt;&lt;/p&gt;
947
+
948
+ &lt;ul&gt;
949
+ &lt;li&gt;&lt;a href="http://www.vim.org/"&gt;Vim&lt;/a&gt; + &lt;a href="http://todotxt.com"&gt;todo.txt&lt;/a&gt; + ? = Profit!&lt;/li&gt;
950
+ &lt;/ul&gt;&lt;/li&gt;
951
+ &lt;/ul&gt;
952
+
953
+ &lt;h3&gt;w/ Vim Keybindings&lt;/h3&gt;
954
+
955
+ &lt;ul&gt;
956
+ &lt;li&gt;&lt;a href="https://twitter.com/wikimatze"&gt;@wikimatze&lt;/a&gt;
957
+
958
+ &lt;ul&gt;
959
+ &lt;li&gt;Get &lt;a href="http://www.mutt.org/"&gt;mutt&lt;/a&gt; up and running&lt;/li&gt;
960
+ &lt;/ul&gt;&lt;/li&gt;
961
+ &lt;li&gt;&lt;a href="https://github.com/tqmz"&gt;@tqmz&lt;/a&gt;
962
+
963
+ &lt;ul&gt;
964
+ &lt;li&gt;newsbeuter&lt;/li&gt;
965
+ &lt;/ul&gt;&lt;/li&gt;
966
+ &lt;li&gt;vimperator &amp;amp; co.&lt;/li&gt;
967
+ &lt;/ul&gt;
968
+
969
+ &lt;h2&gt;Contribute&lt;/h2&gt;
970
+
971
+ &lt;p&gt;Want to contribute to making Vimfest Berlin a great event?&lt;/p&gt;
972
+
973
+ &lt;p&gt;Add your own topics here, and see &lt;a href="https://github.com/vimberlin/vimberlin.de/wiki/vimfest-org"&gt;vimfest-org&lt;/a&gt; for the
974
+ organizational aspects.&lt;/p&gt;
975
+
976
+ &lt;h2&gt;Contact&lt;/h2&gt;
977
+
978
+ &lt;ul&gt;
979
+ &lt;li&gt;Mail: vimberlin / gmail&lt;/li&gt;
980
+ &lt;li&gt;IRC: Freenode &lt;code&gt;#vimberlin&lt;/code&gt;&lt;/li&gt;
981
+ &lt;li&gt;Twitter: &lt;a href="http://twitter.com/vimberlin"&gt;@vimberlin&lt;/a&gt;&lt;/li&gt;
982
+ &lt;/ul&gt;
983
+ ]]&gt;</description>
984
+ <pubDate>Tue, 22 Sep 2015 00:00:00 +0000</pubDate>
985
+ <guid>http://vimberlin.com/vimfest-october-2015/</guid>
986
+ </item>
987
+ <item>
988
+ <title>July 2015 Meetup</title>
989
+ <link>http://vimberlin.com/july-2015-meetup/</link>
990
+ <description>&lt;![CDATA[&lt;h2&gt;Talks&lt;/h2&gt;
991
+
992
+ &lt;ul&gt;
993
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Vim Banshee - a command line wrapper for Banshee&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;br&gt;
994
+ Matthias wanted to give a talk about this during the &lt;a title="april 2015 meetup" href="/april-2015-meetup/"&gt;april 2015 meetup&lt;/a&gt; and &lt;a title="may 2015 meetup" href="/may-2015-meetup/"&gt;may 2015 meetup&lt;/a&gt;but
995
+ will do it this time. Based on &lt;a href="https://twitter.com/fifthposition"&gt;Ben Klein&amp;#39;s&lt;/a&gt; book &lt;a href="https://pragprog.com/book/bkviml/the-viml-primer"&gt;The VimL Primer: Edit Like a Pro with Vim Plugins and Scripts&lt;/a&gt; I started to write this plugin and I want to go through it, explain it, what future plans he has and how it was tested.&lt;/li&gt;
996
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Hands-on Neovim&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;br&gt;
997
+ Matthias will talk about his first steps with Neovim.&lt;/li&gt;
998
+ &lt;/ul&gt;
999
+
1000
+ &lt;p&gt;See you all soon.&lt;/p&gt;
1001
+
1002
+ &lt;h2&gt;Note&lt;/h2&gt;
1003
+
1004
+ &lt;p&gt;Please be in front of the office around 18:45, so that we can drive together at the &lt;a title="Wunderlist office" href="https://www.wunderlist.com/"&gt;Wunderlist office&lt;/a&gt;. If you are there later, please drop us a line on &lt;a title="twitter" href="https://twitter.com/vimberlin"&gt;twitter&lt;/a&gt; so that we will pick you up.&lt;/p&gt;
1005
+
1006
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
1007
+
1008
+ &lt;p&gt;&lt;img title="Wunderlist" alt="Wunderlist" src="/images/wunderlist.png" /&gt;&lt;/p&gt;
1009
+
1010
+ &lt;p&gt;Thanks to &lt;a title="Wunderlist" href="https://www.wunderlist.com/"&gt;Wunderlist&lt;/a&gt; for hosting this event.&lt;/p&gt;
1011
+
1012
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1013
+ ]]&gt;</description>
1014
+ <pubDate>Mon, 27 Jul 2015 00:00:00 +0000</pubDate>
1015
+ <guid>http://vimberlin.com/july-2015-meetup/</guid>
1016
+ </item>
1017
+ <item>
1018
+ <title>May 2015 Meetup</title>
1019
+ <link>http://vimberlin.com/may-2015-meetup/</link>
1020
+ <description>&lt;![CDATA[&lt;h2&gt;Talks&lt;/h2&gt;
1021
+
1022
+ &lt;ul&gt;
1023
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Vim Banshee - a command line wrapper for Banshee&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;br&gt;
1024
+ Matthias wanted to give a talk about this during the &lt;a title="april 2015 meetup" href="/april-2015-meetup/"&gt;april 2015 meetup&lt;/a&gt; but
1025
+ will do it this time. Based on &lt;a href="https://twitter.com/fifthposition"&gt;Ben Klein&amp;#39;s&lt;/a&gt; book &lt;a href="https://pragprog.com/book/bkviml/the-viml-primer"&gt;The VimL Primer: Edit Like a Pro with Vim Plugins and Scripts&lt;/a&gt; I started to write this plugin and I want to go through it
1026
+ and explain it.&lt;/li&gt;
1027
+ &lt;/ul&gt;
1028
+
1029
+ &lt;p&gt;See you all soon.&lt;/p&gt;
1030
+
1031
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
1032
+
1033
+ &lt;p&gt;&lt;img title="Wunderlist" alt="Wunderlist" src="/images/wunderlist.png" /&gt;&lt;/p&gt;
1034
+
1035
+ &lt;p&gt;Thanks to &lt;a title="Wunderlist" href="https://www.wunderlist.com/"&gt;Wunderlist&lt;/a&gt; for hosting this event.&lt;/p&gt;
1036
+
1037
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1038
+ ]]&gt;</description>
1039
+ <pubDate>Thu, 28 May 2015 00:00:00 +0000</pubDate>
1040
+ <guid>http://vimberlin.com/may-2015-meetup/</guid>
1041
+ </item>
1042
+ <item>
1043
+ <title>April 2015 Meetup</title>
1044
+ <link>http://vimberlin.com/april-2015-meetup/</link>
1045
+ <description>&lt;![CDATA[&lt;h2&gt;Talks&lt;/h2&gt;
1046
+
1047
+ &lt;ul&gt;
1048
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Vim Banshee - a command line wrapper for Banshee&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;br&gt;
1049
+ Based on &lt;a href="https://twitter.com/fifthposition"&gt;Ben Klein&amp;#39;s&lt;/a&gt; book &lt;a href="https://pragprog.com/book/bkviml/the-viml-primer"&gt;The VimL Primer: Edit Like a Pro with Vim Plugins and Scripts&lt;/a&gt; I started to write this plugin and I want to go through it and explain it.&lt;/li&gt;
1050
+ &lt;li&gt;&lt;strong&gt;Vim lookup&lt;/strong&gt; by &lt;a title="Gernot Höflechner" href="https://github.com/LFDM"&gt;Gernot Höflechner&lt;/a&gt;&lt;br&gt;
1051
+ Gernot will give a shor talk about his &lt;a title="vim-lookup" href="https://github.com/LFDM/vim-lookup"&gt;vim-lookup&lt;/a&gt; plugin which make it easy to find certain files or directories very fast.&lt;/li&gt;
1052
+ &lt;/ul&gt;
1053
+
1054
+ &lt;p&gt;After the talks there will be a F&amp;amp;Q and free tools session.&lt;/p&gt;
1055
+
1056
+ &lt;p&gt;See you all soon.&lt;/p&gt;
1057
+
1058
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
1059
+
1060
+ &lt;p&gt;&lt;img title="ThoughtWorks Werkstatt Berlin" alt="ThoughtWorks Werkstatt Berlin" src="/images/TWWB_logo_white_bg.png" /&gt;&lt;/p&gt;
1061
+
1062
+ &lt;p&gt;Thanks to &lt;a href="http://www.thoughtworks.com/locations/berlin"&gt;ThoughtWorks Werkstatt Berlin&lt;/a&gt; for hosting this event.&lt;/p&gt;
1063
+
1064
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1065
+ ]]&gt;</description>
1066
+ <pubDate>Thu, 23 Apr 2015 00:00:00 +0000</pubDate>
1067
+ <guid>http://vimberlin.com/april-2015-meetup/</guid>
1068
+ </item>
1069
+ <item>
1070
+ <title>Book Club About "The VimL Primer"</title>
1071
+ <link>http://vimberlin.com/book-club-about-the-viml-primer/</link>
1072
+ <description>&lt;![CDATA[&lt;p&gt;&lt;img src="https://imagery.pragprog.com/products/420/bkviml_xlargecover.jpg?1415117329"&gt;&lt;/p&gt;
1073
+
1074
+ &lt;p&gt;We will have our first book club about &lt;a title="Ben Klein" href="https://twitter.com/fifthposition"&gt;Ben Klein&amp;#39;s&lt;/a&gt; book &lt;a title="The VimL Primer: Edit Like a Pro with Vim Plugins and Scripts" href="https://pragprog.com/book/bkviml/the-viml-primer"&gt;The VimL Primer: Edit Like a Pro with Vim Plugins and Scripts&lt;/a&gt;. If you want to get started scripting your own Vim plugins or learn something new, then this book might be a good start:&lt;/p&gt;
1075
+
1076
+ &lt;blockquote&gt;
1077
+ &lt;p&gt;Build on your editor’s capabilities and tailor your editing experience with VimL, the powerful scripting language built into Vim. With VimL you can configure basic settings or add entirely new functionality. Use this quick and easy introduction to create your own Vim plugin while learning the concepts and syntax of VimL.&lt;/p&gt;
1078
+ &lt;/blockquote&gt;
1079
+
1080
+ &lt;p&gt;You will get a 35% coupon code. Just write me a pm under &lt;a title="@vimberlin" href="http://twitter.com/vimberlin"&gt;@vimberlin&lt;/a&gt;.&lt;/p&gt;
1081
+
1082
+ &lt;p&gt;We will talk about this book in our March Meetup. Having questions, ideas or if
1083
+ you want to report your progress through the book, please &lt;a title="share your knowledge with us" href="https://groups.google.com/group/vimberlin/"&gt;share your knowledge with us&lt;/a&gt;.&lt;/p&gt;
1084
+
1085
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
1086
+
1087
+ &lt;p&gt;&lt;img title="PragProg Image" alt="pragprog" src="/images/pragprog.png" /&gt;&lt;/p&gt;
1088
+
1089
+ &lt;p&gt;Thanks to &lt;a title="pragprog" href="https://pragprog.com/"&gt;pragprog&lt;/a&gt; for giving us the discount.&lt;/p&gt;
1090
+
1091
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1092
+ ]]&gt;</description>
1093
+ <pubDate>Tue, 24 Feb 2015 00:00:00 +0000</pubDate>
1094
+ <guid>http://vimberlin.com/book-club-about-the-viml-primer/</guid>
1095
+ </item>
1096
+ <item>
1097
+ <title>February 2015 Meetup</title>
1098
+ <link>http://vimberlin.com/february-2015-meetup/</link>
1099
+ <description>&lt;![CDATA[&lt;h2&gt;Talks&lt;/h2&gt;
1100
+
1101
+ &lt;ul&gt;
1102
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Vim Plug - my favorite plugin manager&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;br&gt;
1103
+ In our &lt;a title="January 2015 Meetup" href="/january-2015-meetup/"&gt;January 2015 Meetup&lt;/a&gt; we talked about the way to use
1104
+ plugin managers for Vim. I will go through &lt;a title="vim-plug" href="https://github.com/junegunn/vim-plug"&gt;vim-plug&lt;/a&gt;
1105
+ and tell you why it&amp;#39;s the best plugin manager for vim in the world.&lt;/li&gt;
1106
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Configure Vim with Nix&amp;quot;&lt;/strong&gt; by &lt;a title="Rok Garbas" href="https://twitter.com/garbas"&gt;Rok Garbas&lt;/a&gt;&lt;/li&gt;
1107
+ &lt;/ul&gt;
1108
+
1109
+ &lt;h2&gt;Open Topics&lt;/h2&gt;
1110
+
1111
+ &lt;p&gt;We are going to take time to answer questions related to vim - feel free to prepare them.&lt;/p&gt;
1112
+
1113
+ &lt;p&gt;Beside we will have an open discussions about tools for &lt;a title="Ruby" href="https://www.ruby-lang.org/en/"&gt;Ruby&lt;/a&gt; and
1114
+ &lt;a title="Rails development" href="http://rubyonrails.org/"&gt;Rails development&lt;/a&gt;.&lt;/p&gt;
1115
+
1116
+ &lt;h2&gt;Recap&lt;/h2&gt;
1117
+
1118
+ &lt;h3&gt;Vim Plug - my favorite plugin manager&lt;/h3&gt;
1119
+
1120
+ &lt;p&gt;The slides of the talk:&lt;/p&gt;
1121
+
1122
+ &lt;script async class="speakerdeck-embed" data-id="67dd407073d948f09b34918aafc24c3d" data-ratio="1.33159947984395" src="//speakerdeck.com/assets/embed.js"&gt;&lt;/script&gt;
1123
+
1124
+ &lt;h3&gt;Highlighting SQL in heredoc parts in Ruby&lt;/h3&gt;
1125
+
1126
+ &lt;p&gt;All credit for this goes to &lt;a title="AndrewRadev" href="https://github.com/AndrewRadev/Vimfiles/blob/master/after/syntax/ruby.vim"&gt;AndrewRadev&lt;/a&gt;:&lt;/p&gt;
1127
+ &lt;pre class="highlight viml"&gt;&lt;code&gt;&lt;span class="k"&gt;let&lt;/span&gt; &lt;span class="nv"&gt;s:bcs&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="nv"&gt;b:current_syntax&lt;/span&gt;
1128
+ unlet &lt;span class="nv"&gt;b:current_syntax&lt;/span&gt;
1129
+ syntax include @SQL syntax/sql&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="k"&gt;vim&lt;/span&gt;
1130
+ &lt;span class="k"&gt;let&lt;/span&gt; &lt;span class="nv"&gt;b:current_syntax&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="nv"&gt;s:bcs&lt;/span&gt;
1131
+
1132
+ &lt;span class="c"&gt;" match optional, surrounding single or double quote and any whitespace in the heredoc name&lt;/span&gt;
1133
+ syntax region rubyHereDocSQL matchgroup&lt;span class="p"&gt;=&lt;/span&gt;rubyOperator &lt;span class="k"&gt;start&lt;/span&gt;&lt;span class="p"&gt;=+&amp;lt;&amp;lt;-&lt;/span&gt;\?\&lt;span class="p"&gt;([&lt;/span&gt;'"&lt;span class="p"&gt;]&lt;/span&gt;\?\&lt;span class="p"&gt;)&lt;/span&gt;\z&lt;span class="p"&gt;(&lt;/span&gt;\s*SQL\s*\&lt;span class="p"&gt;)&lt;/span&gt;\&lt;span class="m"&gt;1&lt;/span&gt;&lt;span class="p"&gt;+&lt;/span&gt; &lt;span class="k"&gt;end&lt;/span&gt;&lt;span class="p"&gt;=+&lt;/span&gt;^\s*\z1$&lt;span class="p"&gt;+&lt;/span&gt; contains&lt;span class="p"&gt;=&lt;/span&gt;@SQL
1134
+ &lt;/code&gt;&lt;/pre&gt;
1135
+ &lt;p&gt;It&amp;#39;s the best to put this in &lt;code&gt;after/syntax/ruby.vim&lt;/code&gt;&lt;/p&gt;
1136
+
1137
+ &lt;h3&gt;smapclear&lt;/h3&gt;
1138
+
1139
+ &lt;p&gt;This removes all mapping when you are in &lt;code&gt;Select&lt;/code&gt; mode (used for) - very handy for snippet completion. Put this option in &lt;code&gt;after/plugin/smapclear.vim&lt;/code&gt;. Thanks &lt;a title="AndrewRadev" href="https://github.com/AndrewRadev/"&gt;AndrewRadev&lt;/a&gt; for this tip.&lt;/p&gt;
1140
+
1141
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
1142
+
1143
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
1144
+
1145
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
1146
+
1147
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1148
+ ]]&gt;</description>
1149
+ <pubDate>Thu, 19 Feb 2015 00:00:00 +0000</pubDate>
1150
+ <guid>http://vimberlin.com/february-2015-meetup/</guid>
1151
+ </item>
1152
+ <item>
1153
+ <title>January 2015 Meetup</title>
1154
+ <link>http://vimberlin.com/january-2015-meetup/</link>
1155
+ <description>&lt;![CDATA[&lt;h2&gt;Talks&lt;/h2&gt;
1156
+
1157
+ &lt;ul&gt;
1158
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Git and Vim - maximize the joy and fun&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;br&gt;
1159
+ Follow me through my travel exploring the way to get Vim and Git running in a friendly coexistence.&lt;/li&gt;
1160
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Switch.vim and clever regexes&amp;quot;&lt;/strong&gt; by &lt;a title="Andrew Radev" href="https://twitter.com/andrewradev"&gt;Andrew Radev&lt;/a&gt;&lt;br&gt;
1161
+ I&amp;#39;ll talk a bit about my &amp;quot;switch&amp;quot; plugin, why I made it and why I think it&amp;#39;s a useful tool, even if it is a bit simple. I&amp;#39;ll show you some of the clever regexes I&amp;#39;ve used in it (that you might not know about), and I&amp;#39;ll ask you for feedback on how to make the plugin even better :)&lt;/li&gt;
1162
+ &lt;/ul&gt;
1163
+
1164
+ &lt;h2&gt;Vim News&lt;/h2&gt;
1165
+
1166
+ &lt;p&gt;Andrew will share the latest news about Vim and other parts of it.&lt;/p&gt;
1167
+
1168
+ &lt;h2&gt;Recap&lt;/h2&gt;
1169
+
1170
+ &lt;h3&gt;Git and Vim&lt;/h3&gt;
1171
+
1172
+ &lt;ul&gt;
1173
+ &lt;li&gt;&lt;a href="https://github.com/gregsexton/gitv"&gt;gitv&lt;/a&gt;&lt;/li&gt;
1174
+ &lt;li&gt;&lt;a href="https://github.com/tpope/vim-fugitive"&gt;Fugitive&lt;/a&gt;&lt;/li&gt;
1175
+ &lt;li&gt;&lt;a href="https://github.com/idanarye/vim-merginal"&gt;Merginal&lt;/a&gt;&lt;/li&gt;
1176
+ &lt;li&gt;&lt;a href="https://github.com/int3/vim-extradite"&gt;Extradite&lt;/a&gt;&lt;/li&gt;
1177
+ &lt;/ul&gt;
1178
+
1179
+ &lt;p&gt;Here are the slides of the talk:&lt;/p&gt;
1180
+
1181
+ &lt;script async class="speakerdeck-embed" data-id="2e58f59084330132353846ef331f01f2" data-ratio="1.33159947984395" src="//speakerdeck.com/assets/embed.js"&gt;&lt;/script&gt;
1182
+
1183
+ &lt;h3&gt;Switch.vim&lt;/h3&gt;
1184
+
1185
+ &lt;ul&gt;
1186
+ &lt;li&gt;&lt;a href="https://github.com/AndrewRadev/switch.vim/wiki"&gt;It has a wiki now&lt;/a&gt;&lt;/li&gt;
1187
+ &lt;/ul&gt;
1188
+
1189
+ &lt;h3&gt;Vim news&lt;/h3&gt;
1190
+
1191
+ &lt;ul&gt;
1192
+ &lt;li&gt;&lt;a href="https://twitter.com/vimlinks"&gt;@VimLinks&lt;/a&gt;, follow for plugins, news, blog posts.&lt;/li&gt;
1193
+ &lt;li&gt;&lt;a href="http://teespring.com/vimwq"&gt;:wq shirt&lt;/a&gt;&lt;/li&gt;
1194
+ &lt;li&gt;&lt;a href="http://www.reddit.com/r/vim/comments/2sc2qp/remember_the_vim_cheat_ball_that_was_posted_here/"&gt;Cheat Ball&lt;/a&gt;&lt;/li&gt;
1195
+ &lt;li&gt;&lt;a href="https://pragprog.com/book/bkviml/the-viml-primer"&gt;The VimL Primer&lt;/a&gt;, a VimL book from PragProg&lt;/li&gt;
1196
+ &lt;li&gt;&lt;a href="http://geoff.greer.fm/2015/01/15/why-neovim-is-better-than-vim/"&gt;A rant on Neovim vs Vim&lt;/a&gt; by Geoff Greer. Some valid criticism on Vim&amp;#39;s slow development and good news for Neovim&amp;#39;s progress.&lt;/li&gt;
1197
+ &lt;li&gt;&lt;a href="https://groups.google.com/forum/#!topic/vim_dev/m1RMplyIbug"&gt;A discussion on Vim&amp;#39;s development model&lt;/a&gt; which criticises the project&amp;#39;s slow development, but also has some good responses from core Vim on why this is the case.&lt;/li&gt;
1198
+ &lt;/ul&gt;
1199
+
1200
+ &lt;h3&gt;Ideas for next time&lt;/h3&gt;
1201
+
1202
+ &lt;ul&gt;
1203
+ &lt;li&gt;Some time for discussion and helping newbies out?&lt;/li&gt;
1204
+ &lt;li&gt;Tools for ruby and rails development?&lt;/li&gt;
1205
+ &lt;/ul&gt;
1206
+
1207
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
1208
+
1209
+ &lt;p&gt;&lt;img title="ThoughtWorks Werkstatt Berlin" alt="ThoughtWorks Werkstatt Berlin" src="/images/TWWB_logo_white_bg.png" /&gt;&lt;/p&gt;
1210
+
1211
+ &lt;p&gt;Thanks to &lt;a href="http://www.thoughtworks.com/locations/berlin"&gt;ThoughtWorks Werkstatt Berlin&lt;/a&gt; for hosting this event.&lt;/p&gt;
1212
+
1213
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1214
+ ]]&gt;</description>
1215
+ <pubDate>Thu, 22 Jan 2015 00:00:00 +0000</pubDate>
1216
+ <guid>http://vimberlin.com/january-2015-meetup/</guid>
1217
+ </item>
1218
+ <item>
1219
+ <title>October 2014 Meetup</title>
1220
+ <link>http://vimberlin.com/october-2014-meetup/</link>
1221
+ <description>&lt;![CDATA[&lt;h2&gt;Talks&lt;/h2&gt;
1222
+
1223
+ &lt;p&gt;None so far, but as &lt;a href="https://twitter.com/andrewradev"&gt;Andrew&lt;/a&gt; mentioned last time, we will have a discussion on how to
1224
+ learn and teach Vim.&lt;/p&gt;
1225
+
1226
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
1227
+
1228
+ &lt;p&gt;&lt;img title="ThoughtWorks Werkstatt Berlin" alt="ThoughtWorks Werkstatt Berlin" src="/images/TWWB_logo_white_bg.png" /&gt;&lt;/p&gt;
1229
+
1230
+ &lt;p&gt;Thanks to &lt;a href="http://www.thoughtworks.com/locations/berlin"&gt;ThoughtWorks Werkstatt Berlin&lt;/a&gt; for hosting this event.&lt;/p&gt;
1231
+
1232
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1233
+ ]]&gt;</description>
1234
+ <pubDate>Thu, 23 Oct 2014 00:00:00 +0000</pubDate>
1235
+ <guid>http://vimberlin.com/october-2014-meetup/</guid>
1236
+ </item>
1237
+ <item>
1238
+ <title>September 2014 Meetup</title>
1239
+ <link>http://vimberlin.com/september-2014-meetup/</link>
1240
+ <description>&lt;![CDATA[&lt;h2&gt;Talks&lt;/h2&gt;
1241
+
1242
+ &lt;ul&gt;
1243
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Plugins for writing a book with Vim&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/li&gt;
1244
+ &lt;li&gt;&lt;strong&gt;&amp;quot;Andrew&amp;#39;s guide to the NERDTree&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/andrewradev"&gt;Andrew Radev&lt;/a&gt;&lt;br&gt;
1245
+ The &lt;a href="https://github.com/scrooloose/nerdtree"&gt;NERDTree&lt;/a&gt; is one of the most powerful Vim plugins up to date. And because of its many features, I feel that most people don&amp;#39;t use it to its full potential. Stuff like precise node-by-node navigation, bookmarks, manipulating the file system, and, the most fun part of all, support for plugins.&lt;br&gt; &lt;br&gt; Since I consider myself a NERDTree power user, I&amp;#39;d like to demonstrate some of these and show off a few personal customizations that I&amp;#39;ve built to improve my workflow. I&amp;#39;ll touch on some of the alternatives, but for the most part, I&amp;#39;ll try to convince you that the NERDTree is an excellent tool to have in your toolbox.&lt;/li&gt;
1246
+ &lt;/ul&gt;
1247
+
1248
+ &lt;h2&gt;Sponsor&lt;/h2&gt;
1249
+
1250
+ &lt;p&gt;&lt;img title="ThoughtWorks Werkstatt Berlin" alt="ThoughtWorks Werkstatt Berlin" src="/images/TWWB_logo_white_bg.png" /&gt;&lt;/p&gt;
1251
+
1252
+ &lt;p&gt;Thanks to &lt;a href="http://www.thoughtworks.com/locations/berlin"&gt;ThoughtWorks Werkstatt Berlin&lt;/a&gt; for hosting this event.&lt;/p&gt;
1253
+
1254
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1255
+
1256
+ &lt;h2&gt;Recap&lt;/h2&gt;
1257
+
1258
+ &lt;p&gt;Here are the notes from the talk &lt;strong&gt;&amp;quot;Plugins for writing a book with Vim&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/p&gt;
1259
+
1260
+ &lt;script src="https://gist.github.com/wikimatze/1e45ca7ecd60e10cf725.js"&gt;&lt;/script&gt;
1261
+
1262
+ &lt;p&gt;as well as the notes from the talks &lt;strong&gt;&amp;quot;Andrew&amp;#39;s guide to the NERDTree&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/andrewradev"&gt;Andrew Radev&lt;/a&gt;&lt;/p&gt;
1263
+
1264
+ &lt;script src="https://gist.github.com/AndrewRadev/00e352c8bb58be4d51c0.js"&gt;&lt;/script&gt;
1265
+
1266
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1267
+ ]]&gt;</description>
1268
+ <pubDate>Thu, 25 Sep 2014 00:00:00 +0000</pubDate>
1269
+ <guid>http://vimberlin.com/september-2014-meetup/</guid>
1270
+ </item>
1271
+ <item>
1272
+ <title>May 2014 Meetup</title>
1273
+ <link>http://vimberlin.com/may-2014-meetup/</link>
1274
+ <description>&lt;![CDATA[&lt;h2&gt;Discussions&lt;/h2&gt;
1275
+
1276
+ &lt;p&gt;Luckily, &lt;a href="https://twitter.com/andrewradev"&gt;Andrew&lt;/a&gt; was so kind to post us some ideas we can talk about:&lt;/p&gt;
1277
+
1278
+ &lt;ul&gt;
1279
+ &lt;li&gt;&lt;a href="https://github.com/tpope/vim-projectionist"&gt;projectile&lt;/a&gt; - Projections are maps from file names and globs to sets of properties describing the file&lt;/li&gt;
1280
+ &lt;li&gt;&lt;a href="https://github.com/chiphogg/dotfiles/blob/master/.vimrc"&gt;vimrc from chiphogg&lt;/a&gt;&lt;/li&gt;
1281
+ &lt;li&gt;&lt;a href="https://github.com/emgram769/vim-multiuser"&gt;vim-multiuser&lt;/a&gt; - collaborate with others on realtime on the same file
1282
+ (bring your laptops with you so that we can try it out)&lt;/li&gt;
1283
+ &lt;/ul&gt;
1284
+
1285
+ &lt;p&gt;Thanks to &lt;a href="http://bitcrowd.net/"&gt;bitcrowd GmbH&lt;/a&gt; for hosting this event.&lt;/p&gt;
1286
+
1287
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1288
+ ]]&gt;</description>
1289
+ <pubDate>Thu, 22 May 2014 00:00:00 +0000</pubDate>
1290
+ <guid>http://vimberlin.com/may-2014-meetup/</guid>
1291
+ </item>
1292
+ <item>
1293
+ <title>April 2014 Meetup</title>
1294
+ <link>http://vimberlin.com/april-2014-meetup/</link>
1295
+ <description>&lt;![CDATA[&lt;h2&gt;Talks&lt;/h2&gt;
1296
+
1297
+ &lt;ul&gt;
1298
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Go support for Vim&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/andrewradev"&gt;Andrew Radev&lt;/a&gt;&lt;/p&gt;
1299
+
1300
+ &lt;p&gt;Go is an interesting language in many respects, and one of them is tooling. Unlike many other languages, Go attempts to ship with various tools for code parsing and rewriting, to make it feasible to use IDE-like functionality with any editor or IDE, simply by invoking tools on the command-line.&lt;/p&gt;
1301
+
1302
+ &lt;p&gt;I&amp;#39;d like to demonstrate my own fork of the Go Vim support, talk about what Google has provided and what kind of experiments I&amp;#39;ve done with it. I&amp;#39;ll also show some interesting Go tools and how they can be integrated into Vim, like code completion, finding definitions, the &amp;quot;Go Oracle&amp;quot;.&lt;/p&gt;
1303
+
1304
+ &lt;p&gt;Even if you don&amp;#39;t know anything about Go, I hope it will turn into an interesting discussion about language support and tooling in general.&lt;/p&gt;&lt;/li&gt;
1305
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Three new plugins I recently used and a handy &lt;em&gt;bad-words-highlighting-function&lt;/em&gt;&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
1306
+ &lt;/ul&gt;
1307
+
1308
+ &lt;h2&gt;News and Discussions&lt;/h2&gt;
1309
+
1310
+ &lt;ul&gt;
1311
+ &lt;li&gt;&lt;a href="https://github.com/tpope/timl"&gt;timl&lt;/a&gt; - Tim Pope&amp;#39;s Clojure like language which compiles down to VimL&lt;/li&gt;
1312
+ &lt;/ul&gt;
1313
+
1314
+ &lt;h2&gt;Questions&lt;/h2&gt;
1315
+
1316
+ &lt;ul&gt;
1317
+ &lt;li&gt;Matthias
1318
+
1319
+ &lt;ul&gt;
1320
+ &lt;li&gt;Difference between &lt;code&gt;set exrc&lt;/code&gt;, and &lt;code&gt;set secure&lt;/code&gt;&lt;/li&gt;
1321
+ &lt;li&gt;Autocompletion: difference between path and keyword completion&lt;/li&gt;
1322
+ &lt;li&gt;&lt;code&gt;&amp;lt;C-n&amp;gt; | &amp;lt;C-p&amp;gt;&lt;/code&gt; ... Keyword autocompletion for next|previous matching&lt;/li&gt;
1323
+ &lt;li&gt;&lt;code&gt;&amp;lt;C-x&amp;gt;&amp;lt;C-n&amp;gt;&lt;/code&gt; ... current buffer keywords&lt;/li&gt;
1324
+ &lt;/ul&gt;&lt;/li&gt;
1325
+ &lt;/ul&gt;
1326
+
1327
+ &lt;p&gt;If you want to give a talk too, send us a tweet or a mail.&lt;/p&gt;
1328
+
1329
+ &lt;p&gt;Thanks to &lt;a href="http://www.berlinonline.net/"&gt;BerlinOnline&lt;/a&gt; for hosting this event.&lt;/p&gt;
1330
+
1331
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1332
+ ]]&gt;</description>
1333
+ <pubDate>Thu, 24 Apr 2014 00:00:00 +0000</pubDate>
1334
+ <guid>http://vimberlin.com/april-2014-meetup/</guid>
1335
+ </item>
1336
+ <item>
1337
+ <title>March 2014 Meetup</title>
1338
+ <link>http://vimberlin.com/march-2014-meetup/</link>
1339
+ <description>&lt;![CDATA[&lt;h2&gt;Talks&lt;/h2&gt;
1340
+
1341
+ &lt;p&gt;None far :scream: ... but we :heart: to hear about your ideas.&lt;/p&gt;
1342
+
1343
+ &lt;h2&gt;News and Discussions&lt;/h2&gt;
1344
+
1345
+ &lt;ul&gt;
1346
+ &lt;li&gt;&lt;a href="https://github.com/neovim/neovim"&gt;Neovim&lt;/a&gt; - is it worth spending time on this?&lt;/li&gt;
1347
+ &lt;li&gt;&lt;a href="https://medium.com/p/433852f4b4d1"&gt;&amp;quot;Why Atom Can&amp;#39;t Replace Vim&amp;quot;&lt;/a&gt; - emphasize the power of vim?&lt;/li&gt;
1348
+ &lt;li&gt;&lt;a href="https://groups.google.com/forum/#!topic/vim_dev/x0BF9Y0Uby8"&gt;Mailing list discussion about neovim&lt;/a&gt;&lt;/li&gt;
1349
+ &lt;li&gt;&lt;a href="http://vim-wiki.mawercer.de/wiki/topic/in-which-way-does-vim-suck.html"&gt;In which ways is Vim awful&lt;/a&gt;&lt;/li&gt;
1350
+ &lt;li&gt;&lt;a href="https://github.com/t9md/vim-learn"&gt;vim learn - some nice links&lt;/a&gt;&lt;/li&gt;
1351
+ &lt;/ul&gt;
1352
+
1353
+ &lt;p&gt;If you want to give a talk too, send us a tweet or a mail.&lt;/p&gt;
1354
+
1355
+ &lt;p&gt;Thanks to &lt;a href="http://www.absolventa.de/"&gt;Absolventa GmbH&lt;/a&gt; for hosting this event.&lt;/p&gt;
1356
+
1357
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1358
+
1359
+ &lt;h2&gt;Recap&lt;/h2&gt;
1360
+
1361
+ &lt;p&gt;This was our first meetup where we had no talks. I couldn&amp;#39;t attend so I can only write what I heard from people saying
1362
+ what they did there:&lt;/p&gt;
1363
+
1364
+ &lt;ul&gt;
1365
+ &lt;li&gt;&lt;a href="https://github.com/wellle/dotfiles/blob/master/vimrc"&gt;vimrc&lt;/a&gt; of &lt;a href="https://github.com/wellle"&gt;Christian Wellenbrock&lt;/a&gt; was checked&lt;/li&gt;
1366
+ &lt;li&gt;talk about &lt;a href="https://github.com/wellle/targets.vim"&gt;targets.vim&lt;/a&gt; plugin&lt;/li&gt;
1367
+ &lt;li&gt;talk about &lt;a href="https://github.com/wellle/tmux-complete.vim"&gt;tmux-complete.vim&lt;/a&gt; plugin&lt;/li&gt;
1368
+ &lt;li&gt;after talking about &lt;a href="https://github.com/neovim/neovim"&gt;Neovim&lt;/a&gt;, &lt;a href="https://github.com/wellle"&gt;Christian Wellenbrock&lt;/a&gt; made a &lt;a href="https://github.com/neovim/neovim/commit/79321c62d504674d26de1d70a4832cfad7fb976e"&gt;commit&lt;/a&gt; for it&lt;/li&gt;
1369
+ &lt;/ul&gt;
1370
+
1371
+ &lt;p&gt;Next time, we are going to have talks again.&lt;/p&gt;
1372
+
1373
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1374
+ ]]&gt;</description>
1375
+ <pubDate>Thu, 27 Mar 2014 00:00:00 +0000</pubDate>
1376
+ <guid>http://vimberlin.com/march-2014-meetup/</guid>
1377
+ </item>
1378
+ <item>
1379
+ <title>January 2014 Meetup</title>
1380
+ <link>http://vimberlin.com/january-2014-meetup/</link>
1381
+ <description>&lt;![CDATA[&lt;p&gt;Happy new year and we start again with our monthly meetups in 2014.&lt;/p&gt;
1382
+
1383
+ &lt;h2&gt;Talks&lt;/h2&gt;
1384
+
1385
+ &lt;ul&gt;
1386
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Using Vimperator to browse the Web&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/p&gt;
1387
+
1388
+ &lt;p&gt;I switched over to Vimperator one month ago and would like to show you shortcuts and how you can configure it.&lt;/p&gt;
1389
+
1390
+ &lt;p&gt;&lt;iframe src="//player.vimeo.com/video/85943947" width="700" height="430" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/85943947"&gt;&amp;quot;Using Vimperator to browse the Web&amp;quot; by Matthias Günther&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="https://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;&lt;/li&gt;
1391
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Clever autocommands&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/andrewradev"&gt;Andrew Radev&lt;/a&gt;&lt;/p&gt;
1392
+
1393
+ &lt;p&gt;I&amp;#39;m going to do a quick overview on autocommands and some gotchas in their usage. I assume that most people present will know this stuff already, but there might be one or two things you may not have known before :).&lt;/p&gt;
1394
+
1395
+ &lt;p&gt;I&amp;#39;ll talk about some clever ways I use autocommands. I&amp;#39;ll also show my unfinished experiments with a recently-added autocommand called &lt;code&gt;TextChanged&lt;/code&gt;. This allows you to hook into any kind of change in both normal and insert mode, with some gotchas...&lt;/p&gt;
1396
+
1397
+ &lt;p&gt;I&amp;#39;m hoping that many other attendees will pitch in for ideas about interesting autocommands they use, opening up some discussion after the talk.&lt;/p&gt;
1398
+
1399
+ &lt;p&gt;&lt;iframe src="//player.vimeo.com/video/85031784" width="700" height="430" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/85031784"&gt;“Clever autocommands” by Andrew Radev&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="https://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;&lt;/li&gt;
1400
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Writing text in Vim&amp;quot;&lt;/strong&gt; by &lt;a href="http://feitel.indeedgeek.de/"&gt;Florian Eitel&lt;/a&gt;&lt;/p&gt;
1401
+
1402
+ &lt;p&gt;I like to show some tricks and snippets I use for working with text. This include using the spell checker in multiple languages, break long lines, full text search using vimgrep and maybe more.&lt;/p&gt;
1403
+
1404
+ &lt;p&gt;&lt;iframe src="//player.vimeo.com/video/85034312" width="700" height="430" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/85034312"&gt;“Writing text in Vim” by Florian Eitel&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="https://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;
1405
+ • &lt;a href="/data/vimberlin-2014-01_vim_writing/"&gt;SLIDES&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
1406
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;Blame your vimrc&lt;/strong&gt; &lt;a href="https://twitter.com/der_kronn"&gt;Matthias&lt;/a&gt; showing his &lt;a href="https://github.com/kronn/dotfiles/blob/master/.vimrc"&gt;vimrc&lt;/a&gt;&lt;/p&gt;
1407
+
1408
+ &lt;p&gt;&lt;iframe src="//player.vimeo.com/video/85795008" width="700" height="420" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/85795008"&gt;“vimrc&amp;quot; by Matthias Viehweger&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="https://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;&lt;/li&gt;
1409
+ &lt;/ul&gt;
1410
+
1411
+ &lt;p&gt;If you want to give a talk too, send us a tweet or a mail.&lt;/p&gt;
1412
+
1413
+ &lt;p&gt;Thanks to &lt;a href="https://travis-ci.org/"&gt;Travis CI&lt;/a&gt; for hosting this event.&lt;/p&gt;
1414
+
1415
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1416
+
1417
+ &lt;h2&gt;Recap&lt;/h2&gt;
1418
+
1419
+ &lt;h3&gt;Vim News&lt;/h3&gt;
1420
+
1421
+ &lt;p&gt;This is a new part in our meetup. &lt;a href="https://twitter.com/andrewradev"&gt;Andrew&lt;/a&gt; will talk about the latest things happening in our Vim community like stuff posted in reddit, discussions on the mailing list, some new plugin or new mapping that someone tweeted. If we get positive feedback about this idea, we make will make this a daily habbit to every following meetup.&lt;/p&gt;
1422
+
1423
+ &lt;h4&gt;Plugins:&lt;/h4&gt;
1424
+
1425
+ &lt;ul&gt;
1426
+ &lt;li&gt;&lt;a href="https://github.com/tommcdo/vim-exchange"&gt;Exchange plugin&lt;/a&gt;&lt;/li&gt;
1427
+ &lt;li&gt;&lt;a href="https://github.com/justinmk/vim-sneak"&gt;Sneak.vim&lt;/a&gt;&lt;/li&gt;
1428
+ &lt;li&gt;&lt;a href="https://github.com/svermeulen/vim-easyclip"&gt;Easyclip&lt;/a&gt;&lt;/li&gt;
1429
+ &lt;/ul&gt;
1430
+
1431
+ &lt;h4&gt;Builtins:&lt;/h4&gt;
1432
+
1433
+ &lt;ul&gt;
1434
+ &lt;li&gt;&lt;a href="http://www.reddit.com/r/vim/comments/1uq71v/a_gimmicky_but_potentially_useful_option/"&gt;:set writedelay&lt;/a&gt;&lt;/li&gt;
1435
+ &lt;/ul&gt;
1436
+
1437
+ &lt;h4&gt;Twitter:&lt;/h4&gt;
1438
+
1439
+ &lt;ul&gt;
1440
+ &lt;li&gt;&lt;a href="https://twitter.com/dotvimrc/status/424236516030685184"&gt;Zip right&lt;/a&gt;&lt;/li&gt;
1441
+ &lt;/ul&gt;
1442
+
1443
+ &lt;h4&gt;Vim mailing list:&lt;/h4&gt;
1444
+
1445
+ &lt;ul&gt;
1446
+ &lt;li&gt;&lt;a href="https://groups.google.com/forum/#!topic/vim_dev/UGPhorNh_3E"&gt;Check existence of function for version&lt;/a&gt;&lt;/li&gt;
1447
+ &lt;li&gt;&lt;a href="https://groups.google.com/forum/#!topic/vim_dev/QF7Bzh1YABU"&gt;Non-blocking jobs&lt;/a&gt;&lt;/li&gt;
1448
+ &lt;li&gt;&lt;a href="https://groups.google.com/forum/#!topic/vim_dev/65jjGqS1_VQ"&gt;Input queue&lt;/a&gt;&lt;/li&gt;
1449
+ &lt;li&gt;&lt;a href="https://groups.google.com/forum/#!topic/vim_dev/dcy_0HJ3RC0"&gt;Named builtins&lt;/a&gt;&lt;/li&gt;
1450
+ &lt;li&gt;&lt;a href="https://groups.google.com/forum/#!topic/vim_dev/drZDXZmYBsY"&gt;Complete rewrite&lt;/a&gt;&lt;/li&gt;
1451
+ &lt;/ul&gt;
1452
+
1453
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1454
+ ]]&gt;</description>
1455
+ <pubDate>Thu, 23 Jan 2014 00:00:00 +0000</pubDate>
1456
+ <guid>http://vimberlin.com/january-2014-meetup/</guid>
1457
+ </item>
1458
+ <item>
1459
+ <title>November 2013 Meetup</title>
1460
+ <link>http://vimberlin.com/november-2013-meetup/</link>
1461
+ <description>&lt;![CDATA[&lt;p&gt;We will gather around 7pm at the office and will start with the talks around 7.30pm.&lt;/p&gt;
1462
+
1463
+ &lt;h2&gt;We have one talk on our agenda:&lt;/h2&gt;
1464
+
1465
+ &lt;ul&gt;
1466
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Using Vimperator to browse the Web&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/p&gt;
1467
+
1468
+ &lt;p&gt;I switched over to Vimperator one month ago and would like to show you shortcuts and how you can configure it.&lt;/p&gt;&lt;/li&gt;
1469
+ &lt;/ul&gt;
1470
+
1471
+ &lt;p&gt;If you want to give a talk too, just send us a tweet or a mail.&lt;/p&gt;
1472
+
1473
+ &lt;p&gt;Thanks to &lt;a href="http://www.buero20.org/"&gt;Büro 2.0&lt;/a&gt; for hosting this event.&lt;/p&gt;
1474
+
1475
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1476
+ ]]&gt;</description>
1477
+ <pubDate>Thu, 28 Nov 2013 00:00:00 +0000</pubDate>
1478
+ <guid>http://vimberlin.com/november-2013-meetup/</guid>
1479
+ </item>
1480
+ <item>
1481
+ <title>October 2013 Meetup</title>
1482
+ <link>http://vimberlin.com/october-2013-meetup/</link>
1483
+ <description>&lt;![CDATA[&lt;p&gt;We will gather around 7pm at the office and will start with the talks around 7.30pm - no need to huzzle around&lt;/p&gt;
1484
+
1485
+ &lt;h2&gt;We have two talks on our agenda:&lt;/h2&gt;
1486
+
1487
+ &lt;ul&gt;
1488
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Ways to extract certain text-components&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/p&gt;
1489
+
1490
+ &lt;p&gt;There are these days at work where you have to solve certain problem but you know that this isn&amp;#39;t the easiest way to
1491
+ do it. Let me explain you my thoughts to you.&lt;/p&gt;&lt;/li&gt;
1492
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Fiddling around with indentation&amp;quot;&lt;/strong&gt; by &lt;a href="https://gist.github.com/AndrewRadev"&gt;Andrew Radev&lt;/a&gt;&lt;/p&gt;
1493
+
1494
+ &lt;p&gt;One of the drawbacks I see in indent-based languages like haml or coffeescript is that they can be somewhat hard to manipulate, compared to the ones with closing tags. For the latter ones, we have snippets, endwise.vim, auto-indentation, text objects. Dealing with indent can be trickier.&lt;/p&gt;
1495
+
1496
+ &lt;p&gt;I&amp;#39;ve played around and built some simple tools to help me out. I didn&amp;#39;t get too far, but I&amp;#39;d like to show them off regardless, because I think they might be interesting. I&amp;#39;ll also demonstrate some interesting plugins on the topic that I know of. I&amp;#39;d love it if the attendees pitch in with their own methods of working with slim, haml, coffeescript or python.&lt;/p&gt;&lt;/li&gt;
1497
+ &lt;/ul&gt;
1498
+
1499
+ &lt;p&gt;If you want to show us your &lt;code&gt;vimrc&lt;/code&gt; - you are welcome to do so.&lt;/p&gt;
1500
+
1501
+ &lt;p&gt;You can find this event under &lt;a href="http://lanyrd.com/crqzz"&gt;Lanyrd&lt;/a&gt;.&lt;/p&gt;
1502
+
1503
+ &lt;p&gt;If you want to give a talk too, just let me know and I can you on the agenda. Just drop us a line on twitter or via
1504
+ mail.&lt;/p&gt;
1505
+
1506
+ &lt;p&gt;Thanks to &lt;a href="http://www.buero20.org/"&gt;Büro 2.0&lt;/a&gt; for hosting this event.&lt;/p&gt;
1507
+
1508
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1509
+ ]]&gt;</description>
1510
+ <pubDate>Thu, 24 Oct 2013 00:00:00 +0000</pubDate>
1511
+ <guid>http://vimberlin.com/october-2013-meetup/</guid>
1512
+ </item>
1513
+ <item>
1514
+ <title>September 2013 Meetup</title>
1515
+ <link>http://vimberlin.com/september-2013-meetup/</link>
1516
+ <description>&lt;![CDATA[&lt;h2&gt;We have two talks on our agenda:&lt;/h2&gt;
1517
+
1518
+ &lt;ul&gt;
1519
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Browsing a codebase with ctags&amp;quot;&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;&lt;/p&gt;
1520
+
1521
+ &lt;p&gt;I was always asking myself how I can browse a code base of bigger written ruby library. I want to share with you
1522
+ what I did and what my current work flow looks like. &lt;a href="https://bitbucket.org/wikimatze/presentations/src/74438bf5788e85c15f04e4e36faa3aae2da703d2/slides.markdown?at=vim-autocompletion"&gt;See sources here&lt;/a&gt; and &lt;a href="/data/vimberlin-2013-09_ctags/"&gt;See slides here&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
1523
+ &lt;li&gt;&lt;p&gt;&lt;strong&gt;&amp;quot;Profiling Vim&amp;quot;&lt;/strong&gt; by &lt;a href="http://feitel.indeedgeek.de/"&gt;Florian Eitel&lt;/a&gt;&lt;/p&gt;
1524
+
1525
+ &lt;p&gt;Showing some techniques to profile what vim is doing. &lt;a href="/data/vimberlin-2013-09_vimprofiling/"&gt;See slides here&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
1526
+ &lt;/ul&gt;
1527
+
1528
+ &lt;h2&gt;Blame your vimrc&lt;/h2&gt;
1529
+
1530
+ &lt;ul&gt;
1531
+ &lt;li&gt;&lt;a href="https://github.com/niklas"&gt;Niklas&lt;/a&gt;
1532
+ is showing his &lt;a href="https://github.com/niklas/dotvim"&gt;vimrc&lt;/a&gt;
1533
+ and his &lt;a href="http://www.vim.org/scripts/script.php?script_id=2150"&gt;css color plugin&lt;/a&gt;&lt;/li&gt;
1534
+ &lt;li&gt;&lt;a href="http://bodotasche.de"&gt;Bodo&lt;/a&gt; is showing &lt;a href="https://github.com/bitboxer/dotfiles/blob/master/tilde/vimrc"&gt;his vimrc&lt;/a&gt;&lt;/li&gt;
1535
+ &lt;/ul&gt;
1536
+
1537
+ &lt;h2&gt;Other things mentioned&lt;/h2&gt;
1538
+
1539
+ &lt;ul&gt;
1540
+ &lt;li&gt;&lt;a href="https://github.com/tpope/vim-dispatch"&gt;vim-dispatch&lt;/a&gt; can run external commands async (&lt;a href="http://vimeo.com/63116209]"&gt;video&lt;/a&gt;)&lt;/li&gt;
1541
+ &lt;li&gt;&lt;a href="https://github.com/sheerun/vim-polyglot"&gt;vim-polyglot&lt;/a&gt; can load languages faster&lt;/li&gt;
1542
+ &lt;li&gt;&lt;a href="http://www.vim.org/scripts/script.php?script_id=1896"&gt;vim-ragtag&lt;/a&gt; has keybindings for html, php, eruby, ...&lt;/li&gt;
1543
+ &lt;li&gt;&lt;a href="https://github.com/ggreer/the_silver_searcher"&gt;the silver searcher&lt;/a&gt; is even faster than &lt;a href="https://github.com/petdance/ack2"&gt;ACK&lt;/a&gt;&lt;/li&gt;
1544
+ &lt;li&gt;&lt;a href="http://vim.wikia.com/wiki/Change_cursor_shape_in_different_modes"&gt;different cursor in insert mode&lt;/a&gt;&lt;/li&gt;
1545
+ &lt;li&gt;&lt;a href="http://kapeli.com/dash"&gt;dash&lt;/a&gt; allows you to browse various documentation locally&lt;/li&gt;
1546
+ &lt;li&gt;&lt;a href="http://tbaggery.com/2011/08/08/effortless-ctags-with-git.html"&gt;Ctags combined with git hooks&lt;/a&gt;&lt;/li&gt;
1547
+ &lt;li&gt;&lt;a href="http://stevelosh.com/blog/2012/10/a-modern-space-cadet/#controlescape"&gt;Esc-Ctrl on Capslock on Macs&lt;/a&gt;&lt;/li&gt;
1548
+ &lt;/ul&gt;
1549
+
1550
+ &lt;p&gt;You can find this event under &lt;a href="http://lanyrd.com/crdqc"&gt;Lanyrd&lt;/a&gt;.&lt;/p&gt;
1551
+
1552
+ &lt;p&gt;If you want to give a talk too, just let me know and I can put it on the agenda.&lt;/p&gt;
1553
+
1554
+ &lt;p&gt;Thanks to &lt;a href="http://www.wooga.com/"&gt;Wooga&lt;/a&gt; for hosting the event.&lt;/p&gt;
1555
+
1556
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1557
+ ]]&gt;</description>
1558
+ <pubDate>Thu, 26 Sep 2013 00:00:00 +0000</pubDate>
1559
+ <guid>http://vimberlin.com/september-2013-meetup/</guid>
1560
+ </item>
1561
+ <item>
1562
+ <title>August 2013 Meetup</title>
1563
+ <link>http://vimberlin.com/august-2013-meetup/</link>
1564
+ <description>&lt;![CDATA[&lt;p&gt;We currently have one talk on our agenda:&lt;/p&gt;
1565
+
1566
+ &lt;ul&gt;
1567
+ &lt;li&gt;
1568
+ &lt;strong&gt;"Browsing a codebase with ctags"&lt;/strong&gt; by &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;
1569
+ &lt;br&gt;
1570
+ I was always asking myself how I can browse a code base of bigger written ruby library. I want to share with you
1571
+ what I did and what my current work flow looks like.
1572
+ &lt;/li&gt;
1573
+ &lt;/ul&gt;
1574
+
1575
+ &lt;p&gt;You can find this event under &lt;a href="http://lanyrd.com/cqtfq"&gt;lanyrd&lt;/a&gt;.&lt;/p&gt;
1576
+
1577
+ &lt;p&gt;Please not that this will be our last meetup at the old place of LAUNCH/CO in the Warschauer Straße since they will be
1578
+ moving to a new place. If you have any ideas how we can thank them for hosting us over 1 1/2 half year, let&amp;#39;s discuss it
1579
+ on &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;
1580
+
1581
+ &lt;p&gt;If you want to give a talk too, just let me know and I can put it on the agenda.&lt;/p&gt;
1582
+
1583
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
1584
+
1585
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
1586
+
1587
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1588
+ ]]&gt;</description>
1589
+ <pubDate>Sun, 11 Aug 2013 00:00:00 +0000</pubDate>
1590
+ <guid>http://vimberlin.com/august-2013-meetup/</guid>
1591
+ </item>
1592
+ <item>
1593
+ <title>May 2013 Meetup</title>
1594
+ <link>http://vimberlin.com/may-2013-meetup/</link>
1595
+ <description>&lt;![CDATA[&lt;p&gt;We currently have two talks on our agenda:&lt;/p&gt;
1596
+
1597
+ &lt;ul&gt;
1598
+ &lt;li&gt;
1599
+ &lt;strong&gt;"Multiediting"&lt;/strong&gt;
1600
+ &lt;br&gt;
1601
+ Since Sublime Text became popular, a lot of people have been trying to replicate its "multiple cursors" functionality in Vim. Fortunately for us Vim-users, our editor doesn't really need this, since we have built-in ways to achieve pretty much the same results. Still, I believe the multi-edit plugins have some interesting properties and I want to demonstrate them and some of their benefits and drawbacks. I'll also talk about :substitute, :global and the dot mapping and share some tips and tricks that make them a simple alternative to multiple cursors. I'll finish up with demos of some of my own hacky experiments on this topic.
1602
+ &lt;br&gt;
1603
+ &lt;a href="https://twitter.com/andrewradev"&gt;Andrew Radev&lt;/a&gt;
1604
+ &lt;/li&gt;
1605
+ &lt;li&gt;
1606
+ &lt;strong&gt;"Architecture of my Vim environment"&lt;/strong&gt;
1607
+ &lt;br&gt;
1608
+ &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;
1609
+ &lt;/li&gt;
1610
+ &lt;li&gt;
1611
+ &lt;strong&gt;"Mercury plugin: execute any fragment of code directly from vim"&lt;/strong&gt;
1612
+ &lt;br&gt;
1613
+ &lt;a href="http://www.pushingbits.net/"&gt;Niels Madan&lt;/a&gt;
1614
+ &lt;/li&gt;
1615
+ &lt;/ul&gt;
1616
+
1617
+ &lt;p&gt;You can find this event under &lt;a href="http://lanyrd.com/cptcr"&gt;lanyrd&lt;/a&gt;.&lt;/p&gt;
1618
+
1619
+ &lt;div class="lanyrd-target-participants"&gt;
1620
+ &lt;a href="http://lanyrd.com/2013/vimberlin/attendees/"
1621
+ class="lanyrd-participants"&gt;
1622
+ Attendee list for vimberlin on Lanyrd
1623
+ &lt;/a&gt;
1624
+ &lt;/div&gt;
1625
+
1626
+ &lt;p&gt;If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;
1627
+
1628
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
1629
+
1630
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
1631
+
1632
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1633
+
1634
+ &lt;h3&gt;Recap&lt;/h3&gt;
1635
+
1636
+ &lt;p&gt;After a four month break it was great to see so many new faces and that our community is growing slowly.&lt;/p&gt;
1637
+
1638
+ &lt;p&gt;We recorded two of the three talks:&lt;/p&gt;
1639
+
1640
+ &lt;p&gt;&lt;iframe src="http://player.vimeo.com/video/67235749" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/67235749"&gt;&amp;quot;Multiediting&amp;quot; (@andrewradev)&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
1641
+
1642
+ &lt;p&gt;&lt;iframe src="http://player.vimeo.com/video/67450907" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/67450907"&gt;Mercury plugin: execute any fragment of code directly from vim (@nielsmadan)&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
1643
+
1644
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1645
+ ]]&gt;</description>
1646
+ <pubDate>Tue, 28 May 2013 00:00:00 +0000</pubDate>
1647
+ <guid>http://vimberlin.com/may-2013-meetup/</guid>
1648
+ </item>
1649
+ <item>
1650
+ <title>February 2013 Vim-beer-lin</title>
1651
+ <link>http://vimberlin.com/february-2013-vim-beer-lin/</link>
1652
+ <description>&lt;![CDATA[&lt;p&gt;This month we&amp;#39;ll skip the workshop part and move directly to the after-show party part. Berlin&amp;#39;s Vim users and everybody interested is invited to join us on.&lt;/p&gt;
1653
+
1654
+ &lt;p&gt;We&amp;#39;ll have some beer and vim chit-chat.&lt;/p&gt;
1655
+
1656
+ &lt;p&gt;I hope to see you there.&lt;/p&gt;
1657
+
1658
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Gregor Schmidt" href="http://www.nach-vorne.eu/"&gt;Gregor Schmidt&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1659
+
1660
+ &lt;p&gt;P.S: We will continue with our regular meetup schedule on March, 28th.&lt;/p&gt;
1661
+ ]]&gt;</description>
1662
+ <pubDate>Thu, 28 Feb 2013 00:00:00 +0000</pubDate>
1663
+ <guid>http://vimberlin.com/february-2013-vim-beer-lin/</guid>
1664
+ </item>
1665
+ <item>
1666
+ <title>January 2013 Meetup</title>
1667
+ <link>http://vimberlin.com/2013-01-meetup/</link>
1668
+ <description>&lt;![CDATA[&lt;p&gt;We currently have three talks on our agenda:&lt;/p&gt;
1669
+
1670
+ &lt;ul&gt;
1671
+ &lt;li&gt;
1672
+ &lt;strong&gt;"Vimify your life - How to use your desktop as if it would be Vim"&lt;/strong&gt; &lt;br&gt;
1673
+ Johannes Kulick
1674
+ &lt;/li&gt;
1675
+ &lt;li&gt;
1676
+ &lt;strong&gt;"Vimgolf - The number 4 of the Vimgolf list will talk vimgolf"&lt;/strong&gt; &lt;br&gt;
1677
+ &lt;a href="https://twitter.com/federicogalassi"&gt;Federico Galassi&lt;/a&gt;
1678
+ &lt;/li&gt;
1679
+ &lt;li&gt;
1680
+ &lt;strong&gt;"REPL in Vim - A livecoding session with the vim-slime plugin"&lt;/strong&gt; &lt;br&gt;
1681
+ &lt;a href="https://twitter.com/wikimatze"&gt;Matthias Günther&lt;/a&gt;
1682
+ &lt;/li&gt;
1683
+ &lt;/ul&gt;
1684
+
1685
+ &lt;p&gt;You can find this event under &lt;a href="http://lanyrd.com/2013/vimberlin-2013-01/"&gt;lanyrd&lt;/a&gt;.&lt;/p&gt;
1686
+
1687
+ &lt;p&gt;If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;
1688
+
1689
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
1690
+
1691
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
1692
+
1693
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1694
+
1695
+ &lt;h3&gt;Recap&lt;/h3&gt;
1696
+
1697
+ &lt;p&gt;We were around sixteen people this time from over four different countries. Apparently, the first talk by Johannes Kulick about using your desktop as if it would be Vim wasn&amp;#39;t held because Johannes was there.&lt;/p&gt;
1698
+
1699
+ &lt;p&gt;Matthias presented his talk about using &lt;code&gt;vim-slime&lt;/code&gt; plugin and we gave him a big Vim-Hug for Jonathan, the inventor of the plugin. You can find the slides on &lt;a href="https://speakerdeck.com/wikimatze/vim-slime"&gt;speakerdeck&lt;/a&gt;.&lt;/p&gt;
1700
+
1701
+ &lt;p&gt;After presenting the &amp;quot;vim-slime&amp;quot;, &lt;a href="https://twitter.com/nielsmadan"&gt;Niels Madan&lt;/a&gt;) explained a plugin he is going to install as a replacement of the vim slime plugin. It is still in development but you can find a video here:&lt;/p&gt;
1702
+
1703
+ &lt;p&gt;&lt;iframe src="http://player.vimeo.com/video/58042262" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/58042262"&gt;A &amp;quot;vim-slime&amp;quot; inspired plugin by Niels Madan (@nielsmadan)&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
1704
+
1705
+ &lt;p&gt;Our last talk was by held by &lt;a href="https://twitter.com/federicogalassi"&gt;Federico Galassi&lt;/a&gt;. He was talking about using Vimgolf and why he doesn&amp;#39;t do it any longer. You can watch the following video&lt;/p&gt;
1706
+
1707
+ &lt;p&gt;&lt;iframe src="http://player.vimeo.com/video/58049475" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/58049475"&gt;Playing Vimgolf by Federico Galassi (@federicogalassi)&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
1708
+
1709
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1710
+ ]]&gt;</description>
1711
+ <pubDate>Tue, 22 Jan 2013 00:00:00 +0000</pubDate>
1712
+ <guid>http://vimberlin.com/2013-01-meetup/</guid>
1713
+ </item>
1714
+ <item>
1715
+ <title>Unusual December 2012 Meetup</title>
1716
+ <link>http://vimberlin.com/2012-unusual-december-meetup/</link>
1717
+ <description>&lt;![CDATA[&lt;p&gt;We discussed on our mail list that we will have no official meetup before X-mas starts. Due to lack of space, we will meet at the home of Matthias.&lt;/p&gt;
1718
+
1719
+ &lt;p&gt;I will provide some beer and a delicious cake. See you soon.&lt;/p&gt;
1720
+
1721
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1722
+ ]]&gt;</description>
1723
+ <pubDate>Thu, 20 Dec 2012 00:00:00 +0000</pubDate>
1724
+ <guid>http://vimberlin.com/2012-unusual-december-meetup/</guid>
1725
+ </item>
1726
+ <item>
1727
+ <title>November 2012 Meetup</title>
1728
+ <link>http://vimberlin.com/2012-11-meetup/</link>
1729
+ <description>&lt;![CDATA[&lt;p&gt;We currently have the three talks on our agenda:&lt;/p&gt;
1730
+
1731
+ &lt;ul&gt;
1732
+ &lt;li&gt;
1733
+ &lt;strong&gt;"Creating a color scheme for Vim"&lt;/strong&gt; &lt;br /&gt;
1734
+ Niels Madan will talk about his experiences in creating
1735
+ &lt;a href="https://github.com/nielsmadan/harlequin"&gt;harlequin&lt;/a&gt;
1736
+ &lt;/li&gt;
1737
+ &lt;li&gt;
1738
+ &lt;strong&gt;"Small Commands"&lt;/strong&gt; &lt;br /&gt;
1739
+ Sven Guckes (one of our coaches) number prefix, command combinations, filtering, visual commands, mappings - some
1740
+ commands you may want to use in everyday editing
1741
+ &lt;/li&gt;
1742
+ &lt;li&gt;
1743
+ &lt;strong&gt;"Lessons learned from building splitjoin.vim"&lt;/strong&gt; &lt;br /&gt;
1744
+ Andrew Radev will share his knowledge about his
1745
+ &lt;a href="https://github.com/AndrewRadev/splitjoin.vim"&gt;splitjoin&lt;/a&gt; plugin.
1746
+ &lt;/li&gt;
1747
+ &lt;/ul&gt;
1748
+
1749
+ &lt;p&gt;You can find this event under &lt;a href="http://lanyrd.com/2012/vimberlin-2-november/"&gt;lanyrd&lt;/a&gt;.&lt;/p&gt;
1750
+
1751
+ &lt;p&gt;If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;
1752
+
1753
+ &lt;p&gt;I&amp;#39;m looking forward to seeing you there.&lt;/p&gt;
1754
+
1755
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
1756
+
1757
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
1758
+
1759
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1760
+
1761
+ &lt;h3&gt;Recap&lt;/h3&gt;
1762
+
1763
+ &lt;p&gt;I loved this meetup today: We had new people giving talks and they did an awesome job. I recored only one talk but next I try to get them all.&lt;/p&gt;
1764
+
1765
+ &lt;p&gt;Niels Madan (&lt;a href="https://twitter.com/nielsmadan"&gt;@nielsmadan&lt;/a&gt;) explained his experiences with creating his own colorscheme:&lt;/p&gt;
1766
+
1767
+ &lt;p&gt;&lt;iframe class="center" src="http://player.vimeo.com/video/54885966" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/50492237"&gt;Vimgolf by example&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
1768
+
1769
+ &lt;p&gt;This month we will not have an beginners workshop and no official meetup in december.&lt;/p&gt;
1770
+
1771
+ &lt;p&gt;If you have any further ideas please start a discussion on our {% include mailing_list.html %} or drop us a line on &lt;a href="https://twitter.com/vimberlin"&gt;twitter&lt;/a&gt; - we would like to hear your ideas.&lt;/p&gt;
1772
+
1773
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1774
+ ]]&gt;</description>
1775
+ <pubDate>Thu, 22 Nov 2012 00:00:00 +0000</pubDate>
1776
+ <guid>http://vimberlin.com/2012-11-meetup/</guid>
1777
+ </item>
1778
+ <item>
1779
+ <title>October 2012 Workshop</title>
1780
+ <link>http://vimberlin.com/2012-10-workshop/</link>
1781
+ <description>&lt;![CDATA[&lt;p&gt;&lt;img title="workshop" alt="/images/workshop.png" src="/images/workshop.png" /&gt;&lt;/p&gt;
1782
+
1783
+ &lt;p&gt;Our first beginners workshop in &lt;a href="/august-2012-workshop"&gt;August 2012&lt;/a&gt; was a huge success. Around twenty people were learning something new: Some of them learned the usage of the &lt;code&gt;vimrc&lt;/code&gt;, others went through &lt;a href="http://linuxcommand.org/man_pages/vimtutor1.html"&gt;vimtutor&lt;/a&gt;, and some of them asked specific questions.&lt;/p&gt;
1784
+
1785
+ &lt;p&gt;I&amp;#39;m happy to announce the second vimberlin beginners workshop.&lt;/p&gt;
1786
+
1787
+ &lt;h3&gt;Registration&lt;/h3&gt;
1788
+
1789
+ &lt;p&gt;If you are interested, please sign under &lt;a href="http://www.eventbrite.com/event/4134065100"&gt;eventbrite&lt;/a&gt;. The workshop is &lt;strong&gt;free&lt;/strong&gt; and we have place for &lt;strong&gt;12 students&lt;/strong&gt;.&lt;/p&gt;
1790
+
1791
+ &lt;h3&gt;Coaches&lt;/h3&gt;
1792
+
1793
+ &lt;ul&gt;
1794
+ &lt;li&gt;&lt;a href="https://twitter.com/lucapette"&gt;@lucapette&lt;/a&gt; has over 5 years of Vim experience, has written a bunch of plugins for Vim, and using editor heavenly on hacking on different Rails projects.&lt;/li&gt;
1795
+ &lt;li&gt;&lt;a href="https://twitter.com/guckes"&gt;@guckes&lt;/a&gt; has countless years of experience in using Vim and he can convince you in two
1796
+ minutes to use another shell then &lt;i&gt;bash&lt;/i&gt;.&lt;/li&gt;
1797
+ &lt;li&gt;&lt;a href="https://twitter.com/wikimatze"&gt;@wikimatze&lt;/a&gt; - using Vim for two years now and using it to write a book about &lt;a href="http://www.padrinorb.com/"&gt;Padrino&lt;/a&gt;.&lt;/li&gt;
1798
+ &lt;/ul&gt;
1799
+
1800
+ &lt;h3&gt;What else do you need&lt;/h3&gt;
1801
+
1802
+ &lt;ul&gt;
1803
+ &lt;li&gt;Your machine with Vim on it&lt;/li&gt;
1804
+ &lt;li&gt;Your questions you want to ask&lt;/li&gt;
1805
+ &lt;li&gt;Maybe a cake so that we can have a break&lt;/li&gt;
1806
+ &lt;li&gt;Patience&lt;/li&gt;
1807
+ &lt;/ul&gt;
1808
+
1809
+ &lt;p&gt;In case some of you want to play &lt;a href="http://vimgolf.com/"&gt;vimgolf&lt;/a&gt;, please have ruby installed on your system along with the &lt;code&gt;vimgolf&lt;/code&gt; gem.&lt;/p&gt;
1810
+
1811
+ &lt;p&gt;Please be on-time, we won&amp;#39;t want to waste time.&lt;/p&gt;
1812
+
1813
+ &lt;h3&gt;Recap&lt;/h3&gt;
1814
+
1815
+ &lt;p&gt;This time we had fewer people at out workshop since last time: 5 males, 1 female, and three coaches. We changed the format of this workshop a little bit more and make it more like a talk about the main concepts and features of Vim with interactive questions of the audience. Other coaches trained new people to Vim individually as we went together through the &lt;strong&gt;vimtutor&lt;/strong&gt;. Again, we got huge positive feedback for our workshop and will try newer things in the future to make it better.&lt;/p&gt;
1816
+
1817
+ &lt;p&gt;You can discuss things on our If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.
1818
+ and on {% include twitter_link.html %}. Our coach &lt;a href="https://twitter.com/guckes"&gt;Sven&lt;/a&gt; was so nice to put a resume of the last meetup &lt;a href="http://www.guckes.net/vimberlin/2012-10-25.notes.txt"&gt;online&lt;/a&gt;.&lt;/p&gt;
1819
+
1820
+ &lt;p&gt;If you have any further ideas please start a discussion on our If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.
1821
+ or drop us a line on &lt;a href="https://twitter.com/vimberlin"&gt;twitter&lt;/a&gt; - we would like to hear your ideas.&lt;/p&gt;
1822
+
1823
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1824
+ ]]&gt;</description>
1825
+ <pubDate>Wed, 3 Oct 2012 00:00:00 +0000</pubDate>
1826
+ <guid>http://vimberlin.com/2012-10-workshop/</guid>
1827
+ </item>
1828
+ <item>
1829
+ <title>September 2012 Meetup</title>
1830
+ <link>http://vimberlin.com/2012-09-meetup/</link>
1831
+ <description>&lt;![CDATA[&lt;p&gt;We currently have the following talks on our agenda:&lt;/p&gt;
1832
+
1833
+ &lt;ul&gt;
1834
+ &lt;li&gt;
1835
+ &lt;strong&gt;Buffer, quickfix windows, :Ack - does this work together?&lt;/strong&gt; &lt;br/&gt;
1836
+ &lt;a href="http://www.wikimatze.de"&gt;Matthias Günther&lt;/a&gt;
1837
+ &lt;/li&gt;
1838
+ &lt;li&gt;
1839
+ &lt;strong&gt;Mission Vimpossible - Some things you cannot do in Vim and how to do them
1840
+ there anyway&lt;/strong&gt; &lt;br/&gt;
1841
+ &lt;a href="http://kronn.de/"&gt;Matthias Viehweger&lt;/a&gt;
1842
+ &lt;/li&gt;
1843
+ &lt;li&gt;
1844
+ &lt;strong&gt;Vimgolf by example&lt;/strong&gt; &lt;br/&gt;
1845
+ &lt;a href="http://www.nach-vorne.eu"&gt;Gregor Schmidt&lt;/a&gt;
1846
+ &lt;/li&gt;
1847
+ &lt;/ul&gt;
1848
+
1849
+ &lt;p&gt;If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;
1850
+
1851
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
1852
+
1853
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
1854
+
1855
+ &lt;p&gt;I&amp;#39;m looking forward to seeing you there.&lt;/p&gt;
1856
+
1857
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Gregor Schmidt" href="http://www.nach-vorne.eu/"&gt;Gregor Schmidt&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1858
+
1859
+ &lt;h3&gt;Recap&lt;/h3&gt;
1860
+
1861
+ &lt;p&gt;First of all: Thanks to the about 20 Vim enthusiasts for coming, thanks to &lt;a href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for providing the space, and last but not least, thanks to the speakers Gregor Schmidt, Matthias Viehweger, and Matthias Günther for preparing and giving the talks.&lt;/p&gt;
1862
+
1863
+ &lt;p&gt;Gregor (&lt;a href="https://twitter.com/schmidtwisser"&gt;@schmidtwisser&lt;/a&gt;) explained how Vimgolfs work and what he learned during solving the &lt;a href="http://vimgolf.com/challenges/50048db8cdc4060002000004"&gt;Vertical Limit&lt;/a&gt; challenge. You may find his slides on &lt;a href="http://schmidt.github.com/talks/2012-09-27/"&gt;GitHub&lt;/a&gt; and a video of the talk on &lt;a href="https://vimeo.com/50492237"&gt;vimeo&lt;/a&gt;.&lt;/p&gt;
1864
+
1865
+ &lt;p&gt;&lt;iframe class="center" src="http://player.vimeo.com/video/50492237" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/50492237"&gt;Vimgolf by example&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
1866
+
1867
+ &lt;p&gt;Matthias Viehweger (&lt;a href="https://twitter.com/der_kronn"&gt;@der_kronn&lt;/a&gt;) talked in &amp;quot;Mission Vimpossible - Some things you cannot do in Vim and how to do them there anyway&amp;quot; about how he uses Vim to create IT-Infrastructure visualization with Vim, how to make nice favicons in Vim, and how to use hidden buffers to prepare a presentation. You may find his talk on &lt;a href="https://vimeo.com/50492236"&gt;vimeo&lt;/a&gt;.&lt;/p&gt;
1868
+
1869
+ &lt;p&gt;&lt;iframe class="center" src="http://player.vimeo.com/video/50492236" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/50492236"&gt;Mission Vimpossible - Some things you cannot do in Vim and how to do them there anyway&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
1870
+
1871
+ &lt;p&gt;You may find the slides of Matthias Günther&amp;#39;s (&lt;a href="https://twitter.com/wikimatze"&gt;@wikimatze&lt;/a&gt;) talk &amp;quot;Buffer, quickfix windows, :Ack - does this work together?&amp;quot; &lt;a href="https://speakerdeck.com/u/wikimatze/p/buffer-quickfix-windows-ack-does-this-work-together"&gt;at Speakerdeck&lt;/a&gt;. It is also a video available on &lt;a href="https://vimeo.com/50508801"&gt;vimeo&lt;/a&gt;.&lt;/p&gt;
1872
+
1873
+ &lt;p&gt;&lt;iframe class="center" src="http://player.vimeo.com/video/50508801" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href="http://vimeo.com/50508801"&gt;Buffer, quickfix windows, :Ack - does this work together?&lt;/a&gt; from &lt;a href="http://vimeo.com/wikimatze"&gt;wikimatze&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;
1874
+
1875
+ &lt;p&gt;Thanks for coming and making vimberlin happen. I&amp;#39;ve had great fun and learned a lot. See you all in November 2012.&lt;/p&gt;
1876
+
1877
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1878
+ ]]&gt;</description>
1879
+ <pubDate>Thu, 27 Sep 2012 00:00:00 +0000</pubDate>
1880
+ <guid>http://vimberlin.com/2012-09-meetup/</guid>
1881
+ </item>
1882
+ <item>
1883
+ <title>August 2012 Workshop</title>
1884
+ <link>http://vimberlin.com/2012-08-workshop/</link>
1885
+ <description>&lt;![CDATA[&lt;p&gt;&lt;strong&gt;Next meetup is something special: &amp;quot;VIM NOVICE - a beginners workshop for people new to Vim&amp;quot;&lt;/strong&gt;&lt;/p&gt;
1886
+
1887
+ &lt;p&gt;After discussing with &lt;a href="https://twitter.com/lucapette"&gt;@lucapette&lt;/a&gt; and &lt;a href="https://twitter.com/guckes"&gt;@guckes&lt;/a&gt; on our last meetup, we brainstormed the ideas how we can teach Vim not only to basic users of the editor but as well to beginners who has never used a modal editor like Vim before.&lt;/p&gt;
1888
+
1889
+ &lt;p&gt;We will have three coaches:&lt;/p&gt;
1890
+
1891
+ &lt;ul&gt;
1892
+ &lt;li&gt;&lt;a href="https://twitter.com/lucapette"&gt;@lucapette&lt;/a&gt; has over 5 years of Vim experience, has written a bunch of plugins for Vim, and using editor heavenly on hacking on different Rails projects.&lt;/li&gt;
1893
+ &lt;li&gt;&lt;a href="https://twitter.com/guckes"&gt;@guckes&lt;/a&gt; has countless years of experience in using Vim and he can convince you in two
1894
+ minutes to use another shell then &lt;i&gt;bash&lt;/i&gt;.&lt;/li&gt;
1895
+ &lt;li&gt;&lt;a href="https://twitter.com/wikimatze"&gt;@wikimatze&lt;/a&gt; - using Vim for two years now and using it to write a book about &lt;a href="http://www.padrinorb.com/"&gt;Padrino&lt;/a&gt;.&lt;/li&gt;
1896
+ &lt;/ul&gt;
1897
+
1898
+ &lt;h3&gt;Schedule&lt;/h3&gt;
1899
+
1900
+ &lt;ul&gt;
1901
+ &lt;li&gt;Get to know each other - tell us something about yourself and what editors you have used in the past.&lt;/li&gt;
1902
+ &lt;li&gt;Tell what you want to learn (or what you already know) and we will start.&lt;/li&gt;
1903
+ &lt;li&gt;Find more about the topic under our
1904
+ &lt;a title="wiki" href="https://github.com/vimberlin/vimberlin.de/wiki/vimberlin-workshop-for-newbies"&gt;wiki&lt;/a&gt;.&lt;/li&gt;
1905
+ &lt;/ul&gt;
1906
+
1907
+ &lt;p&gt;If you are interested, please sign under &lt;a title="eventbrite" href="http://vimberlin-eorg.eventbrite.com/"&gt;evenbrite&lt;/a&gt; and &lt;a title="lanyrd" href="http://lanyrd.com/2012/vimberlin-2-august/"&gt;lanyrd&lt;/a&gt; we have place for 12 students. It would be nice if you already installed Vim on your operation system so that we can right start without any bigger technical problems. You can find the installation instruction for [Vim here](&lt;a href="http://www.vim.org/download.php"&gt;http://www.vim.org/download.php&lt;/a&gt; &amp;quot;Vim installation).&lt;/p&gt;
1908
+
1909
+ &lt;p&gt;If you have any questions, please contact &lt;a href="mailto:vimberlin@gmail.com"&gt;vimberlin@gmail.com&lt;/a&gt;.&lt;/p&gt;
1910
+
1911
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
1912
+
1913
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
1914
+
1915
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1916
+
1917
+ &lt;h3&gt;Recap&lt;/h3&gt;
1918
+
1919
+ &lt;p&gt;Thousands thanks to all the attendees, our coaches (&lt;a href="https://twitter.com/lucapette"&gt;@lucapette&lt;/a&gt;, &lt;a href="https://twitter.com/guckes"&gt;@guckes&lt;/a&gt;, and &lt;a href="https://twitter.com/wikimatze"&gt;@wikimatze&lt;/a&gt;, and {% include launch&lt;em&gt;co&lt;/em&gt;link.html %} to make this event happen. We got a huge amount of positive feedback to keep up with this event - we will go on with and would like to enhance your Vim abilities.&lt;/p&gt;
1920
+
1921
+ &lt;p&gt;Later on the evening we talked about the timeframe of the next meeting. This would normally be in October but some of you suggested to do this kind of workshop every two weeks to keep the learning and memorizing of commands. I&amp;#39;m not able to be a coach this often.&lt;/p&gt;
1922
+
1923
+ &lt;p&gt;The ones who want more frequent meetups may discuss things on the {% include mailing&lt;em&gt;list.html %} and on {% include twitter&lt;/em&gt;link.html %} - if you have found a date, I will help you to find a location where you can have the session.&lt;/p&gt;
1924
+
1925
+ &lt;p&gt;If you have any further ideas please start a discussion on the If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.
1926
+ - we would like to hear your ideas.&lt;/p&gt;
1927
+
1928
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1929
+ ]]&gt;</description>
1930
+ <pubDate>Wed, 29 Aug 2012 00:00:00 +0000</pubDate>
1931
+ <guid>http://vimberlin.com/2012-08-workshop/</guid>
1932
+ </item>
1933
+ <item>
1934
+ <title>July 2012 Meetup</title>
1935
+ <link>http://vimberlin.com/2012-07-meetup/</link>
1936
+ <description>&lt;![CDATA[&lt;p&gt;We currently have one talk on our agenda:&lt;/p&gt;
1937
+
1938
+ &lt;ul&gt;
1939
+ &lt;li&gt;
1940
+ &lt;strong&gt;"Buffer, quickfix windows, :Ack - does this work together?"&lt;/strong&gt;&lt;br /&gt;
1941
+ Matthias Günther
1942
+ &lt;/li&gt;
1943
+ &lt;/ul&gt;
1944
+
1945
+ &lt;p&gt;You can find this meeting on &lt;a href="http://lanyrd.com/2012/vimberlin-2-july/"&gt;lanyrd&lt;/a&gt;.&lt;/p&gt;
1946
+
1947
+ &lt;p&gt;If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;
1948
+
1949
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
1950
+
1951
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
1952
+
1953
+ &lt;p&gt;I&amp;#39;m looking forward to seeing you there and we count on your participation.&lt;/p&gt;
1954
+
1955
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1956
+
1957
+ &lt;h3&gt;Recap&lt;/h3&gt;
1958
+
1959
+ &lt;p&gt;Due to vacations, this meetup was a bit more intimate than usual. This led to interesting discussions about the future work of the user group. One outcome was the announcement of regular Vim Novice workshops, which will be a great opportunity to learn the first steps in Vim and connect with fellow Vimers.&lt;/p&gt;
1960
+
1961
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Gregor Schmidt" href="http://www.nach-vorne.eu/"&gt;Gregor Schmidt&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1962
+ ]]&gt;</description>
1963
+ <pubDate>Thu, 26 Jul 2012 00:00:00 +0000</pubDate>
1964
+ <guid>http://vimberlin.com/2012-07-meetup/</guid>
1965
+ </item>
1966
+ <item>
1967
+ <title>May 2012 Meetup</title>
1968
+ <link>http://vimberlin.com/2012-05-meetup/</link>
1969
+ <description>&lt;![CDATA[&lt;p&gt;We currently have two talks on our agenda:&lt;/p&gt;
1970
+
1971
+ &lt;ul&gt;
1972
+ &lt;li&gt;&lt;em&gt;&amp;quot;Notes - is there a best plugin&amp;quot;&lt;/em&gt; Matthias Günther feat. Stefan Otte &amp;quot;vim-orgmode&amp;quot;&lt;/li&gt;
1973
+ &lt;li&gt;&lt;em&gt;&amp;quot;Vim - Precision editing at the speed of thought&amp;quot;&lt;/em&gt; Drew Neill&lt;/li&gt;
1974
+ &lt;/ul&gt;
1975
+
1976
+ &lt;p&gt;The rest will be some ad hoc and lightning talk style presentations about all things Vim. We count on your participation.&lt;/p&gt;
1977
+
1978
+ &lt;p&gt;If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;
1979
+
1980
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
1981
+
1982
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
1983
+
1984
+ &lt;p&gt;I&amp;#39;m looking forward to seeing you there.&lt;/p&gt;
1985
+
1986
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Gregor Schmidt" href="http://www.nach-vorne.eu/"&gt;Gregor Schmidt&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1987
+
1988
+ &lt;h3&gt;Recap&lt;/h3&gt;
1989
+
1990
+ &lt;p&gt;Thanks for the countless coming, thanks for &lt;a href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for giving us space, and thanks for the speakers Matthias, Stefan, and Drew for the various presentations.&lt;/p&gt;
1991
+
1992
+ &lt;p&gt;You can find the slides of Matthias Günthers talk &amp;quot;Notes - is there a best plugin?&amp;quot; &lt;a href="https://speakerdeck.com/u/wikimatze/p/notes-is-there-a-best-plugin"&gt;at Speakerdeck&lt;/a&gt;. Stefan Otte&amp;#39;s talk about &amp;quot;vim-orgmode&amp;quot; was an additional talk about note taking with vim-orgmode. Drew Neil gave a very interesting talk about &amp;quot;Vim - Precision editing at the speed of thought&amp;quot; which he gave on the &lt;a href="http://www.sourcedevcon.eu/"&gt;SourceDevCon 2012&lt;/a&gt;, and showed the Vim hackers how work more with text object, and motions.&lt;/p&gt;
1993
+
1994
+ &lt;p&gt;We are sad to hear that Drew will leave Berlin and that our future meetups will be without him - we wish you all the best in England, and with his book &lt;a href="http://pragprog.com/book/dnvim/practical-vim"&gt;Practical Vim&lt;/a&gt;.&lt;/p&gt;
1995
+
1996
+ &lt;p&gt;Thanks for coming and making vimberlin happen. I&amp;#39;ve had great fun and learned a lot. I hope to see you all in May.&lt;/p&gt;
1997
+
1998
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Matthias Günther" href="http://wikimatze.de/about"&gt;Matthias Günther&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
1999
+ ]]&gt;</description>
2000
+ <pubDate>Thu, 24 May 2012 00:00:00 +0000</pubDate>
2001
+ <guid>http://vimberlin.com/2012-05-meetup/</guid>
2002
+ </item>
2003
+ <item>
2004
+ <title>March 2012 Meetup</title>
2005
+ <link>http://vimberlin.com/2012-03-meetup/</link>
2006
+ <description>&lt;![CDATA[&lt;p&gt;We currently have two talks on our agenda:&lt;/p&gt;
2007
+
2008
+ &lt;ul&gt;
2009
+ &lt;li&gt;&lt;em&gt;&amp;quot;Lessons learned with Vimscript&amp;quot;&lt;/em&gt; Matthias Günther&lt;/li&gt;
2010
+ &lt;li&gt;&lt;em&gt;&amp;quot;From rails.vim to dbext.vim&amp;quot;&lt;/em&gt; Matthias Viehweger&lt;/li&gt;
2011
+ &lt;/ul&gt;
2012
+
2013
+ &lt;p&gt;The rest will be some ad hoc and lightning talk style presentations about all things Vim. We count on your participation.&lt;/p&gt;
2014
+
2015
+ &lt;p&gt;If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;
2016
+
2017
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
2018
+
2019
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
2020
+
2021
+ &lt;p&gt;I&amp;#39;m looking forward to seeing you there.&lt;/p&gt;
2022
+
2023
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Gregor Schmidt" href="http://www.nach-vorne.eu/"&gt;Gregor Schmidt&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
2024
+
2025
+ &lt;h2&gt;Recap&lt;/h2&gt;
2026
+
2027
+ &lt;p&gt;First of all: Thank you all for coming, thanks to the two Matthiases for preparing and giving a talk and thanks to LAUNCH/CO for having us.&lt;/p&gt;
2028
+
2029
+ &lt;p&gt;The slides of Matthias Günther&amp;#39;s talk &amp;quot;Lessons learned with Vimscript&amp;quot; may be found &lt;a href="http://speakerdeck.com/u/wikimatze/p/lessons-learned-with-vimscript"&gt;at Speakerdeck&lt;/a&gt;. Matthias Viehweger&amp;#39;s talk was more ad-hoc a.k.a. lightning talk style, and he did not use slides. So if you are interested in his introduction to &lt;a href="https://github.com/tpope/vim-rails"&gt;rails.vim&lt;/a&gt; and the
2030
+ &lt;a href="http://www.vim.org/scripts/script.php?script_id=356"&gt;Vim dbext plugin&lt;/a&gt; you need to ask him in person.&lt;/p&gt;
2031
+
2032
+ &lt;p&gt;We&amp;#39;ve again had lots of interesting discussions about folding, navigation and other Vim best practices. In this context Matthias Günther mentioned his &lt;a title="tocdown plugin" href="https://github.com/wikimatze/tocdown"&gt;tocdown plugin&lt;/a&gt;, Drew Neil mentioned his &lt;a href="https://github.com/nelstrom/dotfiles/blob/master/vim/ftplugin/markdown/folding.vim"&gt;syntax highlighting for Markdown&lt;/a&gt;, the &lt;a href="https://github.com/nelstrom/dotfiles/tree/master/vim/bundle/vimoutliner"&gt;vimoutliner&lt;/a&gt; and gave a quick explanation why he favors the default &lt;a href="http://vimcasts.org/e/15"&gt;netrw file browser&lt;/a&gt; over plugins like &lt;a href="https://github.com/scrooloose/nerdtree"&gt;NERDtree&lt;/a&gt;.&lt;/p&gt;
2033
+
2034
+ &lt;p&gt;We will meet again on May 24th, 8 p.m. at the LAUNCH/CO coworking space. We would be glad, if you send talk proposals the mailing list.&lt;/p&gt;
2035
+
2036
+ &lt;p&gt;I encourage you to send pull request to the &lt;a href="https://github.com/vimberlin/vimberlin.de"&gt;vimberlin GitHub repository&lt;/a&gt; and add anything, that I might have missed. Again, thanks for coming and making vimberlin happen. I&amp;#39;ve had great fun and learned a lot. I hope to see you all in May.&lt;/p&gt;
2037
+
2038
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Gregor Schmidt" href="http://www.nach-vorne.eu/"&gt;Gregor Schmidt&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
2039
+ ]]&gt;</description>
2040
+ <pubDate>Thu, 22 Mar 2012 00:00:00 +0000</pubDate>
2041
+ <guid>http://vimberlin.com/2012-03-meetup/</guid>
2042
+ </item>
2043
+ <item>
2044
+ <title>January 2012 Meetup</title>
2045
+ <link>http://vimberlin.com/2012-01-meetup/</link>
2046
+ <description>&lt;![CDATA[&lt;p&gt;&lt;a title="Drew Neil" href="http://drewneil.com/"&gt;Drew Neil&lt;/a&gt; (aka &lt;a title="@nelstrom" href="https://twitter.com/nelstrom"&gt;@nelstrom&lt;/a&gt;, the creator of the awesome &lt;a title="vimcasts" href="http://vimcasts.org/"&gt;vimcasts&lt;/a&gt;, agreed to give a talk.&lt;/p&gt;
2047
+
2048
+ &lt;p&gt;We are very proud to have him at our very first meetup. The topic is yet to be announced. Further topics will be kind of organizational. We should briefly talk about:&lt;/p&gt;
2049
+
2050
+ &lt;ul&gt;
2051
+ &lt;li&gt;Expectations for this user group&lt;/li&gt;
2052
+ &lt;li&gt;Future schedule for regular meetups&lt;/li&gt;
2053
+ &lt;li&gt;Future topics of meetups&lt;/li&gt;
2054
+ &lt;/ul&gt;
2055
+
2056
+ &lt;p&gt;We will have some time at the end for small talk and socializing. Also, in Friedrichshain, it should be rather easy to move on to a bar after the meetup.&lt;/p&gt;
2057
+
2058
+ &lt;pre&gt;
2059
+ 1. Find the Warschauer Str. 70A
2060
+ 2. Go to the second backyard
2061
+ 3. Enter the big door in the middle of the building with the LAUNCH/CO and
2062
+ Noisy Rooms signs
2063
+ 4. Use the staircase on the right and go to the 2nd level
2064
+ 5. After the staircase head right (this is left in relation to the entrance)
2065
+ 6. Go to the end of the corridor
2066
+ 7. Use the staircase to go down to the 1st floor
2067
+ 8. Open the big steel door
2068
+ 9. You're there
2069
+
2070
+ or alternatively
2071
+
2072
+ 1. Follow the LAUNCH/CO signs all over the place
2073
+ 2. You're there
2074
+ &lt;/pre&gt;
2075
+
2076
+ &lt;p&gt;If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the &lt;a href="https://groups.google.com/group/vimberlin/"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;
2077
+
2078
+ &lt;p&gt;&lt;img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /&gt;&lt;/p&gt;
2079
+
2080
+ &lt;p&gt;Thanks to &lt;a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking"&gt;LAUNCH/CO&lt;/a&gt; for hosting the event.&lt;/p&gt;
2081
+
2082
+ &lt;p&gt;Hope to see you there,&lt;/p&gt;
2083
+
2084
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Gregor Schmidt" href="http://www.nach-vorne.eu/"&gt;Gregor Schmidt&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
2085
+
2086
+ &lt;h2&gt;Recap&lt;/h2&gt;
2087
+
2088
+ &lt;p&gt;Thank you all for coming. It was a great evening and I had a lot of fun. I&amp;#39;m especially proud, that so many of you guys showed up. I think we were about 20 people. I think, that&amp;#39;s pretty impressive for a first meeting.&lt;/p&gt;
2089
+
2090
+ &lt;p&gt;I would like to thank &lt;a title="Drew" href="http://drewneil.com/"&gt;Drew&lt;/a&gt; for his thoughts on plugins and how they fit into the Vim universe. Also, playing some &lt;a title="vimgolf" href="http://vimgolf.com/"&gt;vimgolf&lt;/a&gt; was both entertaining and illuminating.&lt;/p&gt;
2091
+
2092
+ &lt;p&gt;Finally we talked about vimberlin itself. We&amp;#39;ve settled to meet on the 4th Thursday of every odd month. So the next meetup will be on &lt;strong&gt;March 22nd 2012 - 8 p.m. again at LAUNCH/CO&lt;/strong&gt;.&lt;/p&gt;
2093
+
2094
+ &lt;p&gt;We are starting to using a mailing list to discuss talk proposals and other stuff. (There is a link at the top of the page.) I&amp;#39;ve also added a link to an iCal feed containing the schedule for the next meetups.&lt;/p&gt;
2095
+
2096
+ &lt;p&gt;I&amp;#39;ll continue to use the Twitter account &lt;a title="@vimberlin" href="http://twitter.com/vimberlin"&gt;@vimberlin&lt;/a&gt; for announcements and things of (potentially) general interest.&lt;/p&gt;
2097
+
2098
+ &lt;p&gt;Thanks Jan and LAUNCH/CO for hosting the event and providing us with chairs, beers and beamer and thank you all for making vimberlin happen.&lt;/p&gt;
2099
+
2100
+ &lt;p&gt;&lt;strong&gt;&lt;a title="Gregor Schmidt" href="http://www.nach-vorne.eu/"&gt;Gregor Schmidt&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
2101
+ ]]&gt;</description>
2102
+ <pubDate>Fri, 27 Jan 2012 00:00:00 +0000</pubDate>
2103
+ <guid>http://vimberlin.com/2012-01-meetup/</guid>
2104
+ </item>
2105
+ </channel>
2106
+ </rss>