是否有快捷方式来对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