Skip to content

Instantly share code, notes, and snippets.

@koron
Created July 24, 2020 01:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koron/1f049d065c7146a11b2689d5372d3d7b to your computer and use it in GitHub Desktop.
Save koron/1f049d065c7146a11b2689d5372d3d7b to your computer and use it in GitHub Desktop.
Vim's failed tests and its reasons, i fixed

Vim's failed tests and its reasons, i fixed

最近直したVimの失敗していたテストとその原因

  • Menu was shown in Japanese

    メニューが日本語表示されてた。

    • Test_menu
    • Test_add_remove_menu
    • Test_click_in_other_winbar maybe / たぶん
    • Test_click_in_winbar maybe / たぶん
    • Test_redraw_after_scroll
  • 'iskeyword' option had invalid value against UTF-8 on Windows

    Windows では 'iskeyword' にUTF-8として無効な値が設定されていた。

    • Test_classes_re1
    • Test_classes_re2
  • Multiline prompt caused these troubles

    プロンプトを複数行に設定していたため以下の問題を起こしてた。

    • Test_terminal_composing_unicode
    • Test_terminal_env
    • Test_terminal_noblock
    • Test_terminal_paste_register
    • Test_terminal_scrape_multibyte
    • Test_terminal_scrollback
    • Test_terminal_servername
    • Test_terminal_version
  • Test_System

    Was using more.exe in MSYS2 instead of more.com.

    more.com ではなく MSYS2 の more.exe を実行してた。

  • Test_undofile_earlier

    Temporary file couldn't be removed in another test. It affected this.

    他のテストの不具合でで消されなかった一時ファイルが悪さをしていた。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment