Dear Bram, I am now working on porting Vim behavior to VSCodeVim, which is Vim keymap emulation extension of VSCode (I'm not an author nor maintainer). https://github.com/VSCodeVim/Vim
And I'm making moving with w,e,b,ge motion multibyte-sensitive. It means, w moves to the next character *class*, not next word of separated by whitespaces. And I ported the original Vim functions in search.c, mbyte.c, and so on. This is simple library to determine a class of given character. https://github.com/tyru/node-vim-char-class And question is, is it safe to port Vim source code to another language? Of cource, I want to respect original Vim source code, but VSCodeVim is MIT license. I want to avoid injecting a source code which violates license when making a pull request to VSCodeVim. Thanks -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
