将选择导出到WebStorm 10中的新文件?

时间:2015-10-27 20:48:53

标签: webstorm jetbrains-ide

在我的app.js文件中,我有以下代码:

myApp.directive("inventoryProduct", function ()
{
    return {

        restrict: "E",
        scope   : {
            name : "@",
            price: "@",
            onReport:"&"
        },
        template: "<div><b>{{name}} costs {{ price}}$</b></div>\n<div>\n    <button class=\"btn btn-lg btn-danger\" ng-click=\"onReport({IDontKnowA:name,IDontKnowB:price})\">Change name</button>\n</div>"

    }
})

查看template的值,它是一个HTML字符串。

问题

假设我正在选择html字符串/任何字符串 -

Webstorm中是否有任何选项:“将选择移动到新文件”并拥有此新文件名,以便现在文件将是:

myApp.directive("inventoryProduct", function ()
{
    return {

        restrict: "E",
        scope   : {
            name : "@",
            price: "@",
            onReport:"&"
        },
        template: "newFile.js"  

    }
})

1 个答案:

答案 0 :(得分:1)

不,没有这样的重构。请随意在youtrack中创建此功能的请求。相关票证:WEB-1232