vimdeck 0.1.7 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Vimdeck
1
+ # Vimdeck [![Gem Version](https://badge.fury.io/rb/vimdeck.png)](http://badge.fury.io/rb/vimdeck)
2
2
 
3
3
  VIM as a presentation tool
4
4
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.7
1
+ 0.1.8
data/bin/vimdeck CHANGED
@@ -3,13 +3,14 @@
3
3
  #>
4
4
  #> Commands:
5
5
  #>
6
- #> slideshow generate and show slides (default)
7
- #> generate generate slides only
8
- #> open open slides in presentation folder (no file needed)
6
+ #> slideshow generate and show slides (default)
7
+ #> generate generate slides only
8
+ #> open open slides in presentation folder (no file needed)
9
9
  #>
10
10
  #> Options:
11
11
  #>
12
- #> --no-ascii skip ascii headers
12
+ # --no-indent, -I skip indentation
13
+ #> --no-ascii, -A skip ascii headers
13
14
 
14
15
  require "optparse"
15
16
  require "vimdeck"
data/lib/vimdeck.rb CHANGED
@@ -196,7 +196,7 @@ module Vimdeck
196
196
  # Prepending each line with slide_padding
197
197
  # Removing trailing spaces
198
198
  # Add newlines at end of the file to hide the slide identifier
199
- slide = slide_padding + slide.gsub( /\n/, "\n#{slide_padding}" ).gsub( / *$/, "" ) + ("\n" * 80) + "slide #{i+1}"
199
+ slide = slide_padding + slide.gsub( /\n/, "\n#{slide_padding}" ).gsub( / *$/, "" ) + ("\n" * 80) + "slide #{slide_num}"
200
200
 
201
201
  # Buffers comments refers to items that need to be less focused/"unhighlighted"
202
202
  # We add a regex to the vimscript for each slide with "comments"
@@ -206,7 +206,7 @@ module Vimdeck
206
206
  buffer[:comments] = []
207
207
  while match && match[1] && match.post_match do
208
208
  slide.sub!(regex, match[1])
209
- pattern = match[1] + "||(||_.*slide #{i+1}||)||@="
209
+ pattern = match[1] + "||(||_.*slide #{slide_num}||)||@="
210
210
  buffer[:comments] << pattern.gsub(/\n/, "||n").gsub(/\[/, "||[").gsub(/\]/, "||]").gsub(/\|/, "\\").gsub(/\"/, "\\\"")
211
211
  match = match.post_match.match(regex)
212
212
  end
@@ -26,21 +26,21 @@ b 4
26
26
  b 5
27
27
 
28
28
 
29
- call matchadd("Comment", "\\n• Second\\n• Third\\(\\_.*slide 5\\)\\@=")
29
+ call matchadd("Comment", "\\n • Second\\n • Third\\(\\_.*slide 005\\)\\@=")
30
30
 
31
31
 
32
32
  b 6
33
33
 
34
34
 
35
- call matchadd("Comment", "• First\\(\\_.*slide 6\\)\\@=")
35
+ call matchadd("Comment", "• First\\(\\_.*slide 006\\)\\@=")
36
36
 
37
- call matchadd("Comment", "\\n• Third\\(\\_.*slide 6\\)\\@=")
37
+ call matchadd("Comment", "\\n • Third\\(\\_.*slide 006\\)\\@=")
38
38
 
39
39
 
40
40
  b 7
41
41
 
42
42
 
43
- call matchadd("Comment", "• First\\n• Second\\(\\_.*slide 7\\)\\@=")
43
+ call matchadd("Comment", "• First\\n • Second\\(\\_.*slide 007\\)\\@=")
44
44
 
45
45
 
46
46
  b 8
@@ -54,9 +54,9 @@ b 9
54
54
  6,17SyntaxInclude ruby
55
55
 
56
56
 
57
- call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\n highlight = \\(\\_.*slide 9\\)\\@=")
57
+ call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\n highlight = \\(\\_.*slide 009\\)\\@=")
58
58
 
59
- call matchadd("Comment", "\\n end\\n end\\nend\\(\\_.*slide 9\\)\\@=")
59
+ call matchadd("Comment", "\\n end\\n end\\n end\\(\\_.*slide 009\\)\\@=")
60
60
 
61
61
 
62
62
  b 10
@@ -64,9 +64,9 @@ b 10
64
64
  6,17SyntaxInclude ruby
65
65
 
66
66
 
67
- call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def\\(\\_.*slide 10\\)\\@=")
67
+ call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def\\(\\_.*slide 010\\)\\@=")
68
68
 
69
- call matchadd("Comment", "highlight = \"vimdeck\"\\n end\\n end\\nend\\(\\_.*slide 10\\)\\@=")
69
+ call matchadd("Comment", "highlight = \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 010\\)\\@=")
70
70
 
71
71
 
72
72
  b 11
@@ -74,9 +74,9 @@ b 11
74
74
  6,17SyntaxInclude ruby
75
75
 
76
76
 
77
- call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\(\\_.*slide 11\\)\\@=")
77
+ call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\(\\_.*slide 011\\)\\@=")
78
78
 
79
- call matchadd("Comment", "= \"vimdeck\"\\n end\\n end\\nend\\(\\_.*slide 11\\)\\@=")
79
+ call matchadd("Comment", "= \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 011\\)\\@=")
80
80
 
81
81
 
82
82
  b 12
@@ -84,9 +84,9 @@ b 12
84
84
  6,17SyntaxInclude ruby
85
85
 
86
86
 
87
- call matchadd("Comment", "module\\(\\_.*slide 12\\)\\@=")
87
+ call matchadd("Comment", "module\\(\\_.*slide 012\\)\\@=")
88
88
 
89
- call matchadd("Comment", "class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\nend\\(\\_.*slide 12\\)\\@=")
89
+ call matchadd("Comment", "class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 012\\)\\@=")
90
90
 
91
91
 
92
92
  b 13
@@ -94,9 +94,9 @@ b 13
94
94
  6,17SyntaxInclude ruby
95
95
 
96
96
 
97
- call matchadd("Comment", "module Parts\\n class foo\\n def slide\\(\\_.*slide 13\\)\\@=")
97
+ call matchadd("Comment", "module Parts\\n class foo\\n def slide\\(\\_.*slide 013\\)\\@=")
98
98
 
99
- call matchadd("Comment", "end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\nend\\(\\_.*slide 13\\)\\@=")
99
+ call matchadd("Comment", "end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 013\\)\\@=")
100
100
 
101
101
 
102
102
  b 14
@@ -104,9 +104,9 @@ b 14
104
104
  6,17SyntaxInclude ruby
105
105
 
106
106
 
107
- call matchadd("Comment", "module Parts\\n class foo\\n def\\(\\_.*slide 14\\)\\@=")
107
+ call matchadd("Comment", "module Parts\\n class foo\\n def\\(\\_.*slide 014\\)\\@=")
108
108
 
109
- call matchadd("Comment", "\"of a\"\\n end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\nend\\(\\_.*slide 14\\)\\@=")
109
+ call matchadd("Comment", "\"of a\"\\n end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 014\\)\\@=")
110
110
 
111
111
 
112
112
  b 15
@@ -1,13 +1,13 @@
1
- _ ________ _______ ______________ __
2
- | | / / _/ |/ / __ \/ ____/ ____/ //_/
3
- | | / // // /|_/ / / / / __/ / / / ,<
4
- | |/ // // / / / /_/ / /___/ /___/ /| |
5
- |___/___/_/ /_/_____/_____/\____/_/ |_|
1
+ _ ________ _______ ______________ __
2
+ | | / / _/ |/ / __ \/ ____/ ____/ //_/
3
+ | | / // // /|_/ / / / / __/ / / / ,<
4
+ | |/ // // / / / /_/ / /___/ /___/ /| |
5
+ |___/___/_/ /_/_____/_____/\____/_/ |_|
6
6
 
7
- ___ __ _____ ____ ___ _ ______________ __ _______
8
- / _ \/ / / / _ \/ __/ / _ | | /| / / __/ __/ __ \/ |/ / __/
9
- / ___/ /_/ / , _/ _/ / __ | |/ |/ / _/_\ \/ /_/ / /|_/ / _/
10
- /_/ \____/_/|_/___/ /_/ |_|__/|__/___/___/\____/_/ /_/___/
7
+ ___ __ _____ ____ ___ _ ______________ __ _______
8
+ / _ \/ / / / _ \/ __/ / _ | | /| / / __/ __/ __ \/ |/ / __/
9
+ / ___/ /_/ / , _/ _/ / __ | |/ |/ / _/_\ \/ /_/ / /|_/ / _/
10
+ /_/ \____/_/|_/___/ /_/ |_|__/|__/___/___/\____/_/ /_/___/
11
11
 
12
12
 
13
13
 
@@ -89,4 +89,4 @@
89
89
 
90
90
 
91
91
 
92
- slide 1
92
+ slide 001
@@ -1,26 +1,26 @@
1
- _ ________ ___ ____ ____ ________ _______ __
2
- | | / / _/ |/ / / __ \/ __ \/ ____/ //_/ ___// /
3
- | | / // // /|_/ / / /_/ / / / / / / ,< \__ \/ /
4
- | |/ // // / / / / _, _/ /_/ / /___/ /| |___/ /_/
5
- |___/___/_/ /_/ /_/ |_|\____/\____/_/ |_/____(_)
1
+ _ ________ ___ ____ ____ ________ _______ __
2
+ | | / / _/ |/ / / __ \/ __ \/ ____/ //_/ ___// /
3
+ | | / // // /|_/ / / /_/ / / / / / / ,< \__ \/ /
4
+ | |/ // // / / / / _, _/ /_/ / /___/ /| |___/ /_/
5
+ |___/___/_/ /_/ /_/ |_|\____/\____/_/ |_/____(_)
6
6
 
7
- +------------------------------+
8
- | :.. |
9
- | ~===..=+.++==:.+==+======. |
10
- | ~oooooooo==~:..+=oooooooo~ |
11
- | .+oo=oo=::....:=oooooo+.. |
12
- | .=ooooo=.::::+ooooo=++. |
13
- | .=ooooo=:+:+ooooo=+:~+. |
14
- | ..:.=ooo=o==+ooooo=+:.::.... |
15
- |.+::.=oooooooooooo+::.........|
16
- | ..:ooooooooo====:.......:. |
17
- | .ooooooooo+++:......... |
18
- | .=ooooo==~~==.+=++==+=+. |
19
- | .=ooo==~:.++.:=+.==+.==. |
20
- | .=oo=:..:+=:=o=.:=+~=+. |
21
- | .~~. ..::~:. ~..~..~ |
22
- | .~ |
23
- +------------------------------+
7
+ +------------------------------+
8
+ | :.. |
9
+ | ~===..=+.++==:.+==+======. |
10
+ | ~oooooooo==~:..+=oooooooo~ |
11
+ | .+oo=oo=::....:=oooooo+.. |
12
+ | .=ooooo=.::::+ooooo=++. |
13
+ | .=ooooo=:+:+ooooo=+:~+. |
14
+ | ..:.=ooo=o==+ooooo=+:.::.... |
15
+ |.+::.=oooooooooooo+::.........|
16
+ | ..:ooooooooo====:.......:. |
17
+ | .ooooooooo+++:......... |
18
+ | .=ooooo==~~==.+=++==+=+. |
19
+ | .=ooo==~:.++.:=+.==+.==. |
20
+ | .=oo=:..:+=:=o=.:=+~=+. |
21
+ | .~~. ..::~:. ~..~..~ |
22
+ | .~ |
23
+ +------------------------------+
24
24
 
25
25
 
26
26
 
@@ -103,4 +103,4 @@
103
103
 
104
104
 
105
105
 
106
- slide 2
106
+ slide 002
@@ -1,11 +1,11 @@
1
- ___ ___ ___ ___ ________ ___ ___ __ ______
2
- / _ \/ _ | / _ \/ _ |/ ___/ _ \/ _ | / _ \/ // / __/
3
- / ___/ __ |/ , _/ __ / (_ / , _/ __ |/ ___/ _ /\ \
4
- /_/ /_/ |_/_/|_/_/ |_\___/_/|_/_/ |_/_/ /_//_/___/
1
+ ___ ___ ___ ___ ________ ___ ___ __ ______
2
+ / _ \/ _ | / _ \/ _ |/ ___/ _ \/ _ | / _ \/ // / __/
3
+ / ___/ __ |/ , _/ __ / (_ / , _/ __ |/ ___/ _ /\ \
4
+ /_/ /_/ |_/_/|_/_/ |_\___/_/|_/_/ |_/_/ /_//_/___/
5
5
 
6
- This is a `paragraph` (plain text)
6
+ This is a `paragraph` (plain text)
7
7
 
8
- This is another paragraph
8
+ This is another paragraph
9
9
 
10
10
 
11
11
 
@@ -87,4 +87,4 @@ This is another paragraph
87
87
 
88
88
 
89
89
 
90
- slide 3
90
+ slide 003
@@ -1,11 +1,11 @@
1
- _ ____ ____ ______ _______ _______ __ ______________
2
- / |/ / / / / |/ / _ )/ __/ _ \/ __/ _ \ / / / _/ __/_ __/
3
- / / /_/ / /|_/ / _ / _// , _/ _// // / / /___/ /_\ \ / /
4
- /_/|_/\____/_/ /_/____/___/_/|_/___/____/ /____/___/___/ /_/
1
+ _ ____ ____ ______ _______ _______ __ ______________
2
+ / |/ / / / / |/ / _ )/ __/ _ \/ __/ _ \ / / / _/ __/_ __/
3
+ / / /_/ / /|_/ / _ / _// , _/ _// // / / /___/ /_\ \ / /
4
+ /_/|_/\____/_/ /_/____/___/_/|_/___/____/ /____/___/___/ /_/
5
5
 
6
- 1. This *is* how a *numbered* list
7
- 2. Looks in **vimdeck**
8
- 3. What do ***you*** think?
6
+ 1. This *is* how a *numbered* list
7
+ 2. Looks in **vimdeck**
8
+ 3. What do ***you*** think?
9
9
 
10
10
 
11
11
 
@@ -85,4 +85,4 @@
85
85
 
86
86
 
87
87
 
88
- slide 4
88
+ slide 004
@@ -1,12 +1,12 @@
1
- ____ __ ____ __ _________________
2
- / __ )/ / / / / / / / ____/_ __/ ___/
3
- / __ / / / / / / / / __/ / / \__ \
4
- / /_/ / /_/ / /___/ /___/ /___ / / ___/ /
5
- /_____/\____/_____/_____/_____/ /_/ /____/
1
+ ____ __ ____ __ _________________
2
+ / __ )/ / / / / / / / ____/_ __/ ___/
3
+ / __ / / / / / / / / __/ / / \__ \
4
+ / /_/ / /_/ / /___/ /___/ /___ / / ___/ /
5
+ /_____/\____/_____/_____/_____/ /_/ /____/
6
6
 
7
- • First
8
- • Second
9
- • Third
7
+ • First
8
+ • Second
9
+ • Third
10
10
 
11
11
 
12
12
 
@@ -88,4 +88,4 @@
88
88
 
89
89
 
90
90
 
91
- slide 5
91
+ slide 005
@@ -1,12 +1,12 @@
1
- ____ __ ____ __ _________________
2
- / __ )/ / / / / / / / ____/_ __/ ___/
3
- / __ / / / / / / / / __/ / / \__ \
4
- / /_/ / /_/ / /___/ /___/ /___ / / ___/ /
5
- /_____/\____/_____/_____/_____/ /_/ /____/
1
+ ____ __ ____ __ _________________
2
+ / __ )/ / / / / / / / ____/_ __/ ___/
3
+ / __ / / / / / / / / __/ / / \__ \
4
+ / /_/ / /_/ / /___/ /___/ /___ / / ___/ /
5
+ /_____/\____/_____/_____/_____/ /_/ /____/
6
6
 
7
- • First
8
- • Second
9
- • Third
7
+ • First
8
+ • Second
9
+ • Third
10
10
 
11
11
 
12
12
 
@@ -88,4 +88,4 @@
88
88
 
89
89
 
90
90
 
91
- slide 6
91
+ slide 006
@@ -1,12 +1,12 @@
1
- ____ __ ____ __ _________________
2
- / __ )/ / / / / / / / ____/_ __/ ___/
3
- / __ / / / / / / / / __/ / / \__ \
4
- / /_/ / /_/ / /___/ /___/ /___ / / ___/ /
5
- /_____/\____/_____/_____/_____/ /_/ /____/
1
+ ____ __ ____ __ _________________
2
+ / __ )/ / / / / / / / ____/_ __/ ___/
3
+ / __ / / / / / / / / __/ / / \__ \
4
+ / /_/ / /_/ / /___/ /___/ /___ / / ___/ /
5
+ /_____/\____/_____/_____/_____/ /_/ /____/
6
6
 
7
- • First
8
- • Second
9
- • Third
7
+ • First
8
+ • Second
9
+ • Third
10
10
 
11
11
 
12
12
 
@@ -88,4 +88,4 @@
88
88
 
89
89
 
90
90
 
91
- slide 7
91
+ slide 007
@@ -1,19 +1,19 @@
1
- _________ ___ ____
2
- / ___/ __ \/ _ \/ __/
3
- / /__/ /_/ / // / _/
4
- \___/\____/____/___/
1
+ _________ ___ ____
2
+ / ___/ __ \/ _ \/ __/
3
+ / /__/ /_/ / // / _/
4
+ \___/\____/____/___/
5
5
 
6
- module Parts
7
- class foo
8
- def slide
9
- "of a"
10
- end
6
+ module Parts
7
+ class foo
8
+ def slide
9
+ "of a"
10
+ end
11
11
 
12
- def can
13
- highlight = "vimdeck"
14
- end
15
- end
16
- end
12
+ def can
13
+ highlight = "vimdeck"
14
+ end
15
+ end
16
+ end
17
17
 
18
18
 
19
19
 
@@ -94,4 +94,4 @@ end
94
94
 
95
95
 
96
96
 
97
- slide 8
97
+ slide 008
@@ -1,19 +1,19 @@
1
- _________ ___ ____
2
- / ___/ __ \/ _ \/ __/
3
- / /__/ /_/ / // / _/
4
- \___/\____/____/___/
1
+ _________ ___ ____
2
+ / ___/ __ \/ _ \/ __/
3
+ / /__/ /_/ / // / _/
4
+ \___/\____/____/___/
5
5
 
6
- module Parts
7
- class foo
8
- def slide
9
- "of a"
10
- end
6
+ module Parts
7
+ class foo
8
+ def slide
9
+ "of a"
10
+ end
11
11
 
12
- def can
13
- highlight = "vimdeck"
14
- end
15
- end
16
- end
12
+ def can
13
+ highlight = "vimdeck"
14
+ end
15
+ end
16
+ end
17
17
 
18
18
 
19
19
 
@@ -94,4 +94,4 @@ end
94
94
 
95
95
 
96
96
 
97
- slide 9
97
+ slide 009
@@ -1,19 +1,19 @@
1
- _________ ___ ____
2
- / ___/ __ \/ _ \/ __/
3
- / /__/ /_/ / // / _/
4
- \___/\____/____/___/
1
+ _________ ___ ____
2
+ / ___/ __ \/ _ \/ __/
3
+ / /__/ /_/ / // / _/
4
+ \___/\____/____/___/
5
5
 
6
- module Parts
7
- class foo
8
- def slide
9
- "of a"
10
- end
6
+ module Parts
7
+ class foo
8
+ def slide
9
+ "of a"
10
+ end
11
11
 
12
- def can
13
- highlight = "vimdeck"
14
- end
15
- end
16
- end
12
+ def can
13
+ highlight = "vimdeck"
14
+ end
15
+ end
16
+ end
17
17
 
18
18
 
19
19
 
@@ -94,4 +94,4 @@ end
94
94
 
95
95
 
96
96
 
97
- slide 10
97
+ slide 010
@@ -1,19 +1,19 @@
1
- _________ ___ ____
2
- / ___/ __ \/ _ \/ __/
3
- / /__/ /_/ / // / _/
4
- \___/\____/____/___/
1
+ _________ ___ ____
2
+ / ___/ __ \/ _ \/ __/
3
+ / /__/ /_/ / // / _/
4
+ \___/\____/____/___/
5
5
 
6
- module Parts
7
- class foo
8
- def slide
9
- "of a"
10
- end
6
+ module Parts
7
+ class foo
8
+ def slide
9
+ "of a"
10
+ end
11
11
 
12
- def can
13
- highlight = "vimdeck"
14
- end
15
- end
16
- end
12
+ def can
13
+ highlight = "vimdeck"
14
+ end
15
+ end
16
+ end
17
17
 
18
18
 
19
19
 
@@ -94,4 +94,4 @@ end
94
94
 
95
95
 
96
96
 
97
- slide 11
97
+ slide 011
@@ -1,19 +1,19 @@
1
- _________ ___ ____
2
- / ___/ __ \/ _ \/ __/
3
- / /__/ /_/ / // / _/
4
- \___/\____/____/___/
1
+ _________ ___ ____
2
+ / ___/ __ \/ _ \/ __/
3
+ / /__/ /_/ / // / _/
4
+ \___/\____/____/___/
5
5
 
6
- module Parts
7
- class foo
8
- def slide
9
- "of a"
10
- end
6
+ module Parts
7
+ class foo
8
+ def slide
9
+ "of a"
10
+ end
11
11
 
12
- def can
13
- highlight = "vimdeck"
14
- end
15
- end
16
- end
12
+ def can
13
+ highlight = "vimdeck"
14
+ end
15
+ end
16
+ end
17
17
 
18
18
 
19
19
 
@@ -94,4 +94,4 @@ end
94
94
 
95
95
 
96
96
 
97
- slide 12
97
+ slide 012
@@ -1,19 +1,19 @@
1
- _________ ___ ____
2
- / ___/ __ \/ _ \/ __/
3
- / /__/ /_/ / // / _/
4
- \___/\____/____/___/
1
+ _________ ___ ____
2
+ / ___/ __ \/ _ \/ __/
3
+ / /__/ /_/ / // / _/
4
+ \___/\____/____/___/
5
5
 
6
- module Parts
7
- class foo
8
- def slide
9
- "of a"
10
- end
6
+ module Parts
7
+ class foo
8
+ def slide
9
+ "of a"
10
+ end
11
11
 
12
- def can
13
- highlight = "vimdeck"
14
- end
15
- end
16
- end
12
+ def can
13
+ highlight = "vimdeck"
14
+ end
15
+ end
16
+ end
17
17
 
18
18
 
19
19
 
@@ -94,4 +94,4 @@ end
94
94
 
95
95
 
96
96
 
97
- slide 13
97
+ slide 013
@@ -1,19 +1,19 @@
1
- _________ ___ ____
2
- / ___/ __ \/ _ \/ __/
3
- / /__/ /_/ / // / _/
4
- \___/\____/____/___/
1
+ _________ ___ ____
2
+ / ___/ __ \/ _ \/ __/
3
+ / /__/ /_/ / // / _/
4
+ \___/\____/____/___/
5
5
 
6
- module Parts
7
- class foo
8
- def slide
9
- "of a"
10
- end
6
+ module Parts
7
+ class foo
8
+ def slide
9
+ "of a"
10
+ end
11
11
 
12
- def can
13
- highlight = "vimdeck"
14
- end
15
- end
16
- end
12
+ def can
13
+ highlight = "vimdeck"
14
+ end
15
+ end
16
+ end
17
17
 
18
18
 
19
19
 
@@ -94,4 +94,4 @@ end
94
94
 
95
95
 
96
96
 
97
- slide 14
97
+ slide 014
@@ -1,8 +1,8 @@
1
- ________ ______ ____
2
- /_ __/ /_ ___ / ____/___ ____/ / /
3
- / / / __ \/ _ \ / __/ / __ \/ __ / /
4
- / / / / / / __/ / /___/ / / / /_/ /_/
5
- /_/ /_/ /_/\___/ /_____/_/ /_/\__,_(_)
1
+ ________ ______ ____
2
+ /_ __/ /_ ___ / ____/___ ____/ / /
3
+ / / / __ \/ _ \ / __/ / __ \/ __ / /
4
+ / / / / / / __/ / /___/ / / / /_/ /_/
5
+ /_/ /_/ /_/\___/ /_____/_/ /_/\__,_(_)
6
6
 
7
7
 
8
8
 
@@ -84,4 +84,4 @@
84
84
 
85
85
 
86
86
 
87
- slide 15
87
+ slide 015
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vimdeck
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: