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.
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
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
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
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
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
33 #---------------------------------------------------------------------
34 # Maximum file size (in KiB) the IDE is able to open.
35 #---------------------------------------------------------------------
36 idea.max.content.load.filesize=20000
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
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
50 #---------------------------------------------------------------------
51 # To avoid too long classpath
52 #---------------------------------------------------------------------
53 idea.dynamic.classpath=false
55 #---------------------------------------------------------------------
56 # Uncomment this property to prevent IDE from throwing ProcessCanceledException when user activity
57 # detected. This option is only useful for plugin developers, while debugging PSI related activities
58 # performed in background error analysis thread.
59 # DO NOT UNCOMMENT THIS UNLESS YOU'RE DEBUGGING IDE ITSELF. Significant slowdowns and lockups will happen otherwise.
60 #---------------------------------------------------------------------
61 #idea.ProcessCanceledException=disabled
63 #---------------------------------------------------------------------
64 # There are two possible values of idea.popup.weight property: "heavy" and "medium".
65 # If you have WM configured as "Focus follows mouse with Auto Raise" then you have to
66 # set this property to "medium". It prevents problems with popup menus on some
68 #---------------------------------------------------------------------
69 idea.popup.weight=heavy
71 #---------------------------------------------------------------------
72 # Removing this property may lead to editor performance degradation under Windows.
73 #---------------------------------------------------------------------
76 #---------------------------------------------------------------------
77 # Removing this property may lead to editor performance degradation on Java 8+.
78 #---------------------------------------------------------------------
79 swing.bufferPerWindow=true
81 #---------------------------------------------------------------------
82 # Removing this property may lead to editor performance degradation under X Window.
83 #---------------------------------------------------------------------
84 sun.java2d.pmoffscreen=false
86 #---------------------------------------------------------------------
87 # Enables HiDPI support in JBR
88 #---------------------------------------------------------------------
89 sun.java2d.uiScale.enabled=true
91 #---------------------------------------------------------------------
92 # Applicable to the Swing text components displaying HTML (except JEditorPane).
93 # Rebases CSS size map depending on the component's font size to let relative
94 # font size values (smaller, larger) scale properly. JBR-only.
95 #---------------------------------------------------------------------
96 javax.swing.rebaseCssSizeMap=true
99 #---------------------------------------------------------------------
100 # Workaround for accessing (in terms of a11y) long VCS logs on macOS. JBR-only.
101 #---------------------------------------------------------------------
102 sun.awt.mac.a11y.tableAccessibleRowCountThreshold=1000
104 #---------------------------------------------------------------------
105 # Enabling an optimization that excludes traversal of collapsed accessible nodes from the accessible tree. JBR-4167
106 #---------------------------------------------------------------------
107 javax.swing.JTree.excludeAccessibleChildrenFromClosedNodes=true
109 #---------------------------------------------------------------------
110 # Workaround to avoid long hangs while accessing clipboard under Mac OS X.
111 #---------------------------------------------------------------------
112 #ide.mac.useNativeClipboard=True
114 #---------------------------------------------------------------------
115 # Maximum size (KiB) the IDE will use to show historical file contents -
116 # in Show Diff or when calculating Digest Diff
117 #---------------------------------------------------------------------
118 #idea.max.vcs.loaded.size.kb=20480
120 #---------------------------------------------------------------------
121 # IDEA file chooser peeks inside directories to detect whether they contain a valid project
122 # (to mark such directories with a corresponding icon).
123 # Uncommenting the option prevents this behavior outside the user home directory.
124 #---------------------------------------------------------------------
125 #idea.chooser.lookup.for.project.dirs=false
127 #---------------------------------------------------------------------
128 # In LWCToolkit.invokeAndWait() listens to EDT state and disposes the invocation event
129 # when EDT becomes free but the invocation event is not yet dispatched (considered lost).
130 # This prevents a deadlock and makes the invocation return some default result.
131 #---------------------------------------------------------------------
132 sun.lwawt.macosx.LWCToolkit.invokeAndWait.disposeOnEDTFree=true
134 #---------------------------------------------------------------------
135 # Experimental options that do a number of things to make truly smooth scrolling possible:
137 # * Enables hardware-accelerated scrolling.
138 # Blit-acceleration copies as much of the rendered area as possible and then repaints only newly exposed region.
139 # This helps to improve scrolling performance and to reduce CPU usage (especially if drawing is compute-intensive).
141 # * Enables "true double buffering".
142 # True double buffering is needed to eliminate tearing on blit-accelerated scrolling and to restore
143 # frame buffer content without the usual repainting, even when the EDT is blocked.
145 # * Adds "idea.true.smooth.scrolling.debug" option.
146 # Checks whether blit-accelerated scrolling is feasible, and if so, checks whether true double buffering is available.
148 # * Enables handling of high-precision mouse wheel events.
149 # Although Java 7 introduced MouseWheelEven.getPreciseWheelRotation() method, JScrollPane doesn't use it so far.
150 # Depends on the Editor / General / Smooth Scrolling setting, remote desktop detection and power save mode state.
151 # Ideally, we need to patch the runtime (on Windows, Linux and macOS) to improve handling of the fine-grained input data.
152 # This feature can be toggled via "idea.true.smooth.scrolling.high.precision" option.
154 # * Enables handling of pixel-perfect scrolling events.
155 # Currently, this mode is available only under macOS with JetBrains Runtime.
156 # This feature can be toggled via "idea.true.smooth.scrolling.pixel.perfect" option.
158 # * Enables interpolation of scrolling input (scrollbar, mouse wheel, touchpad, keys, etc).
159 # Smooths input, which lacks both spatial and temporal resolution, performs the rendering asynchronously.
160 # Depends on the Editor / General / Smooth Scrolling setting, remote desktop detection and power save mode state.
161 # The feature can be tweaked using the following options:
162 # "idea.true.smooth.scrolling.interpolation" - the main switch
163 # "idea.true.smooth.scrolling.interpolation.scrollbar" - scrollbar interpolation
164 # "idea.true.smooth.scrolling.interpolation.scrollbar.delay" - initial delay for scrollbar interpolation (ms)
165 # "idea.true.smooth.scrolling.interpolation.mouse.wheel" - mouse wheel / touchpad interpolation
166 # "idea.true.smooth.scrolling.interpolation.mouse.wheel.delay.min" - minimum initial delay for mouse wheel interpolation (ms)
167 # "idea.true.smooth.scrolling.interpolation.mouse.wheel.delay.max" - maximum initial delay for mouse wheel interpolation (ms)
168 # "idea.true.smooth.scrolling.interpolation.precision.touchpad" - touchpad interpolation
169 # "idea.true.smooth.scrolling.interpolation.precision.touchpad.delay" - initial delay for touchpad interpolation (ms)
170 # "idea.true.smooth.scrolling.interpolation.other" - interpolation of other input sources
171 # "idea.true.smooth.scrolling.interpolation.other.delay" - initial delay for other input source interpolation (ms)
173 # * Adds on-demand horizontal scrollbar in editor.
174 # The horizontal scrollbar is shown only when it's actually needed for currently visible content.
175 # This helps to save editor space and to prevent occasional horizontal "jitter" on vertical touchpad scrolling.
176 # This feature can be toggled via "idea.true.smooth.scrolling.dynamic.scrollbars" option.
177 #---------------------------------------------------------------------
178 #idea.true.smooth.scrolling=true