Effective hg blame in VIM
Posted on nie 15 lipca 2018 in misc
If you want to open tab in vim, which shows you file history, file blame (who changed what) and patch history, here is easy command:
:let fname=expand("%") | tabnew | execute 'read!hg blame '.fname | vnew | execute 'read!hg glog '.fname | new | execute 'read!hg glog -p '.fname