Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akahuku/wasavi
wasavi is an extension for Chrome, Firefox, and Opera. wasavi changes a textarea element to virtual vi editor which supports almost all the vi/ex commands.
https://github.com/akahuku/wasavi
extension javascript vi
Last synced: 28 days ago
JSON representation
wasavi is an extension for Chrome, Firefox, and Opera. wasavi changes a textarea element to virtual vi editor which supports almost all the vi/ex commands.
- Host: GitHub
- URL: https://github.com/akahuku/wasavi
- Owner: akahuku
- License: other
- Created: 2012-02-27T09:28:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T19:50:21.000Z (8 months ago)
- Last Synced: 2024-10-01T18:23:25.071Z (about 1 month ago)
- Topics: extension, javascript, vi
- Language: JavaScript
- Homepage: http://appsweets.net/wasavi/
- Size: 32.7 MB
- Stars: 1,508
- Watchers: 19
- Forks: 66
- Open Issues: 125
-
Metadata Files:
- Readme: README-BIN-FILES.md
- Changelog: changelog.txt
- License: LICENSE
Awesome Lists containing this project
README
A description of binary files
=============================This file describes the role and the source code location of binary files in
the wasavi extension package.* src/chrome/consumer_keys.bin
Blowfish-encrypted JSON file which contains an application key and a secret
key of each account of Dropbox, Google Drive and Microsoft OneDrive.The content of this file is generated
by
using as a template.* src/chrome/unicode/fftt_general.dat
The key-value dictionary to extend f/F/t/T command of the vi editor.
By referring to this file, for example, "fa" command can jump to "ä", "à",
"á", "â" ... as well as "a".The content of this file is generated
by .
And this script uses [UnicodeData.txt](http://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt).* src/chrome/unicode/fftt_han_ja.dat
Same role as fftt_general.dat, but this file contains pronunciation data of
CJK Ideograph characters. These are a lot very much, so data is packed by
special encoding.The content of this file is generated
by .
And this script uses Unihan_Readings.txt in [Unihan.zip](http://www.unicode.org/Public/UCD/latest/ucd/Unihan.zip).* src/chrome/unicode/linebreak.dat
Referred when auto-formatting the input line with the specification of
Unicode Line Break Algorithm: .The content of this file is generated
by .
And this script uses [LineBreak.txt](http://www.unicode.org/Public/UCD/latest/ucd/LineBreak.txt).