提升Android 開發速度系列 (3) Postfix Completion

Evan Chen
Evan Android Note
Published in
4 min readJul 29, 2018

Postfix 讓我們在輸入的程式碼周圍產生程式碼。

下例先打User(),再輸入.val 就會自動產生var user = User()

return

其他postfix

自訂Postfix

安裝Plugin:Custom Postfix Templates

安裝完之後,我們來自訂一個print的postfix

新增

點Edit Your Temples in an Editor ,就可以直接直接在上面編輯要新增的postfix。

.print 代表postfix的名稱

:後面的print var 是描述

ANY 指的是型別

ANY鍵頭的右方則是產生的程式碼,$expr$是原輸入的字。

參考

下一篇:File Template

--

--