User Tools

Site Tools


eclipse

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
eclipse [2020/03/19 14:24]
mstraub
eclipse [2021/07/12 22:27]
mstraub [Scroll bars too small]
Line 18: Line 18:
 To exclude annoying packages or classes when doing automatic organisation of imports with Ctrl+Shift+O create a a "Type Filter"​ under ''​Windows -> Preferences -> Java -> Appearance -> Type Filters''​. To exclude annoying packages or classes when doing automatic organisation of imports with Ctrl+Shift+O create a a "Type Filter"​ under ''​Windows -> Preferences -> Java -> Appearance -> Type Filters''​.
  
-Most annoying for me are JUnit 3, awt, Joda time:+My current list:
 <​code>​ <​code>​
 +scala.*
 java.awt.* java.awt.*
 junit.* junit.*
 org.joda.* org.joda.*
 </​code>​ </​code>​
- 
-Source: [[http://​blog.vogella.com/​2009/​04/​01/​eclipse-organize-imports-filter]] 
  
 ===== SVN support ===== ===== SVN support =====
Line 58: Line 57:
  
 See https://​bugs.eclipse.org/​bugs/​show_bug.cgi?​id=519728 See https://​bugs.eclipse.org/​bugs/​show_bug.cgi?​id=519728
 +
 +==== Scroll bars too small ====
 +
 +Using Kubuntu 20.04 I don't like the miniscule scroll bars that slightly widen when hovering over them. Setting a min size works as follows:
 +
 +Edit .config/​gtk-3.0/​gtk.css and add these lines:
 +
 +<​code>​
 +.scrollbar.vertical slider, scrollbar.vertical slider {
 +    min-width: 7px;
 +}
 +.scrollbar.horizontal slider, scrollbar.horizontal slider {
 +    min-height: 7px;
 +}
 +</​code>​
  
 ==== Autocompletion not working properly ===== ==== Autocompletion not working properly =====
eclipse.txt ยท Last modified: 2021/07/12 22:27 by mstraub