lili
lili

Reputation: 1906

Configure annotate Intellij command for SVN integration

Is it possible to configure "annotate" action in Intellij SVN integration to ignore white spaces (svn blame -x) ?

Upvotes: 2

Views: 1014

Answers (1)

bahrep
bahrep

Reputation: 30662

Yes, it is possible to make SVN ignore whitespaces when running blame/annotate/praise in IntelliJ IDEA.

  1. Start IDEA.
  2. Navigate to File | Settings | Version Control | Subversion.
  3. Select Presentation tab.
  4. Enable Ignore whitespace differences in annotations.

Check IDEAs documentation for more info:

Ignore whitespace differences in annotations

Select this check box if you want white spaces to be ignored when annotating, and, thus, get more meaningful annotations and cast out senseless ones.

BTW, you could easily find this option without leaving the IDE -- enter a keyword that could belong to the option that you look for into Search field. Search by options should be available on Preferences and Options dialogs. I guess that searching for whitespace could help in this case.

It seems that I made a research that you could easily do yourself. Quick web search reveals this ticket IDEA-48913: Add ability to ignore whitespace with SVN blame - annotate with instructions. :)

Upvotes: 3

Related Questions