Results 36 comments of cohama

wildmenu appeared with a commented out `init.vim`!

I expect wildmenu is like CUI. ![image](https://user-images.githubusercontent.com/348382/61505910-6cefbb00-aa1b-11e9-8466-486bb6387fa1.png) I also noticed that wildmenu dissapeared again with `--disable-ext-popupmenu` In detail, with commented out `init.vim`, then run `gnvim --disable-ext-cmdline --disable-ext-popupmenu` Is this by...

`Agit!` is not suitable name for this feature. I think `!` means overwrite (`:w!`, `:func!`), force (`:q!`, `:e!`), invert (`:global!`, `:sort!`) or make some small changes (`:join!`, `:silent!`).

How aboud `:AgitWithFormat`?

レスポンス遅くてすみません。 SHIFT_JIS は盲点でした。。。 イメージとしては `:AgitFile --fenc=cp932` みたいな感じでしょうか。 実装としては Git の `--textconv` は使わずに Vim 内部で文字コード変換をかけようかと思っています。

これ、既存の文字コード周りの実装とかち合っていて難産になりそうなのですが一旦仮実装版を作りました。 `agitfile-fenc` ブランチをお試しください。 `:AgitFile --fenc=cp932` で概ね動作すると思います。 ただし、現状 `set encoding=utf-8` でなければならない制約があります。

報告ありがとうございます&対応遅くなりすみません。 ひとまず教えていただいた情報を元に修正を試みます。

ちなみにですが、Git のバージョンを教えていただいても良いでしょうか?

要望ありがとうございます。 確かにあった方が良さそうな感じがしますね。考えてみます。

Try to use `\c` pattern and `with_submatch` feature, which is like ```vim call lexima#add_rule({'char': '(', 'at': '\c\\\(big\)\%#', 'input_after': '\\\1)', 'filetype': 'tex', 'with_submatch': 1}) ```