mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-22 22:55:26 +03:00
Add a gallery, remove the scripts page, translate in French
This commit is contained in:
parent
40b2529713
commit
87b5f84962
@ -164,7 +164,15 @@ a:hover {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.screenshot-title {
|
||||
.thumbnail .caption {
|
||||
font-size: 1.2em;
|
||||
margin-bottom: .5em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.thumbnail .caption p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.thumbnail {
|
||||
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
131
gallery.html
Normal file
131
gallery.html
Normal file
@ -0,0 +1,131 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>Kakoune - Official site</title>
|
||||
|
||||
<meta name="description" content="The official website of Kakoune, a vim inspired code editor">
|
||||
<meta name="author" content="@lenormf">
|
||||
<link rel="icon" type="image/png" href="img/favicon16.png">
|
||||
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="css/font-gafata.css">
|
||||
<link rel="stylesheet" href="css/default.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-default navbar-fixed-top">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="/">
|
||||
<img alt="kakoune logo" src="img/kakoune_logo_32.png">
|
||||
</a>
|
||||
<p class="navbar-text"><b>Kakoune</b></p>
|
||||
</div>
|
||||
|
||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||
<ul class="nav navbar-nav">
|
||||
<li><a href="https://github.com/mawww/kakoune#2-getting-started"><i class="fa fa-fw fa-flag"></i> Get started!</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/blob/master/README.asciidoc#3-basic-interaction"><i class="fa fa-fw fa-list-alt"></i> Documentation</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/issues"><i class="fa fa-fw fa-bug"></i> Issue Tracker</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/wiki"><i class="fa fa-fw fa-group"></i> Wiki</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/blob/master/doc/design.asciidoc"><i class="fa fa-fw fa-book"></i> Design Notes</a></li>
|
||||
<li><a href="gallery.html"><i class="fa fa-fw fa-camera"></i> Gallery</a></li>
|
||||
</ul>
|
||||
|
||||
<ul id="translation-flags" class="nav navbar-nav navbar-right">
|
||||
<li><a href="gallery.html"><img alt="english flag" src="img/flags/shiny/24/United-Kingdom.png"></a></li>
|
||||
<li><a href="gallery_fr.html"><img alt="french flag" src="img/flags/shiny/24/France.png"></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-10 col-sm-offset-1">
|
||||
<h2 class="page-header" style="margin-top: 0;">Gallery</h2>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/relativenumbering-FreeFull.gif">
|
||||
<div class="caption">
|
||||
<p>Editing some Rust code using relative line numbering</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/ccode-Xiaoman.gif">
|
||||
<div class="caption">
|
||||
<p>Simple selection of C code</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/fzf-lenormf.gif">
|
||||
<div class="caption">
|
||||
<p>Opening multiple buffers using <a href="https://github.com/junegunn/fzf">fzf</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/multiselections-victoroux.gif">
|
||||
<div class="caption">
|
||||
<p>Editing some Python code using multiple selections</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/multiclients_casimir.gif">
|
||||
<div class="caption">
|
||||
<p>Multiple <i>Kakoune</i> clients within the same session</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/multiselections-jkonecny.gif">
|
||||
<div class="caption">
|
||||
<p>Multiple selection in a <i>Kakoune</i> client</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div id="footer" class="col-sm-8 col-sm-offset-2">
|
||||
2012-2015 · <a href="https://github.com/mawww/kakoune"><i>kakoune</i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
</html>
|
131
gallery_fr.html
Normal file
131
gallery_fr.html
Normal file
@ -0,0 +1,131 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>Kakoune - Site officiel</title>
|
||||
|
||||
<meta name="description" content="Le site officiel de kakoune, l'éditeur inspiré de vim">
|
||||
<meta name="author" content="@lenormf">
|
||||
<link rel="icon" type="image/png" href="img/favicon16.png">
|
||||
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="css/font-gafata.css">
|
||||
<link rel="stylesheet" href="css/default.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-default navbar-fixed-top">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
|
||||
<span class="sr-only">Menu de navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="/">
|
||||
<img alt="kakoune logo" src="img/kakoune_logo_32.png">
|
||||
</a>
|
||||
<p class="navbar-text"><b>Kakoune</b></p>
|
||||
</div>
|
||||
|
||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||
<ul class="nav navbar-nav">
|
||||
<li><a href="https://github.com/mawww/kakoune#2-getting-started"><i class="fa fa-fw fa-flag"></i> Commencer !</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/blob/master/README.asciidoc#3-basic-interaction"><i class="fa fa-fw fa-list-alt"></i> Documentation</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/issues"><i class="fa fa-fw fa-bug"></i> Gestionnaire de tickets</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/wiki"><i class="fa fa-fw fa-group"></i> Wiki</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/blob/master/doc/design.asciidoc"><i class="fa fa-fw fa-book"></i> Notes de conception</a></li>
|
||||
<li><a href="gallery_fr.html"><i class="fa fa-fw fa-camera"></i> Galerie</a></li>
|
||||
</ul>
|
||||
|
||||
<ul id="translation-flags" class="nav navbar-nav navbar-right">
|
||||
<li><a href="gallery.html"><img alt="english flag" src="img/flags/shiny/24/United-Kingdom.png"></a></li>
|
||||
<li><a href="gallery_fr.html"><img alt="french flag" src="img/flags/shiny/24/France.png"></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-10 col-sm-offset-1">
|
||||
<h2 class="page-header" style="margin-top: 0;">Galerie</h2>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/relativenumbering-FreeFull.gif">
|
||||
<div class="caption">
|
||||
<p>Edition de code Rust grâce aux indices de lignes relatifs</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/ccode-Xiaoman.gif">
|
||||
<div class="caption">
|
||||
<p>Sélection simple de code C</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/fzf-lenormf.gif">
|
||||
<div class="caption">
|
||||
<p>Ouverture de multiples fichiers grâce à <a href="https://github.com/junegunn/fzf">fzf</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/multiselections-victoroux.gif">
|
||||
<div class="caption">
|
||||
<p>Edition de code Python grâce aux sélections multiples</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/multiclients_casimir.gif">
|
||||
<div class="caption">
|
||||
<p>Différents clients <i>Kakoune</i> au sein de la même session</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/multiselections-jkonecny.gif">
|
||||
<div class="caption">
|
||||
<p>Sélections multiples dans un client <i>Kakoune</i></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div id="footer" class="col-sm-8 col-sm-offset-2">
|
||||
2012-2015 · <a href="https://github.com/mawww/kakoune"><i>kakoune</i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
</html>
|
BIN
img/screenshots/ccode-Xiaoman.gif
Normal file
BIN
img/screenshots/ccode-Xiaoman.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 115 KiB |
BIN
img/screenshots/fzf-lenormf.gif
Normal file
BIN
img/screenshots/fzf-lenormf.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 149 KiB |
BIN
img/screenshots/multiclients_casimir.gif
Normal file
BIN
img/screenshots/multiclients_casimir.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 256 KiB |
BIN
img/screenshots/multiselections-jkonecny.gif
Normal file
BIN
img/screenshots/multiselections-jkonecny.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 505 KiB |
BIN
img/screenshots/multiselections-victoroux.gif
Normal file
BIN
img/screenshots/multiselections-victoroux.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 197 KiB |
BIN
img/screenshots/relativenumbering-FreeFull.gif
Normal file
BIN
img/screenshots/relativenumbering-FreeFull.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
28
index.html
28
index.html
@ -40,7 +40,7 @@
|
||||
<li><a href="https://github.com/mawww/kakoune/issues"><i class="fa fa-fw fa-bug"></i> Issue Tracker</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/wiki"><i class="fa fa-fw fa-group"></i> Wiki</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/blob/master/doc/design.asciidoc"><i class="fa fa-fw fa-book"></i> Design Notes</a></li>
|
||||
<li><a href="scripts.html"><i class="fa fa-fw fa-fighter-jet"></i> Scripts</a></li>
|
||||
<li><a href="gallery.html"><i class="fa fa-fw fa-camera"></i> Gallery</a></li>
|
||||
</ul>
|
||||
|
||||
<ul id="translation-flags" class="nav navbar-nav navbar-right">
|
||||
@ -242,26 +242,20 @@
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-6">
|
||||
<div class="screenshot-title">
|
||||
<i>Kakoune</i> in <a href="http://i3wm.org/">i3</a>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<a href="img/screenshots/screenshot-i3.gif">
|
||||
<img src="img/screenshots/screenshot-i3.gif" class="img-responsive">
|
||||
</a>
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/screenshot-i3.gif">
|
||||
<div class="caption">
|
||||
<p><i>Kakoune</i> in <a href="http://i3wm.org/">i3</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="screenshot-title">
|
||||
<i>Kakoune</i> in <a href="https://tmux.github.io/">tmux</a>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<a href="img/screenshots/screenshot-tmux.gif">
|
||||
<img src="img/screenshots/screenshot-tmux.gif" class="img-responsive">
|
||||
</a>
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/screenshot-tmux.gif">
|
||||
<div class="caption">
|
||||
<p><i>Kakoune</i> in <a href="https://tmux.github.io/">tmux</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -40,7 +40,7 @@
|
||||
<li><a href="https://github.com/mawww/kakoune/issues"><i class="fa fa-fw fa-bug"></i> Gestionnaire de tickets</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/wiki"><i class="fa fa-fw fa-group"></i> Wiki</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/blob/master/doc/design.asciidoc"><i class="fa fa-fw fa-book"></i> Notes de conception</a></li>
|
||||
<li><a href="scripts.html"><i class="fa fa-fw fa-fighter-jet"></i> Scripts</a></li>
|
||||
<li><a href="gallery_fr.html"><i class="fa fa-fw fa-camera"></i> Galerie</a></li>
|
||||
</ul>
|
||||
|
||||
<ul id="translation-flags" class="nav navbar-nav navbar-right">
|
||||
@ -241,26 +241,20 @@
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-6">
|
||||
<div class="screenshot-title">
|
||||
<i>Kakoune</i> dans <a href="http://i3wm.org/">i3</a>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<a href="img/screenshots/screenshot-i3.gif">
|
||||
<img src="img/screenshots/screenshot-i3.gif" class="img-responsive">
|
||||
</a>
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/screenshot-i3.gif">
|
||||
<div class="caption">
|
||||
<p><i>Kakoune</i> dans <a href="http://i3wm.org/">i3</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="screenshot-title">
|
||||
<i>Kakoune</i> dans <a href="https://tmux.github.io/">tmux</a>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<a href="img/screenshots/screenshot-tmux.gif">
|
||||
<img src="img/screenshots/screenshot-tmux.gif" class="img-responsive">
|
||||
</a>
|
||||
<div class="thumbnail">
|
||||
<img src="img/screenshots/screenshot-tmux.gif">
|
||||
<div class="caption">
|
||||
<p><i>Kakoune</i> dans <a href="https://tmux.github.io/">tmux</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
130
scripts.html
130
scripts.html
@ -1,130 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>Kakoune - Official site</title>
|
||||
|
||||
<meta name="description" content="The official website of Kakoune, a vim inspired code editor">
|
||||
<meta name="author" content="@lenormf">
|
||||
<link rel="icon" type="image/png" href="img/favicon16.png">
|
||||
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="css/font-gafata.css">
|
||||
<link rel="stylesheet" href="css/default.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-default navbar-fixed-top">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="/">
|
||||
<img alt="kakoune logo" src="img/kakoune_logo_32.png">
|
||||
</a>
|
||||
<p class="navbar-text"><b>Kakoune</b></p>
|
||||
</div>
|
||||
|
||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||
<ul class="nav navbar-nav">
|
||||
<li><a href="https://github.com/mawww/kakoune#2-getting-started"><i class="fa fa-fw fa-flag"></i> Get started!</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/blob/master/README.asciidoc#3-basic-interaction"><i class="fa fa-fw fa-list-alt"></i> Documentation</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/issues"><i class="fa fa-fw fa-bug"></i> Issue Tracker</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/wiki"><i class="fa fa-fw fa-group"></i> Wiki</a></li>
|
||||
<li><a href="https://github.com/mawww/kakoune/blob/master/doc/design.asciidoc"><i class="fa fa-fw fa-book"></i> Design Notes</a></li>
|
||||
<li><a href="scripts.html"><i class="fa fa-fw fa-fighter-jet"></i> Scripts</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row-fluid">
|
||||
<div class="col-sm-10 col-sm-offset-1">
|
||||
<br>
|
||||
<div class="alert alert-danger" role="alert">
|
||||
The scripts available in this section have been written by contributors,
|
||||
and although they have all been carefully reviewed before being
|
||||
integrated into this page, the developers of the <i>Kakoune</i> projects
|
||||
<b>cannot be held liable</b> for any problems that might arise through the use
|
||||
of one of the following scripts. <b>You have been warned.</b>
|
||||
</div>
|
||||
|
||||
<h3 class="page-header" style="margin-top: 0;">How to contribute</h3>
|
||||
<blockquote>
|
||||
After you have tested and put your script online (preferably on <a href=
|
||||
"https://gist.github.com/">Github Gists</a>), edit this page on your
|
||||
fork of the <a href="https://github.com/mawww/kakoune/tree/gh-pages">
|
||||
Kakoune Github Pages repository</a> to include your script, along with
|
||||
all the information needed to fill the table. Submit a pull request
|
||||
with all those changes, and your script (after examination by the
|
||||
project's developers) will be included on this page!
|
||||
</blockquote>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-12">
|
||||
<table id="table-scripts" class="table table-responsive table-striped table-condensed">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Download</th>
|
||||
<th>Description</th>
|
||||
<th>Author</th>
|
||||
<th>Script version</th>
|
||||
<th>License</th>
|
||||
<th>Date added</th>
|
||||
<th>Date updated</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="https://gist.github.com/lenormf/a8c0d77f4e2a92a399e0/raw/9f461af0b144c9c83bb5ae3cd353aea1baf51d11/autodownload.kak">autodownload</a></td>
|
||||
<td>Download a remote file when a URL is used as a buffer name</td>
|
||||
<td><a href="https://github.com/lenormf">lenormf</a></td>
|
||||
<td>1.0</td>
|
||||
<td>MIT</td>
|
||||
<td>25/09/2015</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="https://gist.github.com/lenormf/e8e2b0f512efa3cf4bbf/raw/d088fa197429a589e67f9d5918b4e57759970e1e/gdt.kak">gdt</a></td>
|
||||
<td>Highlight TODO, FIXME and XXX comments</td>
|
||||
<td><a href="https://github.com/lenormf">lenormf</a></td>
|
||||
<td>1.0</td>
|
||||
<td>MIT</td>
|
||||
<td>25/09/2015</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="https://gist.githubusercontent.com/lenormf/461c5b6ee7a3458fc49b/raw/8350b7cdbd66ddb71a5675ec46b447a526e9f524/bitbake.kak">bitbake</a></td>
|
||||
<td>Support for <a href="https://www.yoctoproject.org/tools-resources/projects/bitbake">Bitbake</a> recipes</td>
|
||||
<td><a href="https://github.com/lenormf">lenormf</a></td>
|
||||
<td>1.0</td>
|
||||
<td>MIT</td>
|
||||
<td>04/11/2015</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div id="footer" class="col-sm-8 col-sm-offset-2">
|
||||
2012-2015 · <a href="https://github.com/mawww/kakoune"><i>kakoune</i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user