2019-12-04から1日間の記事一覧

How to invoke / drop vim spell chek function

To invoke the vim spell check function, :set spell To regain the state without the highlights, :set nospell Then the frequency of my misspelling will be redueced (really?).

vimで最近開いた箇所からファイルが開かない

.vimcrcに以下の設定。 au BufRead * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g`\"" | endif しかし、うまく動作しない計算機がある。 原因は.viminfoがrootのものになってしまっており、vimの編集記録がこれに記録されていなかった…