在Eclipse中,如果我選擇一些在多行上分割的代碼,並且只想在一行上格式化,我該怎麼做?Eclipse - 如何將選中的代碼從多行格式化爲單行?
我想知道是否有可能配置在Eclipse中的js格式化,從而能夠只使用SHIFT + CMD + F.
代碼拆分爲幾行:
$('a#pop1').fancybox({
'padding': 0,
'margin-left': 30,
'width': 728,
'height': 400,
'maxWidth': 728,
'maxHeight': 400
});
以及如何我想實現,分成一行。
$('a#pop1').fancybox({'padding': 0,'margin-left': 30,'width': 728,'height': 400,'maxWidth': 728,'maxHeight': 400});
http://javascriptcompressor.com/和http://jsbeautifier.org/ –
不,我只需要知道它是否可以在Eclipse IDE中使用。不管怎麼說,還是要謝謝你。 –