Files
ptp/.imdone/actions/board.js
T
Kirik 2d7ffb9e72 Major updates:
- Fix baseURL to dev.saguaro-cactus.ru
  - Add permissions management scripts
  - Add domain migration tools
  - Fix .env path in forms
  - Update telegram_bot.py for S3 direct upload
2025-10-26 21:12:57 +01:00

17 lines
481 B
JavaScript

const path = require('path')
module.exports = function () {
const project = this.project
return [
{
title: "Open in vscode", // This is what displays in the main menu
keys: ['alt+o'], // This is the keyboard shortcut
icon: "code", // This is the font awesome icon that displays in the main menu
action (task) {
const url = `vscode://file/${path.join(project.path, task.path)}:${task.line}`
project.openUrl(url)
}
}
]
}