Results 5 issues of onozaty

MacでCtrl+カーソルキーがMisson Controlのショートカットキーと競合するので、Commandキー+カーソルキーでも動作するようにします。

enhancement

```js setTimeout(this._bind(function(){ if (document.activeElement == this.suggestArea || document.activeElement == this.input) { // keep suggestion return; } this.changeUnactive(); this.oldText = this.getInputText(); if (this.timerId) clearTimeout(this.timerId); this.timerId = null; setTimeout(this._bind(this.clearSuggestArea), 500); }, 500));...

検索対象の文字と、表示する文字を別のものにできるような仕組みを入れられるようにします。 たとえば、「あ」という入力があった場合に、「アメリカ」を候補として出したい場合に、現状だとsuggest.js内のコードを変えないと難しいので、それをメソッドの差し替えなどで簡単に出来るようにします。

* https://developer.chrome.com/docs/extensions/migrating/

Thank you for a great tool. I would like to add a prefix to `@@map` in enum. For example, `enum UserType` would look like `@@map("enum_user_type")`. I couldn't find it in...