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
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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)
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user