Home

Awesome

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.

Context Keys

List of interesting context keys expressions.

Custom CSS

List of interesting custom CSS snippets.

Custom JS

List of interesting custom JavaScript snippets.

Settings

List of interesting settings configurations.

Shortcuts

List of interesting custom shortcuts.

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

Theming

List of interesting theming-related configurations.

Other customizations

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