4
4
<!-- Book generated using mdBook -->
5
5
< meta charset ="UTF-8 ">
6
6
< title > Example Plugins - Zellij User Guide</ title >
7
+
8
+
7
9
<!-- Custom HTML head -->
8
- < meta content =" text/html; charset=utf-8 " http-equiv =" Content-Type " >
10
+
9
11
< meta name ="description " content ="">
10
12
< meta name ="viewport " content ="width=device-width, initial-scale=1 ">
11
13
< meta name ="theme-color " content ="#ffffff " />
16
18
< link rel ="stylesheet " href ="css/general.css ">
17
19
< link rel ="stylesheet " href ="css/chrome.css ">
18
20
< link rel ="stylesheet " href ="css/print.css " media ="print ">
21
+
19
22
<!-- Fonts -->
20
23
< link rel ="stylesheet " href ="FontAwesome/css/font-awesome.css ">
21
24
< link rel ="stylesheet " href ="fonts/fonts.css ">
25
+
22
26
<!-- Highlight.js Stylesheets -->
23
27
< link rel ="stylesheet " href ="highlight.css ">
24
28
< link rel ="stylesheet " href ="tomorrow-night.css ">
25
29
< link rel ="stylesheet " href ="ayu-highlight.css ">
26
30
27
31
<!-- Custom theme stylesheets -->
32
+
28
33
</ head >
29
34
< body >
35
+ < div id ="body-container ">
30
36
<!-- Provide site root to javascript -->
31
- < script type =" text/javascript " >
37
+ < script >
32
38
var path_to_root = "" ;
33
39
var default_theme = window . matchMedia ( "(prefers-color-scheme: dark)" ) . matches ? "navy" : "light" ;
34
40
</ script >
35
41
36
42
<!-- Work around some values being stored in localStorage wrapped in quotes -->
37
- < script type =" text/javascript " >
43
+ < script >
38
44
try {
39
45
var theme = localStorage . getItem ( 'mdbook-theme' ) ;
40
46
var sidebar = localStorage . getItem ( 'mdbook-sidebar' ) ;
50
56
</ script >
51
57
52
58
<!-- Set the theme before any content is loaded, prevents flash -->
53
- < script type =" text/javascript " >
59
+ < script >
54
60
var theme ;
55
61
try { theme = localStorage . getItem ( 'mdbook-theme' ) ; } catch ( e ) { }
56
62
if ( theme === null || theme === undefined ) { theme = default_theme ; }
62
68
</ script >
63
69
64
70
<!-- Hide / unhide sidebar before it is displayed -->
65
- < script type =" text/javascript " >
71
+ < script >
66
72
var html = document . querySelector ( 'html' ) ;
67
- var sidebar = 'hidden' ;
73
+ var sidebar = null ;
68
74
if ( document . body . clientWidth >= 1080 ) {
69
75
try { sidebar = localStorage . getItem ( 'mdbook-sidebar' ) ; } catch ( e ) { }
70
76
sidebar = sidebar || 'visible' ;
77
+ } else {
78
+ sidebar = 'hidden' ;
71
79
}
72
80
html . classList . remove ( 'sidebar-visible' ) ;
73
81
html . classList . add ( "sidebar-" + sidebar ) ;
83
91
< div id ="page-wrapper " class ="page-wrapper ">
84
92
85
93
< div class ="page ">
86
- < div id ="menu-bar-hover-placeholder "> </ div >
94
+ < div id ="menu-bar-hover-placeholder "> </ div >
87
95
< div id ="menu-bar " class ="menu-bar sticky bordered ">
88
96
< div class ="left-buttons ">
89
97
< button id ="sidebar-toggle " class ="icon-button " type ="button " title ="Toggle Table of Contents " aria-label ="Toggle Table of Contents " aria-controls ="sidebar ">
93
101
< i class ="fa fa-paint-brush "> </ i >
94
102
</ button >
95
103
< ul id ="theme-list " class ="theme-popup " aria-label ="Themes " role ="menu ">
96
- < li role ="none "> < button role ="menuitem " class ="theme " id ="light "> Light (default) </ button > </ li >
104
+ < li role ="none "> < button role ="menuitem " class ="theme " id ="light "> Light</ button > </ li >
97
105
< li role ="none "> < button role ="menuitem " class ="theme " id ="rust "> Rust</ button > </ li >
98
106
< li role ="none "> < button role ="menuitem " class ="theme " id ="coal "> Coal</ button > </ li >
99
107
< li role ="none "> < button role ="menuitem " class ="theme " id ="navy "> Navy</ button > </ li >
@@ -110,6 +118,7 @@ <h1 class="menu-title">Zellij User Guide</h1>
110
118
< a href ="print.html " title ="Print this book " aria-label ="Print this book ">
111
119
< i id ="print-button " class ="fa fa-print "> </ i >
112
120
</ a >
121
+
113
122
</ div >
114
123
</ div >
115
124
@@ -123,8 +132,9 @@ <h1 class="menu-title">Zellij User Guide</h1>
123
132
</ ul >
124
133
</ div >
125
134
</ div >
135
+
126
136
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
127
- < script type =" text/javascript " >
137
+ < script >
128
138
document . getElementById ( 'sidebar-toggle' ) . setAttribute ( 'aria-expanded' , sidebar === 'visible' ) ;
129
139
document . getElementById ( 'sidebar' ) . setAttribute ( 'aria-hidden' , sidebar !== 'visible' ) ;
130
140
Array . from ( document . querySelectorAll ( '#sidebar a' ) ) . forEach ( function ( link ) {
@@ -135,6 +145,11 @@ <h1 class="menu-title">Zellij User Guide</h1>
135
145
< div id ="content " class ="content ">
136
146
< main >
137
147
< h1 id ="example-plugins "> < a class ="header " href ="#example-plugins "> Example Plugins</ a > </ h1 >
148
+ < h3 id ="harpoon "> < a class ="header " href ="#harpoon "> < a href ="https://github.com/Nacho114/harpoon "> harpoon</ a > </ a > </ h3 >
149
+ < p > < img src ="/video/harpoon-preview.gif " alt ="harpoon preview " /> </ p >
150
+ < p > < a href ="https://github.com/Nacho114/harpoon "> harpoon</ a > enables quick navigation to your favorite panes.
151
+ You can use < code > a</ code > to add the current pane to your harpoon list. You can navigate harpoon using < code > Up</ code > ,
152
+ < code > Down</ code > , or using vim navigation. To go to the pane you just press < code > Enter</ code > .</ p >
138
153
< h3 id ="jbz "> < a class ="header " href ="#jbz "> < a href ="https://github.com/nim65s/jbz "> jbz</ a > </ a > </ h3 >
139
154
< p > < img src ="/video/jbz-preview.gif " alt ="jbz preview " /> </ p >
140
155
< p > < a href ="https://github.com/nim65s/jbz "> jbz</ a > simply spawn all your < a href ="https://github.com/casey/just "> just</ a > commands wrapped
@@ -166,9 +181,11 @@ <h3 id="room"><a class="header" href="#room"><a href="https://github.com/rvcas/r
166
181
< a rel ="prev " href ="plugin-upgrading.html " class ="mobile-nav-chapters previous " title ="Previous chapter " aria-label ="Previous chapter " aria-keyshortcuts ="Left ">
167
182
< i class ="fa fa-angle-left "> </ i >
168
183
</ a >
184
+
169
185
< a rel ="next " href ="plugin-other-languages.html " class ="mobile-nav-chapters next " title ="Next chapter " aria-label ="Next chapter " aria-keyshortcuts ="Right ">
170
186
< i class ="fa fa-angle-right "> </ i >
171
187
</ a >
188
+
172
189
< div style ="clear: both "> </ div >
173
190
</ nav >
174
191
</ div >
@@ -178,23 +195,33 @@ <h3 id="room"><a class="header" href="#room"><a href="https://github.com/rvcas/r
178
195
< a rel ="prev " href ="plugin-upgrading.html " class ="nav-chapters previous " title ="Previous chapter " aria-label ="Previous chapter " aria-keyshortcuts ="Left ">
179
196
< i class ="fa fa-angle-left "> </ i >
180
197
</ a >
198
+
181
199
< a rel ="next " href ="plugin-other-languages.html " class ="nav-chapters next " title ="Next chapter " aria-label ="Next chapter " aria-keyshortcuts ="Right ">
182
200
< i class ="fa fa-angle-right "> </ i >
183
201
</ a >
184
202
</ nav >
185
203
186
204
</ div >
187
205
188
- < script type ="text/javascript ">
206
+
207
+
208
+
209
+ < script >
189
210
window . playground_copyable = true ;
190
211
</ script >
191
- < script src ="elasticlunr.min.js " type ="text/javascript " charset ="utf-8 "> </ script >
192
- < script src ="mark.min.js " type ="text/javascript " charset ="utf-8 "> </ script >
193
- < script src ="searcher.js " type ="text/javascript " charset ="utf-8 "> </ script >
194
- < script src ="clipboard.min.js " type ="text/javascript " charset ="utf-8 "> </ script >
195
- < script src ="highlight.js " type ="text/javascript " charset ="utf-8 "> </ script >
196
- < script src ="book.js " type ="text/javascript " charset ="utf-8 "> </ script >
212
+
213
+
214
+ < script src ="elasticlunr.min.js "> </ script >
215
+ < script src ="mark.min.js "> </ script >
216
+ < script src ="searcher.js "> </ script >
217
+
218
+ < script src ="clipboard.min.js "> </ script >
219
+ < script src ="highlight.js "> </ script >
220
+ < script src ="book.js "> </ script >
197
221
198
222
<!-- Custom JS scripts -->
223
+
224
+
225
+ </ div >
199
226
</ body >
200
227
</ html >
0 commit comments