VSCode扩展激活事件onCreate文件

时间:2018-10-18 07:40:03

标签: visual-studio-code vscode-extensions

我正在寻找在vscode上创建扩展名的方法,但是我想在有人创建新文件时触发它。我阅读了文档,但找不到OnCreate激活事件。有人知道是否可能触发此事件?还是为什么VSCode不允许触发此事件?

预先感谢您的回复;)

1 个答案:

答案 0 :(得分:0)

从VS Code 1.29开始,没有通用的server { # listen 80 default_server; listen 80; server_name xxx.ddns.net; # error_log /var/log/nginx/error.log; error_log /var/log/nginx/error.log debug; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. #try_files $uri $uri/ =404; proxy_pass http://localhost:5000; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection keep-alive; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } 激活事件。如果您想看这件事,请file a feature request

如果您只对特定语言的文件感兴趣,请使用onLanguage: activation event。当使用给定语言创建新文件时,将触发该事件。

否则,您可以在fileCreated上激活。如果这样做,请尝试将任何繁琐的操作推迟到真正需要它们之前,因为您的扩展程序将始终被激活