vim
Release v8.2.4950: patch 8.2.4950: text properties position wrong after shifting text · vim/vim · GitHub Problem: Text properties position wrong after shifting text. Solution: Adjust the text properties when shifting a block of text.
Problem: Vim9 expression test fails without the job feature. Solution: Add a check for the job feature. (Dominique Pellé, closes #10373) github.com
Release v8.2.4800: patch 8.2.4800: missing test update for adjusted t_8u behavior · vim/vim · GitHub Problem: Missing test update for adjusted t_8u behavior. Solution: Update and extend the test.
Release v8.2.4600: patch 8.2.4600: Vim9: not enough test coverage for executing :def fun… · vim/vim · GitHub Problem: Vim9: not enough test coverage for executing :def function. Solution: Add a few more tests. Fix inconsistencies.
v8.2.4550: patch 8.2.4550: Motif: cannot set the color of the scrollbar thumb brew bump-formula-pr --url=https://github.com/vim/vim/archive/v8.2.4550.tar.gz --sha256=55d3ac526bed12090b8d2021810ec6c7565a55a54ba8401c614f4e794d58c7e0 vim --fo…
Release v8.2.2800: patch 8.2.2800: after a timer displays text a hit-enter prompt is given · vim/vim · GitHub Problem: After a timer displays text a hit-enter prompt is given. Solution: Reset msg_didany and need_wait_return. (closes #8136)
Release v8.2.2750: patch 8.2.2750: Vim9: error for using underscore in nested function · vim/vim · GitHub Problem: Vim9: error for using underscore in nested function. Solution: Do not consider "_" already defined. (closes #8096)
Release v8.2.2600: patch 8.2.2600: Vim9: crash when putting an unknown type in a dictionary · vim/vim · GitHub Problem: Vim9: crash when putting an unknown type in a dictionary. Solution: Handle a NULL type pointer.
Release v8.2.2550: patch 8.2.2550: signal stack size is wrong with latest glibc 2.34 · vim/vim · GitHub Problem: Signal stack size is wrong with latest glibc 2.34. Solution: Use sysconf(_SC_SIGSTKSZ) if available. (Zdenek Dohnal, closes #7…
Release v8.2.2500: patch 8.2.2500: build fails without the GUI feature · vim/vim · GitHub Problem: Build fails without the GUI feature. Solution: Add #ifdef.
Release v8.2.2400: patch 8.2.2400: Vim9: compiled functions are not profiled · vim/vim · GitHub Problem: Vim9: compiled functions are not profiled. Solution: Add initial changes to profile compiled functions. Fix that a script-local functi…
Release v8.2.2250: patch 8.2.2250: Vim9: sublist is ambiguous · vim/vim · GitHub Problem: Vim9: sublist is ambiguous. Solution: Require white space around the colon. (closes #7409)
Release v8.2.2150: patch 8.2.2150: Github actions CI isn't used for all available platforms · vim/vim · GitHub Problem: Github actions CI isn't used for all available platforms. Solution: Update the github workflows. (Ozaki Kiichi, closes …
Release v8.2.2100: patch 8.2.2100: insufficient testing for function range and dict · vim/vim · GitHub Problem: Insufficient testing for function range and dict. Solution: Add a few tests. (Dominique Pellé, closes #7428)
Release v8.2.2050: patch 8.2.2050: search test contains unneeded sleeps · vim/vim · GitHub Problem: Search test contains unneeded sleeps. Solution: Rename the function, remove sleeps. (Christian Brabandt, closes #7369) 久々
v8.2.1700: patch 8.2.1700: Vim9: try/catch causes wrong value to be returned Problem: Vim9: try/catch causes wrong value to be returned. Solution: Reset tcd_return. (closes #6964)
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
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…
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…
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一切使わないのにhomebrew-coreのFormulaをあげてる リリース直後だとファイルハッシュが変わる可能性あるからすこしだけ間をおく Release v8.1.1450: patch 8.1.1450: popup window positioning wrong when using padding or … · vim/vim · GitHub
そろそろだな Release v8.1.1397: patch 8.1.1397: build fails in tiny version · vim/vim · GitHub
set nocompatible 1000番煎じくらいのネタ。viの設定を継承させないのと、コントロールコードをきちんと矢印キーとして解釈させるのがポイント。 mattn.kaoriya.net
YBlog - Learn Vim Progressivelyとりあえずvimには 入力モードとノーマルモードがあって、 i で入力モードに入り、 なんかあったらescを連打して、 終了したいときは:wqすればいいってことだね☆文字の削除はx とか dとか。 行の削除はdd これらはノーマルモ…
コマンドモードにて。 :q セーブせずに終了 :q! 変更した行もセーブせずに終了 :w セーブするが終了しない。 :wq セーブして終了