mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-26 16:36:49 +03:00
281 lines
14 KiB
HTML
281 lines
14 KiB
HTML
<!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="index.html"><img alt="english flag" src="img/flags/shiny/24/United-Kingdom.png"></a></li>
|
||
<li><a href="index_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 id="kak-preview" class="col-sm-12">
|
||
<div class="row-fluid">
|
||
<div class="col-sm-10 col-sm-offset-1">
|
||
<div id="kak-preview-logo"><img src="img/kakoune_logo_full.png"></div>
|
||
</div>
|
||
</div>
|
||
<div class="row-fluid">
|
||
<div class="col-sm-8 col-sm-offset-2">
|
||
<div id="kak-title">Kakoune code editor</div>
|
||
<div id="kak-preview-pitch">Vim inspired · Faster as in less keystrokes · Multiple selections · Orthogonal design</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="row-fluid">
|
||
<div id="kak-features" class="col-sm-10 col-sm-offset-1">
|
||
<div class="col-sm-12">
|
||
<h2 class="page-header">Features</h2>
|
||
</div>
|
||
|
||
<div class="row-fluid">
|
||
<div class="col-sm-6 col-lg-4">
|
||
<div class="feature-title">
|
||
<i class="fa fa-fw fa-object-group"></i> Multiple selections
|
||
</div>
|
||
|
||
<div class="feature-text">
|
||
Multiple selections are the central way
|
||
of interacting in <i>Kakoune</i>, with powerful handling primitives (regex
|
||
matches, filtering, splitting, aligning, text objects etc).
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-sm-6 col-lg-4">
|
||
<div class="feature-title">
|
||
<i class="fa fa-fw fa-magic"></i> Text editing tools
|
||
</div>
|
||
|
||
<div class="feature-text">
|
||
<i>Kakoune</i> implements several tools to help
|
||
editing/writing text: contextual help, as-you-type completion, syntax
|
||
highlighting for several programming languages…
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-sm-6 col-lg-4">
|
||
<div class="feature-title">
|
||
<i class="fa fa-fw fa-filter"></i> Advanced text manipulation primitives
|
||
</div>
|
||
|
||
<div class="feature-text">
|
||
Text can be selected and modified at
|
||
will in multiple ways, thanks to several primitives: selection rotation,
|
||
case manipulation, indentation leveling…
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-sm-6 col-lg-4">
|
||
<div class="feature-title">
|
||
<i class="fa fa-fw fa-gears"></i> Customization
|
||
</div>
|
||
|
||
<div class="feature-text">
|
||
Users can extend the features of <i>Kakoune</i>
|
||
or customize them to their liking with macros or hooks.
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-sm-6 col-lg-4">
|
||
<div class="feature-title">
|
||
<i class="fa fa-fw fa-sitemap"></i> Client/Server architecture
|
||
</div>
|
||
|
||
<div class="feature-text">
|
||
With <i>Kakoune</i>, you can collaboratively edit the same file: all
|
||
new windows created by the editor are clients, and can simultaneously
|
||
modify the content of a file. As such, windows are fully under the
|
||
control of your X11 window manager or can be managed in a single
|
||
terminal through <i>Kakoune</i>'s <a href="https://tmux.github.io/">tmux</a>
|
||
support.
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-sm-6 col-lg-4">
|
||
<div class="feature-title">
|
||
<i class="fa fa-fw fa-tachometer"></i> Active development & support
|
||
</div>
|
||
|
||
<div class="feature-text">
|
||
The project is actively developed, regularly implements new features,
|
||
and integrates pull requests proposed by the contributors. Users can
|
||
also ask their questions and share their remark with the rest of the
|
||
community, on <b>#kakoune</b> @ irc.freenode.net.
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="row-fluid">
|
||
<div id="kak-demos" class="col-sm-10 col-sm-offset-1">
|
||
<div id="carousel-demos" class="carousel slide" data-ride="carousel" data-interval="false">
|
||
<ol class="carousel-indicators">
|
||
<li data-target="#carousel-demos" data-slide-to="0" class="active"></li>
|
||
<li data-target="#carousel-demos" data-slide-to="1"></li>
|
||
<li data-target="#carousel-demos" data-slide-to="2"></li>
|
||
<li data-target="#carousel-demos" data-slide-to="3"></li>
|
||
<li data-target="#carousel-demos" data-slide-to="4"></li>
|
||
</ol>
|
||
|
||
<div class="carousel-inner" role="listbox">
|
||
<div class="item active">
|
||
<video autoplay loop>
|
||
<source src="video/align.webm" type="video/webm">
|
||
Your browser does not support the <code>video</code> element.
|
||
</video>
|
||
|
||
<div class="demo-caption">
|
||
Automatically indent symbols, by aligning the cursors of the splitted selections
|
||
</div>
|
||
</div>
|
||
|
||
<div class="item">
|
||
<video autoplay loop>
|
||
<source src="video/gather.webm" type="video/webm">
|
||
Your browser does not support the <code>video</code> element.
|
||
</video>
|
||
|
||
<div class="demo-caption">
|
||
Predicated selection of text, saved into the internal buffer for further manipulation
|
||
</div>
|
||
</div>
|
||
|
||
<div class="item">
|
||
<video autoplay loop>
|
||
<source src="video/rename.webm" type="video/webm">
|
||
Your browser does not support the <code>video</code> element.
|
||
</video>
|
||
|
||
<div class="demo-caption">
|
||
Visual and interactive text replace within a selection
|
||
</div>
|
||
</div>
|
||
|
||
<div class="item">
|
||
<video autoplay loop>
|
||
<source src="video/swap.webm" type="video/webm">
|
||
Your browser does not support the <code>video</code> element.
|
||
</video>
|
||
|
||
<div class="demo-caption">
|
||
Easily swap parameters with the 'rotate selection contents' command
|
||
</div>
|
||
</div>
|
||
|
||
<div class="item">
|
||
<video autoplay loop>
|
||
<source src="video/multiwin.webm" type="video/webm">
|
||
Your browser does not support the <code>video</code> element.
|
||
</video>
|
||
|
||
<div class="demo-caption">
|
||
Client server design, use your X11 window manager, run make/grep in the background
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<a class="left carousel-control" href="#carousel-demos" 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="#carousel-demos" role="button" data-slide="next">
|
||
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
|
||
<span class="sr-only">Next</span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="row-fluid">
|
||
<div class="col-sm-10 col-sm-offset-1">
|
||
<div class="col-sm-12">
|
||
<h2 class="page-header">Screenshots</h2>
|
||
</div>
|
||
|
||
<div class="row-fluid">
|
||
<div class="col-sm-6">
|
||
<div class="thumbnail">
|
||
<a href="img/screenshots/screenshot-i3.gif">
|
||
<img src="img/screenshots/screenshot-i3.gif">
|
||
</a>
|
||
<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="thumbnail">
|
||
<a href="img/screenshots/screenshot-tmux.gif">
|
||
<img src="img/screenshots/screenshot-tmux.gif">
|
||
</a>
|
||
<div class="caption">
|
||
<p><i>Kakoune</i> in <a href="https://tmux.github.io/">tmux</a></p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="row-fluid">
|
||
<div id="footer" class="col-sm-8 col-sm-offset-2">
|
||
2012-2016 · <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>
|
||
<script type="text/javascript" src="js/app.js"></script>
|
||
</body>
|
||
</html>
|