-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
235 lines (196 loc) · 12.5 KB
/
index.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="./micro_files/icon.png">
<script async defer src="https://buttons.github.io/buttons.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Micro - Home</title>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="micro_files/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="micro_files/micro.css" rel="stylesheet">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66418971-2', 'auto');
ga('send', 'pageview');
function selectText(elem) {
if (document.selection) {
var range = document.body.createTextRange();
range.moveToElementText(elem);
range.select();
} else if (window.getSelection) {
var range = document.createRange();
range.selectNode(elem);
window.getSelection().addRange(range);
}
}
</script>
</head>
<body>
<div class="container">
<div class="header clearfix">
<div class="navbar-header pull-left">
<a href="index.html" class="micro-logo">Micro</a>
</div>
<button type="button" data-toggle="collapse" data-target=".navbar-collapse" class="navbar-toggle"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
<div class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav pull-right">
<li class="active"><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="plugins.html">plugins</a></li>
<li><a href="https://github.com/zyedidia/micro">development</a></li>
</ul>
</div>
</div>
<div class="jumbotron">
<p style="font-weight:bold;" class="lead heading">micro</p>
<p class="lead">a modern and intuitive terminal-based text editor</p>
<p><a class="btn btn-lg btn-success" href="https://github.com/zyedidia/micro/releases/latest" role="button">Download</a></p>
<pre style="max-width:20em;clear:both;text-align:center;margin:0 auto"><code id="selectable" onclick="selectText(this)">curl https://getmic.ro | bash</code></pre><br>
<a class="github-button" href="https://github.com/zyedidia/micro" data-size="large" data-show-count="true" aria-label="Star zyedidia/micro on GitHub">Star</a>
<p><a style='font-size: 16px;' href="https://github.com/zyedidia/micro#installation">See detailed installation instructions</a></p>
</div>
<hr>
<div id="screenshots" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#screenshots" data-slide-to="0" class="active"></li>
<li data-target="#screenshots" data-slide-to="1"></li>
<li data-target="#screenshots" data-slide-to="2"></li>
<li data-target="#screenshots" data-slide-to="3"></li>
<li data-target="#screenshots" data-slide-to="4"></li>
<li data-target="#screenshots" data-slide-to="5"></li>
<li data-target="#screenshots" data-slide-to="6"></li>
<li data-target="#screenshots" data-slide-to="7"></li>
<li data-target="#screenshots" data-slide-to="8"></li>
<li data-target="#screenshots" data-slide-to="9"></li>
<li data-target="#screenshots" data-slide-to="10"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="screenshots/micro-monokai.png" alt="Chania">
</div>
<div class="item">
<img src="screenshots/micro-one-dark.png" alt="Flower">
</div>
<div class="item">
<img src="screenshots/micro-darcula.png" alt="Flower">
</div>
<div class="item">
<img src="screenshots/micro-twilight.png" alt="Flower">
</div>
<div class="item">
<img src="screenshots/micro-railscast.png" alt="Flower">
</div>
<div class="item">
<img src="screenshots/micro-solarized.png" alt="Chania">
</div>
<div class="item">
<img src="screenshots/micro-atom-dark.png" alt="Flower">
</div>
<div class="item">
<img src="screenshots/micro-gruvbox.png" alt="Flower">
</div>
<div class="item">
<img src="screenshots/micro-material.png" alt="Flower">
</div>
<div class="item">
<img src="screenshots/micro-gotham.png" alt="Flower">
</div>
<div class="item">
<img src="screenshots/micro-zenburn.png" alt="Flower">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#screenshots" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#screenshots" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<hr>
<div class="row features">
<div class="heading">
<div class="col-lg-12">
<h2>Features</h2>
</div>
</div>
<div class="col-sm-6">
<h4>Easy to Use</h4>
<p>Micro's number one feature is being easy to install (it's just a static binary with no dependencies) and easy to use.</p>
<h4>Highly Customizable</h4>
<p>Use a simple json format to configure your options and rebind keys to your liking. If you need more power, you can use Lua to configure the editor further.</p>
<h4>Colors and Highlighting</h4>
<p>Micro supports over 75 languages and has 7 default colorschemes to choose from. Micro supports 16, 256, and truecolor themes. Syntax files and colorschemes are also very simple to make.</p>
<h4>Multiple Cursors</h4>
<p>Micro has support for Sublime-style multiple cursors, giving you lots of editing power directly in your terminal.</p>
</div>
<div class="col-sm-6">
<h4>Plugin System</h4>
<p>Micro supports a full-blown plugin system. Plugins are written in Lua and there is a plugin manager to automatically download and install your plugins for you.</p>
<h4>Common Keybindings</h4>
<p>Micro's keybindings are what you would expect from a simple-to-use editor. You can also rebind any of the bindings without problem in the <code>bindings.json</code> file.</p>
<h4>Mouse Support</h4>
<p>Micro has full support for the mouse. This means you can click and drag to select text, double click select by word, and triple click to select by line.</p>
<h4>Terminal Emulator</h4>
<p>Run a real interactive shell from within micro. You could open up a split with code on one side and bash on the other -- all from within micro.</p>
</div>
<div class="col-lg-12">
<br>
<p style="padding-top: 20px;">And much more! Check out the full list of features <a href="https://github.com/zyedidia/micro#features">here</a> as well as the built-in help system also viewable online <a href="https://github.com/zyedidia/micro/tree/master/runtime/help">here</a>.</p>
</div>
</div>
<hr>
<div class="row contributing">
<div class="col-md-6">
<div class="heading">
<h2>Contributing</h2>
</div>
<p>If you find any bugs, please report them! I am also happy to accept pull requests from anyone.</p>
<p>You can use the GitHub issue tracker to report bugs, ask questions, or suggest new features.</p>
<p>For a more informal setting to discuss the editor, you can join the Gitter chat.</p>
<br>
<div class="col-sm-6">
<p style="text-align:center"><a class="btn btn-md btn-success" href="https://github.com/zyedidia/micro" role="button">View the GitHub project</a></p>
</div>
<div class="col-sm-6">
<p style="text-align:center"><a class="btn btn-md btn-success" href="https://gitter.im/zyedidia/micro" role="button">Join the Gitter Chat</a></p>
</div>
</div>
<div class="col-md-6">
<div class="heading">
<h2>Testimonials</h2>
</div>
<ul class="testimonials">
<li><p><a href="https://gitter.im/zyedidia/micro?at=57c5b2069bac566763729ac2">"Finally a simple editor that just works, with amazing mouse support."</a></p></li>
<li><p><a href="https://www.reddit.com/r/golang/comments/4f8e0q/micro_a_modern_and_intuitive_terminalbased_text/d26qse8">"I really love this. This is definitely replacing nano for me."</a></p></li>
<li><p><a href="https://github.com/zyedidia/micro/issues/217#issuecomment-243134046">"Keep up the great work, you have saved me from Nano and Vim suffering!"</a></p></li>
<li><p><a href="https://twitter.com/kelseyhightower/status/770735086400577536">"The micro text editor is dope."</a></p></li>
<li><p><a href="https://www.reddit.com/r/commandline/comments/5059qw/micro_a_modern_and_intuitive_terminalbased_text/d71t2y8">"Nice, readable source, with generous use of comments. I wonder if this is that 'idiomatic go' I keep hearing about."</a></p></li>
</ul>
</div>
</div>
<br>
<footer class="footer">
<p>View the source code for this website on <a href="https://github.com/micro-editor/micro-editor.github.io">GitHub</a></p>
</footer>
</div> <!-- /container -->
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="micro_files/ie10-viewport-bug-workaround.js"></script>
</body>
</html>