1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-23 15:23:29 +03:00
kakoune/index.html

257 lines
13 KiB
HTML
Raw Normal View History

2015-09-18 14:12:30 +03:00
<!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">
2015-09-18 14:12:30 +03:00
<meta name="author" content="@lenormf">
2015-09-19 00:06:38 +03:00
<link rel="icon" type="image/png" href="img/favicon16.png">
2015-09-18 14:12:30 +03:00
<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">
2015-09-21 16:55:08 +03:00
<link rel="stylesheet" href="css/font-gafata.css">
2015-09-19 07:43:45 +03:00
<link rel="stylesheet" href="css/default.css">
2015-09-18 14:12:30 +03:00
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="/">
2015-09-19 00:06:38 +03:00
<img alt="kakoune logo" src="img/kakoune_logo_32.png">
2015-09-18 14:12:30 +03:00
</a>
<p class="navbar-text"><b>Kakoune</b></p>
</div>
<ul class="nav navbar-nav">
<li><a href="https://github.com/mawww/kakoune#2-getting-started"><i class="fa fa-fw fa-flag"></i>&nbsp;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>&nbsp;Documentation</a></li>
<li><a href="https://github.com/mawww/kakoune/issues"><i class="fa fa-fw fa-bug"></i>&nbsp;Issue Tracker</a></li>
<li><a href="https://github.com/mawww/kakoune/wiki"><i class="fa fa-fw fa-group"></i>&nbsp;Wiki</a></li>
<li><a href="https://github.com/mawww/kakoune/blob/master/doc/design.asciidoc"><i class="fa fa-fw fa-book"></i>&nbsp;Design Notes</a></li>
<li><a href="scripts.html"><i class="fa fa-fw fa-fighter-jet"></i>&nbsp;Scripts</a></li>
</ul>
2015-09-18 14:12:30 +03:00
</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>
2015-09-18 14:12:30 +03:00
</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>
2015-09-18 14:12:30 +03:00
</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>
2015-09-18 14:12:30 +03:00
</div>
<div class="row-fluid">
<div class="col-sm-6 col-lg-4">
2015-09-18 14:12:30 +03:00
<div class="feature-title">
<i class="fa fa-fw fa-object-group"></i>&nbsp;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">
2015-09-18 14:12:30 +03:00
<div class="feature-title">
<i class="fa fa-fw fa-magic"></i>&nbsp;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">
2015-09-18 14:12:30 +03:00
<div class="feature-title">
<i class="fa fa-fw fa-filter"></i>&nbsp;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">
2015-09-18 14:12:30 +03:00
<div class="feature-title">
<i class="fa fa-fw fa-gears"></i>&nbsp;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">
2015-09-18 14:12:30 +03:00
<div class="feature-title">
<i class="fa fa-fw fa-sitemap"></i>&nbsp;Client/Server architecture
</div>
<div class="feature-text">
2015-09-19 07:49:32 +03:00
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>
2015-09-18 14:12:30 +03:00
support.
</div>
</div>
<div class="col-sm-6 col-lg-4">
2015-09-18 14:12:30 +03:00
<div class="feature-title">
<i class="fa fa-fw fa-tachometer"></i>&nbsp;Active development & support
</div>
<div class="feature-text">
2015-09-19 07:49:32 +03:00
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.
2015-09-18 14:12:30 +03:00
</div>
</div>
</div>
</div>
</div>
2015-10-10 11:26:20 +03:00
<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>
</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">
Rotation of multiple selections, splitted by a custom delimiter
</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>
2015-09-18 14:12:30 +03:00
<div class="row-fluid">
<div class="col-sm-10 col-sm-offset-1">
<div class="col-sm-12">
<h2 class="page-header">Screenshots</h2>
2015-09-18 14:12:30 +03:00
</div>
<div class="row-fluid">
2015-09-18 14:12:30 +03:00
<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">
2015-09-21 15:50:36 +03:00
<a href="img/screenshots/screenshot-i3.gif">
<img src="img/screenshots/screenshot-i3.gif" class="img-responsive">
</a>
2015-09-18 14:12:30 +03:00
</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">
2015-09-21 15:50:36 +03:00
<a href="img/screenshots/screenshot-tmux.gif">
<img src="img/screenshots/screenshot-tmux.gif" class="img-responsive">
</a>
2015-09-18 14:12:30 +03:00
</div>
</div>
</div>
</div>
</div>
<div class="row-fluid">
<div id="footer" class="col-sm-8 col-sm-offset-2">
2015-09-19 12:17:04 +03:00
2012-2015 · <a href="https://github.com/mawww/kakoune"><i>kakoune</i></a>
2015-09-18 14:12:30 +03:00
</div>
</div>
</div>
2015-10-10 11:26:20 +03:00
<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>
2015-09-18 14:12:30 +03:00
</body>
</html>