本文整理汇总了TypeScript中commands.Command.newFile方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Command.newFile方法的具体用法?TypeScript Command.newFile怎么用?TypeScript Command.newFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类commands.Command
的用法示例。
在下文中一共展示了Command.newFile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: handleTreeMenu
function handleTreeMenu(resourcePath: FilePath, commandName, elementId, isDirectory) {
if(commandName == "runScript") {
openTreeFile(resourcePath.getResourcePath(), function(){
Command.runScript();
});
} else if(commandName == "debugScript") {
openTreeFile(resourcePath.getResourcePath(), function(){
Command.debugScript();
});
} else if(commandName == "createArchive") {
var savePath: FilePath = FileTree.createResourcePath("/" + Common.getProjectName() + ".jar");
Command.createArchive(savePath, resourcePath);
}else if(commandName == "newFile") {
Command.newFile(resourcePath);
}else if(commandName == "newDirectory") {
Command.newDirectory(resourcePath);
}else if(commandName == "exploreDirectory") {
Command.exploreDirectory(resourcePath);
}else if(commandName == "openTerminal") {
Command.openTerminal(resourcePath);
}else if(commandName == "renameFile") {
if(isDirectory) {
Command.renameDirectory(resourcePath);
} else {
Command.renameFile(resourcePath);
}
}else if(commandName == "saveFile") {
openTreeFile(resourcePath.getResourcePath(), function(){
Command.saveFile();
});
}else if(commandName == "deleteFile") {
if(FileTree.isResourceFolder(resourcePath.getResourcePath())) {
Command.deleteDirectory(resourcePath);
} else {
Command.deleteFile(resourcePath);
}
}
}
示例2: createKeyBinding
createKeyBinding("ctrl n", "New File", true, function() {
Command.newFile(null);
});