1. 23 Haz, 2013 3 kayıt (commit)
  2. 15 Haz, 2013 1 kayıt (commit)
  3. 10 Haz, 2013 1 kayıt (commit)
  4. 09 Haz, 2013 2 kayıt (commit)
  5. 08 Haz, 2013 3 kayıt (commit)
  6. 07 Haz, 2013 2 kayıt (commit)
  7. 06 Haz, 2013 4 kayıt (commit)
  8. 05 Haz, 2013 1 kayıt (commit)
  9. 02 Haz, 2013 1 kayıt (commit)
    • Colomban Wendling's avatar
      Indentation width detection: try not to get fooled by comments · fe028003
      Colomban Wendling yazdı
      C-style multiline comments, used among others in C, C++ and Java, are
      often continued on next lines with an additional space followed by an
      asterisk:
      
        1.    /* first comment line
        2.     * continuation line (asterisk is aligned with previous line)
        3.     * last line */
      
      This fools the indentation with detection because lines 2 and 3 from
      the above example have an extra space in what is considered being the
      line indentation.  In this example, the algorithm would detect an
      indentation width of 5 rather than 4, because here most lines have an
      indent of 5 -- although they actually have an indent of 4 plus a space
      for alignment.  This is not a problem in most situations because there
      generally are fewer comment continuation lines than actual code lines
      which have a indent multiple of the actual indent width, but with some
      code with a lot of comments (e.g. short functions with verbose
      documentation comments) this might start to fool the algorithm and
      give wrong, annoying, results.
      
      So, try to detect these continuation lines and avoid taking them into
      account.
      fe028003
  10. 01 Haz, 2013 1 kayıt (commit)
    • Colomban Wendling's avatar
      Improve scrolling to display a plugin's keybindings · 8afff838
      Colomban Wendling yazdı
      When scrolling the keybinding list to display a particular row, which
      is used to display a particular plugin's keybindings, consistently
      scroll so the row is on the top left.  This makes it easier to see the
      row in question since it's always at the same location, and it shows
      more child keybindings.
      8afff838
  11. 31 May, 2013 1 kayıt (commit)
  12. 26 May, 2013 1 kayıt (commit)
  13. 25 May, 2013 3 kayıt (commit)
  14. 22 May, 2013 10 kayıt (commit)
  15. 21 May, 2013 1 kayıt (commit)
  16. 20 May, 2013 1 kayıt (commit)
  17. 19 May, 2013 4 kayıt (commit)