forked from egaga/openvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopment.html
More file actions
70 lines (59 loc) · 2.54 KB
/
development.html
File metadata and controls
70 lines (59 loc) · 2.54 KB
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
<!doctype html>
<html lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta charset='utf-8' />
<title>Open Vim</title>
<link rel="stylesheet" type="text/css" href="css/development.css?version={VERSION}" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1334187-4']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="header">
<h1>Open Vim</h1>
<h3>Collection of <a class="external_link" href="http://www.vim.org/">Vim</a> learning tools</h3>
</div>
<div class="cloud">
<div>
<a href="https://trello.com/board/openvim/4e71135e9dbc8100001b9c5c">Development</a>
<p>Development tasks in Trello.com. <span class="emphasize">Vote and comment!</span></p>
</div>
<div>
<a href="tests.html">Testing</a>
<p>Supported commands verified by running against Vim engine</p>
</div>
<div>
<a href="https://github.com/egaga/openvim">Source code</a>
<p><span class="emphasize">MIT</span> licensed source code in GitHub. Written in html5/css3/<span class="emphasize">javascript</span></p>
</div>
</div>
<div class="bottom">
<div class="personal">
<table>
<tr><td class="copyright">Copyright</td><td><a href="http://personal.inet.fi/koti/egaga">Henrik Huttunen</a></td></tr>
<tr><td class="contact">Contact</td><td><a href="mailto:henrik.huttunen@gmail.com">henrik.huttunen@gmail.com</a></td></tr>
<tr><td class="support">I work at</td><td><a href="http://www.evident.fi">Evident Solutions</a></td></tr>
</table>
</div>
<div class="ideas">
<h3>Ideas to be realized</h3>
<ul>
<li>Solver/competition: given initial text and result text, what is the minimal command combination</li>
<li>Statistics for used commands</li>
<li>Browser extension, attaching Vim to textarea</li>
<li>Vim hero: complete vim-tasks as quickly as possible</li>
<li>Documentation on the web; partly executable</li>
<li>Vim tasks: column based tasklist like http://www.trello.com but with vim commands</li>
<li>Vim tetris, movement is faster using powerful commands</li>
</ul>
</div>
</div>
</body>
</html>