web-dev-qa-db-ja.com

Beyond Compareで空白を無視し、コメントに変更を表示する方法

Beyond Compareにはボタンとメニュー項目Ignore Unimportant Differencesがあります。選択すると、diffは空白やさまざまなフォーマットの違いを無視しますが、コメントの変更も無視します。コメントの変更を表示しながら、空白を無視するにはどうすればよいですか?

18
Tor Klingberg
  1. SessionSession Settingsメニュー項目を使用します。
  2. 重要度タブに移動します。
  3. 左上のリストボックスで、[コメント]をオンにします。
  4. 左下のドロップダウンでAlso update session defaultsを選択します。 (恒久的に変更したい場合)
  5. [〜#〜] ok [〜#〜]をクリックします。
  6. ViewIgnore Unimportant Differencesが有効になっていることを確認します。
20
Tor Klingberg

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
0
u8it