notable / notable-customizations

A repository containing a collection of interesting community-created customizations for Notable.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Notable Customizations

This repository contains a collection of interesting community-created customizations and tips for Notable.

Add your own interesting customization to this collection by submiting a pull request or sharing it in our chat.

Commands

List of interesting command usages.

  • No customizations yet

Context Keys

List of interesting context keys expressions.

  • No customizations yet

Custom CSS

List of interesting custom CSS snippets.

  • No customizations yet

Custom JS

List of interesting custom JavaScript snippets.

Settings

List of interesting settings configurations.

  • No customizations yet

Shortcuts

List of interesting custom shortcuts.

Paste clipboard content surrounded by code fence
{
  "shortcut": "Cmd+Shift+D",
  "command": "macro",
  "args": [
    ["editor.paste", ["```\n"]],
    "editor.paste",
    ["editor.paste", ["\n```\n"]]
  ]
}
Turn selection into code fence
{
  "shortcut": "Cmd+D",
  "command": "macro",
  "args": [
    "editor.cut",
    ["editor.paste", ["```\n"]],
    "editor.paste",
    ["editor.paste", ["\n```\n"]]
  ]
}
Surround selected text with e.g. double-asterisks
{
  "shortcut": "Cmd+B",
  "command": "macro",
  "args": [
    "editor.cut",
    ["editor.paste", ["**"]],
    "editor.paste",
    ["editor.paste", ["**"]]
  ]
}
Insert text at beginning of line, e.g. headers
{
  "shortcut": "Cmd+3",
  "command": "macro",
  "args": [
    "editor.cursor.line.start",
    ["editor.paste", ["### "]]
  ]
}

Theming

List of interesting theming-related configurations.

  • 3500+ different themes ported from VS Code are installable via the "Theme: Install..." command

Other customizations

List of other interesting customizations, mainly involving third-party tools.

About

A repository containing a collection of interesting community-created customizations for Notable.