vimdeck 0.3.2 → 0.3.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: af6066687637d463191d0a6506c4e4b3e9728f49
4
- data.tar.gz: 0c1878fb9b7d2b6648cd20e2b4e065633498ce87
3
+ metadata.gz: d38ae41dbbebd39336c875eeabcf103dffee8e1b
4
+ data.tar.gz: 459a01fb53299368fff96693fa61349aadaef82e
5
5
  SHA512:
6
- metadata.gz: 7a8fd1fecc6908a731ce71b730d0004dca99c3874f80f6364e18ce8538d02cb047596cbbbe3fffb9763136c1427509a129aca75c218679d456ad80067e4331f5
7
- data.tar.gz: 8f68fe7914e4b44c928b6f7aa100e974c30ddf7ce33db1b3a9baff56c9c8dcb8d8ba0df2182827cc507d8987faa7b713546f4009057d7d2e6d9e7dfa756b8fd8
6
+ metadata.gz: aba1f74eed97b9d13d146ebd64950cbddd70978e1a8f2e02383792957b69251243b0c77551acf621b855c21f49a2bbad3f8f71b61088f1c32e30cfd479793908
7
+ data.tar.gz: bf54f649c77afe16c8cd192ed88b10e69a4b8dc296f5d76d546d4e21a31ce3fe4518b6379abea2206d3480d2b4d8dad83c192e662f0ca302f64d1e82c2b0bfec
data/README.md CHANGED
@@ -23,6 +23,14 @@ gem install vimdeck
23
23
 
24
24
  If you have problems getting RMagick to install, try installing [ImageMagick](http://www.imagemagick.org/) explicitly first. You may also need [MagickWand](http://www.imagemagick.org/script/magick-wand.php) and Ruby Development tools (libmagickwand-dev and ruby-dev respectively on Ubuntu).
25
25
 
26
+ **Note:** if you're on Mac OS Sierra, you may need to run the following command to get RMagick/vimdeck to install:
27
+
28
+ ```
29
+ brew install imagemagick@6
30
+ brew link imagemagick@6 --force
31
+ gem install vimdeck
32
+ ```
33
+
26
34
 
27
35
  ## Usage
28
36
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.2
1
+ 0.3.3
@@ -1,7 +1,9 @@
1
+ set nolist
1
2
  set nonumber
2
3
  set nofoldenable
3
4
  set nocursorcolumn
4
5
  set nocursorline
6
+ set colorcolumn=0
5
7
  if exists('+relativenumber')
6
8
  set norelativenumber
7
9
  end
@@ -7,6 +7,10 @@ if exists('+relativenumber')
7
7
  end
8
8
  set hidden
9
9
 
10
+ argdo set filetype=txt
11
+ set filetype=txt
12
+ filetype off
13
+
10
14
 
11
15
  noremap <PageUp> :bp<CR>
12
16
  noremap <Left> :bp<CR>
@@ -4,10 +4,11 @@
4
4
  | |/ // // / / / /_/ / /___/ /___/ /| |
5
5
  |___/___/_/ /_/_____/_____/\____/_/ |_|
6
6
 
7
- ___ __ _____ ____ ___ _ ______________ __ _______
8
- / _ \/ / / / _ \/ __/ / _ | | /| / / __/ __/ __ \/ |/ / __/
9
- / ___/ /_/ / , _/ _/ / __ | |/ |/ / _/_\ \/ /_/ / /|_/ / _/
10
- /_/ \____/_/|_/___/ /_/ |_|__/|__/___/___/\____/_/ /_/___/
7
+ ____ __ ______ ______ ___ _ _____________ ____ __ _________
8
+ / __ \/ / / / __ \/ ____/ / | | / / ____/ ___// __ \/ |/ / ____/
9
+ / /_/ / / / / /_/ / __/ / /| | | /| / / __/ \__ \/ / / / /|_/ / __/
10
+ / ____/ /_/ / _, _/ /___ / ___ | |/ |/ / /___ ___/ / /_/ / / / / /___
11
+ /_/ \____/_/ |_/_____/ /_/ |_|__/|__/_____//____/\____/_/ /_/_____/
11
12
 
12
13
 
13
14
 
@@ -0,0 +1,92 @@
1
+ _ ________ _______ ______________ __
2
+ | | / / _/ |/ / __ \/ ____/ ____/ //_/
3
+ | | / // // /|_/ / / / / __/ / / / ,<
4
+ | |/ // // / / / /_/ / /___/ /___/ /| |
5
+ |___/___/_/ /_/_____/_____/\____/_/ |_|
6
+
7
+ ___ __ _____ ____ ___ _ ______________ __ _______
8
+ / _ \/ / / / _ \/ __/ / _ | | /| / / __/ __/ __ \/ |/ / __/
9
+ / ___/ /_/ / , _/ _/ / __ | |/ |/ / _/_\ \/ /_/ / /|_/ / _/
10
+ /_/ \____/_/|_/___/ /_/ |_|__/|__/___/___/\____/_/ /_/___/
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+ slide 001
@@ -5,21 +5,21 @@
5
5
  |___/___/_/ /_/ /_/ |_|\____/\____/_/ |_/____(_)
6
6
 
7
7
  +------------------------------+
8
- |~~~~~~~~~~~~~~~.~~~~~~~~~~~~~~|
9
- |~~~+~ :~~:..::~~~~~ :==.:~~:.~|
10
- |~~~+::++:::::~~~ .::++++~~::+~|
11
- |~~~~ :++::::.... .:++++~~. +~|
12
- |~~~~~+++++::. .:+++++:~~+~~~|
13
- |~~~~.++++++: .:+++++::.+=~~~~|
14
- |~~.~~++++++:~:+++++::. :~~~+~|
15
- |+~~~~:+++++:+++++::. ..~.. ~+|
16
- |~+~~.+++:++++++::~ . .~~~|
17
- |~~~~~+++++++++~~~ .~+~~~|
18
- |~~~~++++++++:. :~ :::::~:+:.~~|
19
- |~~~~+++++::. :~ .+~ ::~~::~~~|
20
- |~~~~++++::. :+.:++ ~::~~:.~~~|
21
- |~~~~~+ ++~~+~.. ::~~+.. ~ ~~~|
22
- |~~~~~~~~~~~~~~+ ~~~~~~~~~~~~~~|
8
+ | . =. |
9
+ | ~+====++==+~~+ +========= |
10
+ | ===oooooo=+~~~~+=oooooooo+.|
11
+ | .~+oooooo~~~~~~~=oooooo+ . |
12
+ | .oooooo=~~~~~+ooooo=+ . |
13
+ | oooooo=~~~+ooooo=+~~+. |
14
+ | . ~+=ooooo=~=oooooo+~~~~~~ . |
15
+ |. +~~ooooooooooooo+~~~~~~~~~~~|
16
+ | . ~oooooooooo==+~~~~~~~~~ . |
17
+ | . ooooooooo+++~~~~~~~~ . |
18
+ | .+oooooo=~~+~~+o++==+++ |
19
+ | .oooo=+~~~++~~=+~+=+ =+~ |
20
+ | .=oo+~ ~+=~~=+ ~o=~=o+ |
21
+ | .~~.. .~~~~~+ .~+~.+ ~ |
22
+ | . |
23
23
  +------------------------------+
24
24
 
25
25
 
@@ -0,0 +1,106 @@
1
+ _ ________ ___ ____ ____ ________ _______ __
2
+ | | / / _/ |/ / / __ \/ __ \/ ____/ //_/ ___// /
3
+ | | / // // /|_/ / / /_/ / / / / / / ,< \__ \/ /
4
+ | |/ // // / / / / _, _/ /_/ / /___/ /| |___/ /_/
5
+ |___/___/_/ /_/ /_/ |_|\____/\____/_/ |_/____(_)
6
+
7
+ +------------------------------+
8
+ | . =. |
9
+ | ~+====++==+~~+ +========= |
10
+ | ===oooooo=+~~~~+=oooooooo+.|
11
+ | .~+oooooo~~~~~~~=oooooo+ . |
12
+ | .oooooo=~~~~~+ooooo=+ . |
13
+ | oooooo=~~~+ooooo=+~~+. |
14
+ | . ~+=ooooo=~=oooooo+~~~~~~ . |
15
+ |. +~~ooooooooooooo+~~~~~~~~~~~|
16
+ | . ~oooooooooo==+~~~~~~~~~ . |
17
+ | . ooooooooo+++~~~~~~~~ . |
18
+ | .+oooooo=~~+~~+o++==+++ |
19
+ | .oooo=+~~~++~~=+~+=+ =+~ |
20
+ | .=oo+~ ~+=~~=+ ~o=~=o+ |
21
+ | .~~.. .~~~~~+ .~+~.+ ~ |
22
+ | . |
23
+ +------------------------------+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+ slide 002
@@ -1,7 +1,8 @@
1
- ___ ___ ___ ___ ________ ___ ___ __ ______
2
- / _ \/ _ | / _ \/ _ |/ ___/ _ \/ _ | / _ \/ // / __/
3
- / ___/ __ |/ , _/ __ / (_ / , _/ __ |/ ___/ _ /\ \
4
- /_/ /_/ |_/_/|_/_/ |_\___/_/|_/_/ |_/_/ /_//_/___/
1
+ ____ ___ ____ ___ __________ ___ ____ __ _______
2
+ / __ \/ | / __ \/ | / ____/ __ \/ | / __ \/ / / / ___/
3
+ / /_/ / /| | / /_/ / /| |/ / __/ /_/ / /| | / /_/ / /_/ /\__ \
4
+ / ____/ ___ |/ _, _/ ___ / /_/ / _, _/ ___ |/ ____/ __ /___/ /
5
+ /_/ /_/ |_/_/ |_/_/ |_\____/_/ |_/_/ |_/_/ /_/ /_//____/
5
6
 
6
7
  This is a `paragraph` (plain text)
7
8
 
@@ -0,0 +1,90 @@
1
+ ___ ___ ___ ___ ________ ___ ___ __ ______
2
+ / _ \/ _ | / _ \/ _ |/ ___/ _ \/ _ | / _ \/ // / __/
3
+ / ___/ __ |/ , _/ __ / (_ / , _/ __ |/ ___/ _ /\ \
4
+ /_/ /_/ |_/_/|_/_/ |_\___/_/|_/_/ |_/_/ /_//_/___/
5
+
6
+ This is a `paragraph` (plain text)
7
+
8
+ This is another paragraph
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+ slide 003
@@ -1,7 +1,8 @@
1
- _ ____ ____ ______ _______ _______ __ ______________
2
- / |/ / / / / |/ / _ )/ __/ _ \/ __/ _ \ / / / _/ __/_ __/
3
- / / /_/ / /|_/ / _ / _// , _/ _// // / / /___/ /_\ \ / /
4
- /_/|_/\____/_/ /_/____/___/_/|_/___/____/ /____/___/___/ /_/
1
+ _ ____ ____ _______ __________ __________ __ _______________
2
+ / | / / / / / |/ / __ )/ ____/ __ \/ ____/ __ \ / / / _/ ___/_ __/
3
+ / |/ / / / / /|_/ / __ / __/ / /_/ / __/ / / / / / / / / \__ \ / /
4
+ / /| / /_/ / / / / /_/ / /___/ _, _/ /___/ /_/ / / /____/ / ___/ // /
5
+ /_/ |_/\____/_/ /_/_____/_____/_/ |_/_____/_____/ /_____/___//____//_/
5
6
 
6
7
  1. This *is* how a *numbered* list
7
8
  2. Looks in **vimdeck**
@@ -0,0 +1,90 @@
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
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+ slide 004