kiwanami / vsc-smartchr

smartchr for vscode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

smartchr

Insert several candidates with a single key.

Features

Extension Settings

  • smartchr.definitions: smartchr keybinding definitions (JSON)
    • property (language ID) :
      • property (key text) : array of toggle patterns
        • !! indicates the cursor insertion position

Example:

    "smartchr.definitions": {
        "javascript": {
            "F": ["F","$","$(!!)"],
            ">": [">","ev => {!!}",">>"],
            "L": ["L","let ","LL"],
        },
        "go": {
            ":" : [":", " := ", "::"]
        }
    }

About

smartchr for vscode

License:MIT License


Languages

Language:TypeScript 100.0%