Vimflowy

Vim shortcuts for Workflowy

Was ist Vimflowy?

Vimflowy ist eine Chrome-Erweiterung, die von Sydney Wojnach entwickelt wurde, und ihr Hauptmerkmal ist "Vim shortcuts for Workflowy".

Erweiterungsscreenshots

screenshot

Vimflowy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Vimflowy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension adds (some) VIM keyboard shortcuts to Workflowy.com.

It allows you to be more efficient in your work by emphasizing a mouse free interaction and placement of hand in the home row. 

It features modal based editing in which you mainly switch between two major modes:
- normal mode: deals exclusively with editing of text and bullets.
- Insert mode: simply takes input from the user. 

These keyboard shortcuts are similar, if not identical, in their behaviour to the ones that can be found in the text editor called VIM. 

All VIM behaviours are not supported yet. New shortcuts are continously added. Please refer to the following page for the full list of the supported shortcuts: https://github.com/Wojnach/vimflowy

Please report any bugs you might find to:
https://github.com/Wojnach/vimflowy/issues                    

Grundlegende Informationen zur Erweiterung

Name Vimflowy Vimflowy
ID jhoonlfajlaihdlcocigbpeacapaepng
Offizielle URL https://chromewebstore.google.com/detail/vimflowy/jhoonlfajlaihdlcocigbpeacapaepng
Beschreibung Vim shortcuts for Workflowy
Dateigröße 54.58 KB
Installationsanzahl 213
Aktuelle Version 0.0.5.2
Letztes Update 2023-05-11
Veröffentlichungsdatum 2020-06-12
Bewertung 4.88/5 Insgesamt 8 Bewertungen
Entwickler Sydney Wojnach
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Wojnach/vimflowy
Hilfeseite URL https://github.com/Wojnach/vimflowy/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vimflowy",
    "short_name": "Vimflowy",
    "description": "Vim shortcuts for Workflowy",
    "version": "0.0.5.2",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workflowy.com\/*",
                "https:\/\/*.workflowy.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentscript_start.js"
            ]
        },
        {
            "matches": [
                "https:\/\/workflowy.com\/*",
                "https:\/\/*.workflowy.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentscript_idle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "state.js",
        "TimeTagCounter.js",
        "easyMotion.js",
        "cursorMovement.js",
        "vimflowyFunctionLibrary.js",
        "keybindings.js",
        "transparentKeybindings.js",
        "vimflowy.js",
        "options.js"
    ],
    "permissions": [
        "https:\/\/workflowy.com\/*",
        "https:\/\/*.workflowy.com\/*",
        "storage"
    ],
    "options_page": "options.html"
}