我總是從代碼中刪除空白塊。我正在尋找一種方法來刪除eclipse中光標下的當前空白塊。Eclipse刪除空格快捷鍵
例如說我的代碼是:
<macrodef name="execute-step">
<attribute name="plugins" />
<attribute name="step" />
<sequential> |
<sleep-if-required sleep-time-property-name="[email protected]{step}"/>
(用管道「|」是我的光標)。這將是很好打的快捷鍵退出空白的該塊,給:
<macrodef name="execute-step">
<attribute name="plugins" />
<attribute name="step" />
<sequential>|<sleep-if-required sleep-time-property-name="[email protected]{step}"/>
(同樣,管道「|」顯示光標位置的空格被刪除後)。
任何幫助不勝感激。
你可以做一個控制查找替換'\ n'和'\ s'和'\ t'和'\ r',並用兩個代碼塊之間的任何內容替換它們。 – apple16
多少'Ctrl + Alt + J'(連接線)會對你有幫助? – everton