by shigemk2

当面は技術的なことしか書かない

vim

vim v8.2.0400

Vim

Problem: Not all tests using a terminal are in the list of flaky tests. Solution: Introduce the test_is_flaky flag. Release v8.2.0400: patch 8.2.0400: not all tests using a terminal are in the list of fla… · vim/vim · GitHub

vim 8.2.0050

vim

Release v8.2.0050: patch 8.2.0050: after deleting a file mark it is still in viminfo · vim/vim · GitHub Problem: After deleting a file mark it is still in viminfo. Solution: When a file mark was deleted more recently than the mark in the m…

vim v8.1.1750

Vim

problemとsolutionで分ける書き方なのね Problem: Depending on the terminal width :version may miss a line break. Solution: Add a line break when needed. Release v8.1.1750: patch 8.1.1750: depending on the terminal width :version may miss a l…

vim 8.1.1688

vim

Problem: Old makefiles are no longer useful. Solution: Delete the makefiles, they most likely don't work anyway. Release v8.1.1688: patch 8.1.1688: old makefiles are no longer useful · vim/vim · GitHub

vim v8.1.1450

Vim

vim一切使わないのにhomebrew-coreのFormulaをあげてる リリース直後だとファイルハッシュが変わる可能性あるからすこしだけ間をおく Release v8.1.1450: patch 8.1.1450: popup window positioning wrong when using padding or … · vim/vim · GitHub

vim 8.1.1397

vim

そろそろだな Release v8.1.1397: patch 8.1.1397: build fails in tiny version · vim/vim · GitHub

vimで矢印キーでABCDとか打たせない

vim

set nocompatible 1000番煎じくらいのネタ。viの設定を継承させないのと、コントロールコードをきちんと矢印キーとして解釈させるのがポイント。 mattn.kaoriya.net

vimを使ってみよう

vim

YBlog - Learn Vim Progressivelyとりあえずvimには 入力モードとノーマルモードがあって、 i で入力モードに入り、 なんかあったらescを連打して、 終了したいときは:wqすればいいってことだね☆文字の削除はx とか dとか。 行の削除はdd これらはノーマルモ…

vimでの終了キー

vim

コマンドモードにて。 :q セーブせずに終了 :q! 変更した行もセーブせずに終了 :w セーブするが終了しない。 :wq セーブして終了