Vim.js |
Written by Harry Fairhead |
Tuesday, 17 December 2013 |
This is not the time to get into editor wars - Vim is now available in browser. Yes, a JavaScript port of Vim exists.
There are many "ported to JavaScript" projects and stories, but the idea of this one takes a little getting used to - not because of its high performance but because it really doesn't belong in a browser. Vim is a command-based text editor based on the Unix vi editor. The Editor Wars that have been going on since the early days of vi are basically about whether vi or Emacs is the better one to use. The point being that if you live in a single text editor you slowly get it set up as you want it and slowly you merge your identity with it. Many programmers claim to be much faster using vi or Emacs than with the best "code completion" feature laden modern editor.
Vi, Vim and Emacs are almost badges that you are a "proper" programmer and we all know that "proper" programmers don't do JavaScript. However, Vim is written in C++ and Emscripten compiles C++ to JavaScript. So no C++, no matter how iconic, is safe. This is exactly what Lu Wang has done with Vim to produce a JavaScript port.
The conversion process isn't always smooth, however, and Lu Wang relates the story of the biggest problem of all - the fact that all previous Vim environments had a non-busy synchronous sleep function. That is, you can use sleep(t) without blocking the entire app. JavaScript is asynchronous and single threaded and hence functions that use sleep have to be converted to asynchronous callbacks. As Lu Wang puts it: "Whenever vim.js crashes and you see The program is described as "unstable" at the moment and if you want to help with the project visit the GitHub page.
The fundamental problem with Vim in a browser is - why? More InformationRelated ArticlesPit - F# to JavaScript Compiler Software From The 80s Running In Your Browser
To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin, or sign up for our weekly newsletter.
Comments
or email your comment to: comments@i-programmer.info
|
Last Updated ( Wednesday, 18 December 2013 ) |