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.

vimlogo

 

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. 

 

vim

 

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.

 

vimscreen

 

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 callback function is not specified! in the browser console, congratulations, you have found one more async function at large."

The program is described as "unstable" at the moment and if you want to help with the project visit the GitHub page. 

 

vimlogo

 

The fundamental problem with Vim in a browser is - why?  

More Information

Vim.js GitHub Page

Vim Home Page

Related Articles

Turbo Pascal In JavaScript

Pit - F# to JavaScript Compiler

Software From The 80s Running In Your Browser       

JavaScript Assembly Language       

JavaScript H.264 decoder       

Doom in a web page       

 

To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, FacebookGoogle+ or Linkedin,  or sign up for our weekly newsletter.

 

kotlin book

 

Comments




or email your comment to: comments@i-programmer.info

 

Banner


BusyBeaver(5) Is 47,176,870
03/07/2024

The thing about the BusyBeaver function is that it is very easy to understand, but very difficult to compute. We now know its value up to 5, which isn't much progress for more than 50 years work.



Pgextensions Index For PostgreSQL
22/07/2024

pgextensions.org by DataCloudGaze is an online index of all PostgreSQL extensions that are available on all Cloud providers' managed instances. Why is that useful?


More News

 

Last Updated ( Wednesday, 18 December 2013 )