Beyond Compareにはボタンとメニュー項目Ignore Unimportant Differencesがあります。選択すると、diffは空白やさまざまなフォーマットの違いを無視しますが、コメントの変更も無視します。コメントの変更を表示しながら、空白を無視するにはどうすればよいですか?
AutoHotKeyユーザーのために、コメントを重要でないものと重要なものに切り替える単一のホットキーでこれを行うホットキースクリプトを次に示します。
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance force
;Make hotkeys specific to BeyondCompare
#IfWinActive, ahk_exe BCompare.exe
;Hotkey here, Numpad5 is being used, could be anything
Numpad5::
send, !se{right}{right}{tab}{tab}{tab}{down}{down}{down}{down}{down}{space}{enter}
return