Beyond Compare has a button and menu item Ignore Unimportant Differences. When selected the diff will ignore whitespace and various formatting differences, but will also ignore changes in comments. How can I make it show comment changes, but still ignore whitespace?
Asked
Active
Viewed 3.5k times
2 Answers
33
- Use the Session → Session Settings menu item.
- Go to the Importance tab.
- In the list box on the top left, check Comments.
- In the drop-down at the bottom left, choose Also update session defaults. (if you want to change it permanently)
- Click OK.
- Verify that View → Ignore Unimportant Differences is enabled.

J. Chris Compton
- 538
- 1
- 6
- 25

Tor Klingberg
- 4,790
- 6
- 41
- 51
-
4Do you know how to get it to ignore white space for folder compare? – niken Aug 02 '17 at 15:50
-
3"Ignore Unimportant Differences" - where is this? Can't see it in BC 3 – Martin Capodici Nov 06 '17 at 03:19
-
2"Ignore Unimportant Differences" is in the View menu. – jciloa Mar 19 '19 at 07:51
-
i cant fine "comments". May be i have newer BeyondCompare. I found "leading white spaces in the lower menu" though – M. Usman Khan Jan 21 '20 at 09:27
-
@M.UsmanKhan It will be in the grammar elements box once you choose a source type on the Format tab for the Left and Right. – Brian Apr 16 '20 at 19:52
0
For AutoHotKey users, here is a hotkey script to do this with a single hotkey which toggles comments between unimportant and important.
#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

u8it
- 3,956
- 1
- 20
- 33