WebStorm - Vim like feature" Sort"

时间:2016-09-08 11:59:27

标签: editor webstorm

是否有快捷方式来对WebStorm中的代码行进行排序?

例如,我们假设我有三个{ "links" : [ { "rel" : "self", "href" : "http://localhost:8080/api/sdr/rides/search/findRidesForListing" } ], "content" : [ { "country" : null, "service" : null, "price" : null, "finalPrice" : null, "vehicle" : null, "rideMapShape" : null, "customerRating" : null, "status" : null, "driver" : null, "fromLongitude" : 0.0, "fromLatitude" : 75.546546, "toLongitude" : 0.0, "driverRating" : null, "toLatitude" : 0.0, "customer" : null, "fromAddress" : null, "toAddress" : null, "rideEndTime" : null, "rideStartTime" : null, "totalDistance" : null, "cancelReason" : null, "links" : [ { "rel" : "self", "href" : "http://localhost:8080/api/sdr/rides/0" }] } ] } 并且我想对它们进行排序

imports a, b, c

突出显示import c import b import a + 快捷方式

import c, import b, import a + sort

1 个答案:

答案 0 :(得分:3)

WebStorm中没有内置功能可以自定义文本/代码行。

您可以安装和使用 String Manipulation插件,它对字符串有很多有用的操作 - 包括对它们进行排序。

enter image description here