Vimsert

Vimsert allows you to edit any textarea in a vim-mode Ace code editor modal.

Что такое Vimsert?

Vimsert - это расширение Chrome, разработанное gabriel, и его основная функция - "Vimsert allows you to edit any textarea in a vim-mode Ace code editor modal.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Vimsert

Скачайте файлы расширений Vimsert в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Vimsert is a simple open-source extension that allows you to open up a code editor for any textarea. It is based on the Ace editor, with vim keybindings enabled.

Contribute to it here: http://github.com/gabesullice/vimsert

Controls:

Open editor: Ctrl + i (while in a textarea)
Write changes: Esc, :w
Close editor: Esc, :q
Write, then Close: Esc, :wq

This project uses the Ace code editor. Information can be found here: http://ace.c9.io/
It is licensed under the BSD license, which you can find here: https://github.com/ajaxorg/ace/blob/master/LICENSE                    

Основная информация о расширении

Название Vimsert Vimsert
ID eljjplndnkopkklknfggleclpmiiddac
Официальный URL https://chromewebstore.google.com/detail/vimsert/eljjplndnkopkklknfggleclpmiiddac
Описание Vimsert allows you to edit any textarea in a vim-mode Ace code editor modal.
Размер файла 203 KB
Количество установок 74
Текущая Версия 0.0.2
Последнее Обновление 2015-06-15
Дата публикации 2015-06-15
Рейтинг 3.33/5 Всего 3 оценок
Разработчик gabriel
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vimsert",
    "version": "0.0.2",
    "description": "Vimsert allows you to edit any textarea in a vim-mode Ace code editor modal.",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "inc\/ace.js",
                "inc\/keybinding-vim.js",
                "inc\/theme-solarized_dark.js",
                "vimsert.min.js"
            ]
        }
    ]
}