Debuginfo

思考とアウトプット

vim

モダンな環境に挑戦してみる

naoyaさんの近頃の開発環境 : Mosh、z、tmux、Emacs、Perl についてに超絶インスパイアされました。 現状 ssh - 普通 vim - 適当に同僚シンタックスハイライトをコピーして使う。PBPのやつも使ってる。 screen - 2006年に作り込んで以来放置。すでに7年!信…

vimでファイルのオープン後に以前編集していた行から編集する方法

vim

以下を.vimrcに記述する " Uncomment the following to have Vim jump to the last position when " reopening a file if has("autocmd") au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") \| exe "normal! g'\"" | endif endif