vimdeck 0.3.1 → 0.3.2
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bin/vimdeck +7 -2
- data/bin/vimdeck-without-ascii-art +7 -2
- data/lib/vimdeck.rb +9 -1
- data/presentation/script.vim +20 -18
- data/presentation/slide001.md +10 -10
- data/presentation/slide002.md +23 -23
- data/presentation/slide003.md +6 -6
- data/presentation/slide004.md +8 -8
- data/presentation/slide005.md +9 -9
- data/presentation/slide006.md +9 -9
- data/presentation/slide007.md +9 -9
- data/presentation/slide008.md +16 -16
- data/presentation/slide009.md +16 -16
- data/presentation/slide010.md +16 -16
- data/presentation/slide011.md +16 -16
- data/presentation/slide012.md +16 -16
- data/presentation/slide013.md +16 -16
- data/presentation/slide014.md +16 -16
- data/presentation/slide015.md +14 -14
- data/presentation/slide016.md +14 -14
- data/presentation/slide017.md +14 -14
- data/presentation/slide018.md +14 -14
- data/presentation/slide019.md +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af6066687637d463191d0a6506c4e4b3e9728f49
|
4
|
+
data.tar.gz: 0c1878fb9b7d2b6648cd20e2b4e065633498ce87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a8fd1fecc6908a731ce71b730d0004dca99c3874f80f6364e18ce8538d02cb047596cbbbe3fffb9763136c1427509a129aca75c218679d456ad80067e4331f5
|
7
|
+
data.tar.gz: 8f68fe7914e4b44c928b6f7aa100e974c30ddf7ce33db1b3a9baff56c9c8dcb8d8ba0df2182827cc507d8987faa7b713546f4009057d7d2e6d9e7dfa756b8fd8
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.2
|
data/bin/vimdeck
CHANGED
@@ -13,10 +13,11 @@
|
|
13
13
|
#> --no-indent, -I skip indentation
|
14
14
|
#> --no-ascii, -A skip ascii headers
|
15
15
|
#> --no-filetype, -n use vim's plaintext syntax highlighting
|
16
|
-
#> --header-margin, -
|
16
|
+
#> --header-margin, -M bottom margin for headers. default: 1
|
17
17
|
#> --header-font, -h specify header font (http://www.figlet.org/fontdb.cgi)
|
18
18
|
#> foregoes the ability to have small and large headers
|
19
19
|
#> --editor, -e specify editor to use (e.g., vim, mvim)
|
20
|
+
#> --padding, -p specify how much left padding is needed. default: 1
|
20
21
|
|
21
22
|
require "optparse"
|
22
23
|
if ENV["VIMDECK_DEBUG"]
|
@@ -62,7 +63,7 @@ opt_parser = OptionParser.new do |opt|
|
|
62
63
|
options[:no_filetype] = true
|
63
64
|
end
|
64
65
|
|
65
|
-
opt.on("-
|
66
|
+
opt.on("-M", "--header-margin NUMBER", Numeric) do |option|
|
66
67
|
options[:header_margin] = option
|
67
68
|
end
|
68
69
|
|
@@ -77,6 +78,10 @@ opt_parser = OptionParser.new do |opt|
|
|
77
78
|
raise "Not a valid editor: #{option}"
|
78
79
|
end
|
79
80
|
end
|
81
|
+
|
82
|
+
opt.on("-p", "--padding NUMBER", Numeric) do |option|
|
83
|
+
options[:padding] = option
|
84
|
+
end
|
80
85
|
end
|
81
86
|
|
82
87
|
opt_parser.parse!
|
@@ -13,10 +13,11 @@
|
|
13
13
|
#> --no-indent, -I skip indentation
|
14
14
|
#> --no-ascii, -A skip ascii headers
|
15
15
|
#> --no-filetype, -n use vim's plaintext syntax highlighting
|
16
|
-
#> --header-margin, -
|
16
|
+
#> --header-margin, -M bottom margin for headers. default: 1
|
17
17
|
#> --header-font, -h specify header font (http://www.figlet.org/fontdb.cgi)
|
18
18
|
#> foregoes the ability to have small and large headers
|
19
19
|
#> --editor, -e specify editor to use (e.g., vim, mvim)
|
20
|
+
#> --padding, -p specify how much left padding is needed. default: 1
|
20
21
|
|
21
22
|
require "optparse"
|
22
23
|
if ENV["VIMDECK_DEBUG"]
|
@@ -62,7 +63,7 @@ opt_parser = OptionParser.new do |opt|
|
|
62
63
|
options[:no_filetype] = true
|
63
64
|
end
|
64
65
|
|
65
|
-
opt.on("-
|
66
|
+
opt.on("-M", "--header-margin NUMBER", Numeric) do |option|
|
66
67
|
options[:header_margin] = option
|
67
68
|
end
|
68
69
|
|
@@ -77,6 +78,10 @@ opt_parser = OptionParser.new do |opt|
|
|
77
78
|
raise "Not a valid editor: #{option}"
|
78
79
|
end
|
79
80
|
end
|
81
|
+
|
82
|
+
opt.on("-p", "--padding NUMBER", Numeric) do |option|
|
83
|
+
options[:padding] = option
|
84
|
+
end
|
80
85
|
end
|
81
86
|
|
82
87
|
opt_parser.parse!
|
data/lib/vimdeck.rb
CHANGED
@@ -136,7 +136,15 @@ module Vimdeck
|
|
136
136
|
end
|
137
137
|
|
138
138
|
def self.slide_padding
|
139
|
-
|
139
|
+
padding = " "
|
140
|
+
|
141
|
+
if @options[:no_indent]
|
142
|
+
padding = ""
|
143
|
+
elsif @options[:padding]
|
144
|
+
padding *= @options[:padding]
|
145
|
+
end
|
146
|
+
|
147
|
+
padding
|
140
148
|
end
|
141
149
|
|
142
150
|
def self.script_template
|
data/presentation/script.vim
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
set nonumber
|
2
2
|
set nofoldenable
|
3
|
+
set nocursorcolumn
|
4
|
+
set nocursorline
|
3
5
|
if exists('+relativenumber')
|
4
6
|
set norelativenumber
|
5
7
|
end
|
@@ -17,51 +19,51 @@ b 2
|
|
17
19
|
b 3
|
18
20
|
b 4
|
19
21
|
b 5
|
20
|
-
call matchadd("Comment", "\\n
|
22
|
+
call matchadd("Comment", "\\n• Second\\n• Third\\(\\_.*slide 005\\)\\@=")
|
21
23
|
b 6
|
22
24
|
call matchadd("Comment", "• First\\(\\_.*slide 006\\)\\@=")
|
23
|
-
call matchadd("Comment", "\\n
|
25
|
+
call matchadd("Comment", "\\n• Third\\(\\_.*slide 006\\)\\@=")
|
24
26
|
b 7
|
25
|
-
call matchadd("Comment", "• First\\n
|
27
|
+
call matchadd("Comment", "• First\\n• Second\\(\\_.*slide 007\\)\\@=")
|
26
28
|
b 8
|
27
29
|
6,17SyntaxInclude ruby
|
28
30
|
b 9
|
29
31
|
6,17SyntaxInclude ruby
|
30
|
-
call matchadd("Comment", "module Parts\\n
|
31
|
-
call matchadd("Comment", "\\n
|
32
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\n highlight = \\(\\_.*slide 009\\)\\@=")
|
33
|
+
call matchadd("Comment", "\\n end\\n end\\nend\\(\\_.*slide 009\\)\\@=")
|
32
34
|
b 10
|
33
35
|
6,17SyntaxInclude ruby
|
34
|
-
call matchadd("Comment", "module Parts\\n
|
35
|
-
call matchadd("Comment", "highlight = \"vimdeck\"\\n
|
36
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def\\(\\_.*slide 010\\)\\@=")
|
37
|
+
call matchadd("Comment", "highlight = \"vimdeck\"\\n end\\n end\\nend\\(\\_.*slide 010\\)\\@=")
|
36
38
|
b 11
|
37
39
|
6,17SyntaxInclude ruby
|
38
|
-
call matchadd("Comment", "module Parts\\n
|
39
|
-
call matchadd("Comment", "= \"vimdeck\"\\n
|
40
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\(\\_.*slide 011\\)\\@=")
|
41
|
+
call matchadd("Comment", "= \"vimdeck\"\\n end\\n end\\nend\\(\\_.*slide 011\\)\\@=")
|
40
42
|
b 12
|
41
43
|
6,17SyntaxInclude ruby
|
42
44
|
call matchadd("Comment", "module\\(\\_.*slide 012\\)\\@=")
|
43
|
-
call matchadd("Comment", "class foo\\n
|
45
|
+
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 012\\)\\@=")
|
44
46
|
b 13
|
45
47
|
6,17SyntaxInclude ruby
|
46
|
-
call matchadd("Comment", "module Parts\\n
|
47
|
-
call matchadd("Comment", "end\\n\\n
|
48
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def slide\\(\\_.*slide 013\\)\\@=")
|
49
|
+
call matchadd("Comment", "end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\nend\\(\\_.*slide 013\\)\\@=")
|
48
50
|
b 14
|
49
51
|
6,17SyntaxInclude ruby
|
50
|
-
call matchadd("Comment", "module Parts\\n
|
51
|
-
call matchadd("Comment", "\"of a\"\\n
|
52
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def\\(\\_.*slide 014\\)\\@=")
|
53
|
+
call matchadd("Comment", "\"of a\"\\n end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\nend\\(\\_.*slide 014\\)\\@=")
|
52
54
|
b 15
|
53
55
|
6,16SyntaxInclude javascript
|
54
56
|
b 16
|
55
57
|
6,16SyntaxInclude javascript
|
56
|
-
call matchadd("Comment", "(function( window, $, undefined ) {\\n
|
57
|
-
call matchadd("Comment", "\\n
|
58
|
+
call matchadd("Comment", "(function( window, $, undefined ) {\\n $( '.hello' ).on( 'click', function sayHello() {\\(\\_.*slide 016\\)\\@=")
|
59
|
+
call matchadd("Comment", "\\n });\\n})( window, jQuery );\\(\\_.*slide 016\\)\\@=")
|
58
60
|
b 17
|
59
61
|
6,16SyntaxInclude javascript
|
60
62
|
call matchadd("Comment", "<body>\\(\\_.*slide 017\\)\\@=")
|
61
63
|
call matchadd("Comment", "</body>\\(\\_.*slide 017\\)\\@=")
|
62
64
|
b 18
|
63
65
|
6,16SyntaxInclude javascript
|
64
|
-
call matchadd("Comment", "(function( window, $, undefined ) {\\n
|
65
|
-
call matchadd("Comment", "\\n
|
66
|
+
call matchadd("Comment", "(function( window, $, undefined ) {\\n $( '.hello' ).on( 'click', function sayHello() {\\(\\_.*slide 018\\)\\@=")
|
67
|
+
call matchadd("Comment", "\\n });\\n})( window, jQuery );\\n\\n<body>\\n <a href=\"#\" class=\"hello\">Hello!</a>\\n</body>\\(\\_.*slide 018\\)\\@=")
|
66
68
|
b 19
|
67
69
|
b 1
|
data/presentation/slide001.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
1
|
+
_ ________ _______ ______________ __
|
2
|
+
| | / / _/ |/ / __ \/ ____/ ____/ //_/
|
3
|
+
| | / // // /|_/ / / / / __/ / / / ,<
|
4
|
+
| |/ // // / / / /_/ / /___/ /___/ /| |
|
5
|
+
|___/___/_/ /_/_____/_____/\____/_/ |_|
|
6
|
+
|
7
|
+
___ __ _____ ____ ___ _ ______________ __ _______
|
8
|
+
/ _ \/ / / / _ \/ __/ / _ | | /| / / __/ __/ __ \/ |/ / __/
|
9
|
+
/ ___/ /_/ / , _/ _/ / __ | |/ |/ / _/_\ \/ /_/ / /|_/ / _/
|
10
|
+
/_/ \____/_/|_/___/ /_/ |_|__/|__/___/___/\____/_/ /_/___/
|
11
11
|
|
12
12
|
|
13
13
|
|
data/presentation/slide002.md
CHANGED
@@ -1,26 +1,26 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
1
|
+
_ ________ ___ ____ ____ ________ _______ __
|
2
|
+
| | / / _/ |/ / / __ \/ __ \/ ____/ //_/ ___// /
|
3
|
+
| | / // // /|_/ / / /_/ / / / / / / ,< \__ \/ /
|
4
|
+
| |/ // // / / / / _, _/ /_/ / /___/ /| |___/ /_/
|
5
|
+
|___/___/_/ /_/ /_/ |_|\____/\____/_/ |_/____(_)
|
6
|
+
|
7
|
+
+------------------------------+
|
8
|
+
|~~~~~~~~~~~~~~~.~~~~~~~~~~~~~~|
|
9
|
+
|~~~+~ :~~:..::~~~~~ :==.:~~:.~|
|
10
|
+
|~~~+::++:::::~~~ .::++++~~::+~|
|
11
|
+
|~~~~ :++::::.... .:++++~~. +~|
|
12
|
+
|~~~~~+++++::. .:+++++:~~+~~~|
|
13
|
+
|~~~~.++++++: .:+++++::.+=~~~~|
|
14
|
+
|~~.~~++++++:~:+++++::. :~~~+~|
|
15
|
+
|+~~~~:+++++:+++++::. ..~.. ~+|
|
16
|
+
|~+~~.+++:++++++::~ . .~~~|
|
17
|
+
|~~~~~+++++++++~~~ .~+~~~|
|
18
|
+
|~~~~++++++++:. :~ :::::~:+:.~~|
|
19
|
+
|~~~~+++++::. :~ .+~ ::~~::~~~|
|
20
|
+
|~~~~++++::. :+.:++ ~::~~:.~~~|
|
21
|
+
|~~~~~+ ++~~+~.. ::~~+.. ~ ~~~|
|
22
|
+
|~~~~~~~~~~~~~~+ ~~~~~~~~~~~~~~|
|
23
|
+
+------------------------------+
|
24
24
|
|
25
25
|
|
26
26
|
|
data/presentation/slide003.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
___ ___ ___ ___ ________ ___ ___ __ ______
|
2
|
+
/ _ \/ _ | / _ \/ _ |/ ___/ _ \/ _ | / _ \/ // / __/
|
3
|
+
/ ___/ __ |/ , _/ __ / (_ / , _/ __ |/ ___/ _ /\ \
|
4
|
+
/_/ /_/ |_/_/|_/_/ |_\___/_/|_/_/ |_/_/ /_//_/___/
|
5
5
|
|
6
|
-
|
6
|
+
This is a `paragraph` (plain text)
|
7
7
|
|
8
|
-
|
8
|
+
This is another paragraph
|
9
9
|
|
10
10
|
|
11
11
|
|
data/presentation/slide004.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
1
|
+
_ ____ ____ ______ _______ _______ __ ______________
|
2
|
+
/ |/ / / / / |/ / _ )/ __/ _ \/ __/ _ \ / / / _/ __/_ __/
|
3
|
+
/ / /_/ / /|_/ / _ / _// , _/ _// // / / /___/ /_\ \ / /
|
4
|
+
/_/|_/\____/_/ /_/____/___/_/|_/___/____/ /____/___/___/ /_/
|
5
|
+
|
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
|
|
data/presentation/slide005.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
____ __ ____ __ _________________
|
2
|
+
/ __ )/ / / / / / / / ____/_ __/ ___/
|
3
|
+
/ __ / / / / / / / / __/ / / \__ \
|
4
|
+
/ /_/ / /_/ / /___/ /___/ /___ / / ___/ /
|
5
|
+
/_____/\____/_____/_____/_____/ /_/ /____/
|
6
|
+
|
7
|
+
• First
|
8
|
+
• Second
|
9
|
+
• Third
|
10
10
|
|
11
11
|
|
12
12
|
|
data/presentation/slide006.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
____ __ ____ __ _________________
|
2
|
+
/ __ )/ / / / / / / / ____/_ __/ ___/
|
3
|
+
/ __ / / / / / / / / __/ / / \__ \
|
4
|
+
/ /_/ / /_/ / /___/ /___/ /___ / / ___/ /
|
5
|
+
/_____/\____/_____/_____/_____/ /_/ /____/
|
6
|
+
|
7
|
+
• First
|
8
|
+
• Second
|
9
|
+
• Third
|
10
10
|
|
11
11
|
|
12
12
|
|
data/presentation/slide007.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
____ __ ____ __ _________________
|
2
|
+
/ __ )/ / / / / / / / ____/_ __/ ___/
|
3
|
+
/ __ / / / / / / / / __/ / / \__ \
|
4
|
+
/ /_/ / /_/ / /___/ /___/ /___ / / ___/ /
|
5
|
+
/_____/\____/_____/_____/_____/ /_/ /____/
|
6
|
+
|
7
|
+
• First
|
8
|
+
• Second
|
9
|
+
• Third
|
10
10
|
|
11
11
|
|
12
12
|
|
data/presentation/slide008.md
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
1
|
+
_________ ___ ____
|
2
|
+
/ ___/ __ \/ _ \/ __/
|
3
|
+
/ /__/ /_/ / // / _/
|
4
|
+
\___/\____/____/___/
|
5
|
+
|
6
|
+
module Parts
|
7
|
+
class foo
|
8
|
+
def slide
|
9
|
+
"of a"
|
10
|
+
end
|
11
|
+
|
12
|
+
def can
|
13
|
+
highlight = "vimdeck"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
17
|
|
18
18
|
|
19
19
|
|
data/presentation/slide009.md
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
1
|
+
_________ ___ ____
|
2
|
+
/ ___/ __ \/ _ \/ __/
|
3
|
+
/ /__/ /_/ / // / _/
|
4
|
+
\___/\____/____/___/
|
5
|
+
|
6
|
+
module Parts
|
7
|
+
class foo
|
8
|
+
def slide
|
9
|
+
"of a"
|
10
|
+
end
|
11
|
+
|
12
|
+
def can
|
13
|
+
highlight = "vimdeck"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
17
|
|
18
18
|
|
19
19
|
|
data/presentation/slide010.md
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
1
|
+
_________ ___ ____
|
2
|
+
/ ___/ __ \/ _ \/ __/
|
3
|
+
/ /__/ /_/ / // / _/
|
4
|
+
\___/\____/____/___/
|
5
|
+
|
6
|
+
module Parts
|
7
|
+
class foo
|
8
|
+
def slide
|
9
|
+
"of a"
|
10
|
+
end
|
11
|
+
|
12
|
+
def can
|
13
|
+
highlight = "vimdeck"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
17
|
|
18
18
|
|
19
19
|
|
data/presentation/slide011.md
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
1
|
+
_________ ___ ____
|
2
|
+
/ ___/ __ \/ _ \/ __/
|
3
|
+
/ /__/ /_/ / // / _/
|
4
|
+
\___/\____/____/___/
|
5
|
+
|
6
|
+
module Parts
|
7
|
+
class foo
|
8
|
+
def slide
|
9
|
+
"of a"
|
10
|
+
end
|
11
|
+
|
12
|
+
def can
|
13
|
+
highlight = "vimdeck"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
17
|
|
18
18
|
|
19
19
|
|
data/presentation/slide012.md
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
1
|
+
_________ ___ ____
|
2
|
+
/ ___/ __ \/ _ \/ __/
|
3
|
+
/ /__/ /_/ / // / _/
|
4
|
+
\___/\____/____/___/
|
5
|
+
|
6
|
+
module Parts
|
7
|
+
class foo
|
8
|
+
def slide
|
9
|
+
"of a"
|
10
|
+
end
|
11
|
+
|
12
|
+
def can
|
13
|
+
highlight = "vimdeck"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
17
|
|
18
18
|
|
19
19
|
|
data/presentation/slide013.md
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
1
|
+
_________ ___ ____
|
2
|
+
/ ___/ __ \/ _ \/ __/
|
3
|
+
/ /__/ /_/ / // / _/
|
4
|
+
\___/\____/____/___/
|
5
|
+
|
6
|
+
module Parts
|
7
|
+
class foo
|
8
|
+
def slide
|
9
|
+
"of a"
|
10
|
+
end
|
11
|
+
|
12
|
+
def can
|
13
|
+
highlight = "vimdeck"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
17
|
|
18
18
|
|
19
19
|
|
data/presentation/slide014.md
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
1
|
+
_________ ___ ____
|
2
|
+
/ ___/ __ \/ _ \/ __/
|
3
|
+
/ /__/ /_/ / // / _/
|
4
|
+
\___/\____/____/___/
|
5
|
+
|
6
|
+
module Parts
|
7
|
+
class foo
|
8
|
+
def slide
|
9
|
+
"of a"
|
10
|
+
end
|
11
|
+
|
12
|
+
def can
|
13
|
+
highlight = "vimdeck"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
17
|
|
18
18
|
|
19
19
|
|
data/presentation/slide015.md
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
1
|
+
_________ ___ ____ ___ ______ ___
|
2
|
+
/ ___/ __ \/ _ \/ __/ / _ \_ __/ |_ |
|
3
|
+
/ /__/ /_/ / // / _/ / ___// / / __/
|
4
|
+
\___/\____/____/___/ /_/ /_/ /____/
|
5
|
+
|
6
|
+
(function( window, $, undefined ) {
|
7
|
+
$( '.hello' ).on( 'click', function sayHello() {
|
8
|
+
alert( 'Why, hello there!' );
|
9
|
+
});
|
10
|
+
})( window, jQuery );
|
11
|
+
|
12
|
+
<body>
|
13
|
+
<a href="#" class="hello">Hello!</a>
|
14
|
+
</body>
|
15
15
|
|
16
16
|
|
17
17
|
|
data/presentation/slide016.md
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
1
|
+
_________ ___ ____ ___ ______ ___
|
2
|
+
/ ___/ __ \/ _ \/ __/ / _ \_ __/ |_ |
|
3
|
+
/ /__/ /_/ / // / _/ / ___// / / __/
|
4
|
+
\___/\____/____/___/ /_/ /_/ /____/
|
5
|
+
|
6
|
+
(function( window, $, undefined ) {
|
7
|
+
$( '.hello' ).on( 'click', function sayHello() {
|
8
|
+
alert( 'Why, hello there!' );
|
9
|
+
});
|
10
|
+
})( window, jQuery );
|
11
|
+
|
12
|
+
<body>
|
13
|
+
<a href="#" class="hello">Hello!</a>
|
14
|
+
</body>
|
15
15
|
|
16
16
|
|
17
17
|
|
data/presentation/slide017.md
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
1
|
+
_________ ___ ____ ___ ______ ___
|
2
|
+
/ ___/ __ \/ _ \/ __/ / _ \_ __/ |_ |
|
3
|
+
/ /__/ /_/ / // / _/ / ___// / / __/
|
4
|
+
\___/\____/____/___/ /_/ /_/ /____/
|
5
|
+
|
6
|
+
(function( window, $, undefined ) {
|
7
|
+
$( '.hello' ).on( 'click', function sayHello() {
|
8
|
+
alert( 'Why, hello there!' );
|
9
|
+
});
|
10
|
+
})( window, jQuery );
|
11
|
+
|
12
|
+
<body>
|
13
|
+
<a href="#" class="hello">Hello!</a>
|
14
|
+
</body>
|
15
15
|
|
16
16
|
|
17
17
|
|
data/presentation/slide018.md
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
1
|
+
_________ ___ ____ ___ ______ ___
|
2
|
+
/ ___/ __ \/ _ \/ __/ / _ \_ __/ |_ |
|
3
|
+
/ /__/ /_/ / // / _/ / ___// / / __/
|
4
|
+
\___/\____/____/___/ /_/ /_/ /____/
|
5
|
+
|
6
|
+
(function( window, $, undefined ) {
|
7
|
+
$( '.hello' ).on( 'click', function sayHello() {
|
8
|
+
alert( 'Why, hello there!' );
|
9
|
+
});
|
10
|
+
})( window, jQuery );
|
11
|
+
|
12
|
+
<body>
|
13
|
+
<a href="#" class="hello">Hello!</a>
|
14
|
+
</body>
|
15
15
|
|
16
16
|
|
17
17
|
|
data/presentation/slide019.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
________ ______ ____
|
2
|
+
/_ __/ /_ ___ / ____/___ ____/ / /
|
3
|
+
/ / / __ \/ _ \ / __/ / __ \/ __ / /
|
4
|
+
/ / / / / / __/ / /___/ / / / /_/ /_/
|
5
|
+
/_/ /_/ /_/\___/ /_____/_/ /_/\__,_(_)
|
6
6
|
|
7
7
|
|
8
8
|
|
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.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tyler Benziger
|
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
117
117
|
version: '0'
|
118
118
|
requirements: []
|
119
119
|
rubyforge_project:
|
120
|
-
rubygems_version: 2.0.14
|
120
|
+
rubygems_version: 2.0.14.1
|
121
121
|
signing_key:
|
122
122
|
specification_version: 4
|
123
123
|
summary: VIMDECK
|