patto 0.2.9

🪽 Yet another plain text format for quick note taking and task management

Δ lua/patto.lua
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

────────────────┐
• 182: return { │
────────────────┘
    end, {
      desc = 'Scan the workspace',
    })

    vim.api.nvim_buf_create_user_command(bufnr, 'LspPattoSnapshotPapers', function()
      vim.lsp.buf_request_all(0, 'workspace/executeCommand', {
        command = 'patto/snapshotPapers',
        arguments = {},
      }, function(results, _ctx, _config)
      end)
    end, {
      desc = 'Take a snapshot of papers',
    })
  end,

  docs = {

Δ package.json
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

──────┐
• 58: │
──────┘
      {
        "command": "patto.openPreview",
        "title": "Patto: Open preview"
      },
      {
        "command": "patto.snapshotPapers",
        "title": "Patto: Snapshot Papers (refresh cache)"
      }
    ],
    "views": {

───────┐
• 117: │
───────┘
    "semanticTokenScopes": [
      {
        "scopes": {
          "function": ["entity.name.function"],
          "variable": ["variable.other"],
          "string": ["string.quoted"],
          "comment": ["comment.line"],
          "keyword": ["keyword.control"],
          "operator": ["keyword.operator"],
          "property": ["variable.other.property"],
          "type": ["entity.name.type"],
          "enum": ["constant.language"],
          "modifier": ["storage.modifier"]
          "function": [
            "entity.name.function"
          ],
          "variable": [
            "variable.other"
          ],
          "string": [
            "string.quoted"
          ],
          "comment": [
            "comment.line"
          ],
          "keyword": [
            "keyword.control"
          ],
          "operator": [
            "keyword.operator"
          ],
          "property": [
            "variable.other.property"
          ],
          "type": [
            "entity.name.type"
          ],
          "enum": [
            "constant.language"
          ],
          "modifier": [
            "storage.modifier"
          ]
        }
      }
    ]

───────┐
• 185: │
───────┘
    "@vscode/vsce": "^3.7.0",
    "vscode-languageclient": "9.0.1"
  }
}
}
\ No newline at end of file