vanessa-luna / banner-comments-plus

Figlet Font Code Comments (ascii fonts)
MIT License
14 stars 4 forks source link
/*
 ██████   █████  ███    ██ ███    ██ ███████ ██████
 ██   ██ ██   ██ ████   ██ ████   ██ ██      ██   ██
 ██████  ███████ ██ ██  ██ ██ ██  ██ █████   ██████
 ██   ██ ██   ██ ██  ██ ██ ██  ██ ██ ██      ██   ██
 ██████  ██   ██ ██   ████ ██   ████ ███████ ██   ██

  ██████  ██████  ███    ███ ███    ███ ███████ ███    ██ ████████ ███████
 ██      ██    ██ ████  ████ ████  ████ ██      ████   ██    ██    ██            ██
 ██      ██    ██ ██ ████ ██ ██ ████ ██ █████   ██ ██  ██    ██    ███████     ██████
 ██      ██    ██ ██  ██  ██ ██  ██  ██ ██      ██  ██ ██    ██         ██       ██
  ██████  ██████  ██      ██ ██      ██ ███████ ██   ████    ██    ███████
*/
      credits: lunar_limbo, original author: IMFUZZ

Organize your code with large ASCII font comments to quickly idenfity your position in the file.

Deeply customize the output with prefix, suffix, perLinePrefix, and more. Use commands or stored configs to quickly add large banner comments using figlet. With geddski.macros you can setup keybinds for your favorite configs

Play around with over 275+ mostly useless ascii fonts in this sandbox.

NEW! Is your favorite figlet missing? No problem! Add your own .flf fonts for use with this extension. Create your own or download from the many sources online

Features

Designed primarily so you can save your favorite styles in reusable configs. Find your favorite figlet fonts and settings and assign them to a keyboard shortcut!

Examples

i3 configuration

example: i3 config

vscode extension

example: vscode extension

Commands

Apply - Converts selection or line into banner comment

feature 'Apply'

ApplyFromConfig - Convert selection or line using stored config

feature 'ApplyFromConfig'

Keybinds for configs - Apply configs with keybinds using geddski.macros

feature 'Apply Config with Keybind'

Supports multiple selections

feature 'Multiple Selections'

see contributions for other commands

Extension Settings

Figlet Settings

The figlet settings can be best understood by playing with this tool

Trim Settings

Comment Style

Some languages don't have both styles of comments. Some langauges have different standards for how to use those comment styles. Take your pick.

Fix Settings

These are rather straight forward. But remember these caveats:

  1. perLinePrefix is applied to your prefix and suffix
  2. Use \n to add newlines
  3. perLinePrefix applied even without commentStyle line added

Font Settings

favorites - store your favorite fonts in a list for easy selection with ApplyFromFavorites

customFonts - list of paths to custom figlet font files you may download

Config Options

configDescriptionKeys - a list of 'keys' which are shown when displaying ApplyFromConfig to add more data than simply the name

configs - a list of configs saved for reuse with ApplyFromConfig, All settings in contributions can be added to a config. If a settings is not specified in a config, the default option is used.

Macro configuration

  1. install geddski.macros
  2. write configs in settings file
  3. write macro for config in settings file
  4. create keybind

2. Write config

    "banner-comments-plus.configs": {
        "h1": {
            "font": "Small",
            "trimEmptyLines": true,
            "commentStyle": "block",
            "prefix": "",
            "suffix": "--------------------------------------------------"
        }
    }

3. Write macro

The args value MUST match the key given to the config in your settings.

     "macros": {
        "banner-comments-plus-h1": [
            {"command": "banner-comments-plus.ApplyFromConfig", "args": "h1"},
        ]
    }

4. Create Keybind

    {
        "key": "ctrl+shift+delete",
        "command": "macros.banner-comments-plus-h1",
        "when": "editorTextFocus"
    }

Requirements

None!

Known Issues