[maven] IDEA-313767 refactoring: always background mode for most tests
[idea/community.git] / bin / idea.properties
1 # Use ${idea.home.path} macro to specify location relative to IDE installation home.
2 # Use ${xxx} where xxx is any Java property (including defined in previous lines of this file) to refer to its value.
3 # Note for Windows users: please make sure you're using forward slashes: C:/dir1/dir2.
4
5 #---------------------------------------------------------------------
6 # Uncomment this option if you want to customize a path to the settings directory.
7 #---------------------------------------------------------------------
8 # idea.config.path=${user.home}/.@@settings_dir@@/config
9
10 #---------------------------------------------------------------------
11 # Uncomment this option if you want to customize a path to the caches directory.
12 #---------------------------------------------------------------------
13 # idea.system.path=${user.home}/.@@settings_dir@@/system
14
15 #---------------------------------------------------------------------
16 # Uncomment this option if you want to customize a path to the user-installed plugins directory.
17 #---------------------------------------------------------------------
18 # idea.plugins.path=${idea.config.path}/plugins
19
20 #---------------------------------------------------------------------
21 # Uncomment this option if you want to customize a path to the logs directory.
22 #---------------------------------------------------------------------
23 # idea.log.path=${idea.system.path}/log
24
25 #---------------------------------------------------------------------
26 # Maximum file size (in KiB) IDE should provide code assistance for.
27 # The larger file is the slower its editor works and higher overall system memory requirements are
28 # if code assistance is enabled. Remove this property or set to very large number if you need
29 # code assistance for any files available regardless of their size.
30 #---------------------------------------------------------------------
31 idea.max.intellisense.filesize=2500
32
33 #---------------------------------------------------------------------
34 # Maximum file size (in KiB) the IDE is able to open.
35 #---------------------------------------------------------------------
36 idea.max.content.load.filesize=20000
37
38 #---------------------------------------------------------------------
39 # This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (KiB).
40 # Older lines are deleted. In order to disable cycle buffer use idea.cycle.buffer.size=disabled
41 #---------------------------------------------------------------------
42 idea.cycle.buffer.size=1024
43
44 #---------------------------------------------------------------------
45 # Configure if a special launcher should be used when running processes from within IDE.
46 # Using Launcher enables "soft exit" and "thread dump" features
47 #---------------------------------------------------------------------
48 idea.no.launcher=false
49
50 #---------------------------------------------------------------------
51 # To avoid too long classpath
52 #---------------------------------------------------------------------
53 idea.dynamic.classpath=false
54
55 #---------------------------------------------------------------------
56 # There are two possible values of idea.popup.weight property: "heavy" and "medium".
57 # If you have WM configured as "Focus follows mouse with Auto Raise" then you have to
58 # set this property to "medium". It prevents problems with popup menus on some
59 # configurations.
60 #---------------------------------------------------------------------
61 idea.popup.weight=heavy
62
63 #---------------------------------------------------------------------
64 # Removing this property may lead to editor performance degradation under Windows.
65 #---------------------------------------------------------------------
66 sun.java2d.d3d=false
67
68 #---------------------------------------------------------------------
69 # Removing this property may lead to editor performance degradation on Java 8+.
70 #---------------------------------------------------------------------
71 swing.bufferPerWindow=true
72
73 #---------------------------------------------------------------------
74 # Removing this property may lead to editor performance degradation under X Window.
75 #---------------------------------------------------------------------
76 sun.java2d.pmoffscreen=false
77
78 #---------------------------------------------------------------------
79 # Enables HiDPI support in JBR
80 #---------------------------------------------------------------------
81 sun.java2d.uiScale.enabled=true
82
83 #---------------------------------------------------------------------
84 # Applicable to the Swing text components displaying HTML (except JEditorPane).
85 # Rebases CSS size map depending on the component's font size to let relative
86 # font size values (smaller, larger) scale properly. JBR-only.
87 #---------------------------------------------------------------------
88 javax.swing.rebaseCssSizeMap=true
89
90
91 #---------------------------------------------------------------------
92 # Workaround for accessing (in terms of a11y) long VCS logs on macOS. JBR-only.
93 #---------------------------------------------------------------------
94 sun.awt.mac.a11y.tableAccessibleRowCountThreshold=1000
95
96 #---------------------------------------------------------------------
97 # Enabling an optimization that excludes traversal of collapsed accessible nodes from the accessible tree. JBR-4167
98 #---------------------------------------------------------------------
99 javax.swing.JTree.excludeAccessibleChildrenFromClosedNodes=true
100
101 #---------------------------------------------------------------------
102 # Workaround to avoid long hangs while accessing clipboard under Mac OS X.
103 #---------------------------------------------------------------------
104 #ide.mac.useNativeClipboard=True
105
106 #---------------------------------------------------------------------
107 # Maximum size (KiB) the IDE will use to show historical file contents -
108 # in Show Diff or when calculating Digest Diff
109 #---------------------------------------------------------------------
110 #idea.max.vcs.loaded.size.kb=20480
111
112 #---------------------------------------------------------------------
113 # IDEA file chooser peeks inside directories to detect whether they contain a valid project
114 # (to mark such directories with a corresponding icon).
115 # Uncommenting the option prevents this behavior outside the user home directory.
116 #---------------------------------------------------------------------
117 #idea.chooser.lookup.for.project.dirs=false
118
119 #---------------------------------------------------------------------
120 # In LWCToolkit.invokeAndWait() listens to EDT state and disposes the invocation event
121 # when EDT becomes free but the invocation event is not yet dispatched (considered lost).
122 # This prevents a deadlock and makes the invocation return some default result.
123 #---------------------------------------------------------------------
124 sun.lwawt.macosx.LWCToolkit.invokeAndWait.disposeOnEDTFree=true
125
126 #---------------------------------------------------------------------
127 # Experimental options that do a number of things to make truly smooth scrolling possible:
128 #
129 # * Enables hardware-accelerated scrolling.
130 #     Blit-acceleration copies as much of the rendered area as possible and then repaints only newly exposed region.
131 #     This helps to improve scrolling performance and to reduce CPU usage (especially if drawing is compute-intensive).
132 #
133 # * Enables "true double buffering".
134 #     True double buffering is needed to eliminate tearing on blit-accelerated scrolling and to restore
135 #     frame buffer content without the usual repainting, even when the EDT is blocked.
136 #
137 # * Adds "idea.true.smooth.scrolling.debug" option.
138 #     Checks whether blit-accelerated scrolling is feasible, and if so, checks whether true double buffering is available.
139 #
140 # * Enables handling of high-precision mouse wheel events.
141 #     Although Java 7 introduced MouseWheelEven.getPreciseWheelRotation() method, JScrollPane doesn't use it so far.
142 #     Depends on the Editor / General / Smooth Scrolling setting, remote desktop detection and power save mode state.
143 #     Ideally, we need to patch the runtime (on Windows, Linux and macOS) to improve handling of the fine-grained input data.
144 #     This feature can be toggled via "idea.true.smooth.scrolling.high.precision" option.
145 #
146 # * Enables handling of pixel-perfect scrolling events.
147 #     Currently, this mode is available only under macOS with JetBrains Runtime.
148 #     This feature can be toggled via "idea.true.smooth.scrolling.pixel.perfect" option.
149 #
150 # * Enables interpolation of scrolling input (scrollbar, mouse wheel, touchpad, keys, etc).
151 #     Smooths input, which lacks both spatial and temporal resolution, performs the rendering asynchronously.
152 #     Depends on the Editor / General / Smooth Scrolling setting, remote desktop detection and power save mode state.
153 #     The feature can be tweaked using the following options:
154 #       "idea.true.smooth.scrolling.interpolation" - the main switch
155 #       "idea.true.smooth.scrolling.interpolation.scrollbar" - scrollbar interpolation
156 #       "idea.true.smooth.scrolling.interpolation.scrollbar.delay" - initial delay for scrollbar interpolation (ms)
157 #       "idea.true.smooth.scrolling.interpolation.mouse.wheel" - mouse wheel / touchpad interpolation
158 #       "idea.true.smooth.scrolling.interpolation.mouse.wheel.delay.min" - minimum initial delay for mouse wheel interpolation (ms)
159 #       "idea.true.smooth.scrolling.interpolation.mouse.wheel.delay.max" - maximum initial delay for mouse wheel interpolation (ms)
160 #       "idea.true.smooth.scrolling.interpolation.precision.touchpad" - touchpad interpolation
161 #       "idea.true.smooth.scrolling.interpolation.precision.touchpad.delay" - initial delay for touchpad interpolation (ms)
162 #       "idea.true.smooth.scrolling.interpolation.other" - interpolation of other input sources
163 #       "idea.true.smooth.scrolling.interpolation.other.delay" - initial delay for other input source interpolation (ms)
164 #
165 # * Adds on-demand horizontal scrollbar in editor.
166 #     The horizontal scrollbar is shown only when it's actually needed for currently visible content.
167 #     This helps to save editor space and to prevent occasional horizontal "jitter" on vertical touchpad scrolling.
168 #     This feature can be toggled via "idea.true.smooth.scrolling.dynamic.scrollbars" option.
169 #---------------------------------------------------------------------
170 #idea.true.smooth.scrolling=true