1. 01 Tem, 2015 1 kayıt (commit)
  2. 27 Haz, 2015 3 kayıt (commit)
  3. 26 Haz, 2015 3 kayıt (commit)
  4. 25 Haz, 2015 3 kayıt (commit)
    • Colomban Wendling's avatar
      python: Fix handling of inline comments · 46a123d6
      Colomban Wendling yazdı
      If there was two hashes (#) in an inline comment, only the content
      between the two was considered a comment.
      
      X-Universal-CTags-Commit-ID: ee93f5b9f393e76a850cf8c894cc748a62981156
      46a123d6
    • Colomban Wendling's avatar
      Merge pull request #532 from techee/optimize_python · d2052b55
      Colomban Wendling yazdı
      python: optimize skipEverything()
      d2052b55
    • Jiří Techet's avatar
      python: optimize skipEverything() · 6781ab30
      Jiří Techet yazdı
      Most of the time there's no start of a string which means all the 10
      strcmp()s are done for every character of the input. This is very expensive:
      before this patch this function alone takes 55% of the parser time.
      When comparing by character (and avoiding further comparison if the first
      character doesn't match), this function takes only 11% of the parser time
      so the performance of the parser nearly doubles.
      
      In addition check for the "rb" prefix which is possible in Python 3.
      
      Ported from universal-ctags.
      6781ab30
  5. 24 Haz, 2015 4 kayıt (commit)
  6. 23 Haz, 2015 1 kayıt (commit)
  7. 22 Haz, 2015 9 kayıt (commit)
  8. 21 Haz, 2015 3 kayıt (commit)
  9. 20 Haz, 2015 3 kayıt (commit)
  10. 18 Haz, 2015 3 kayıt (commit)
  11. 17 Haz, 2015 2 kayıt (commit)
    • Colomban Wendling's avatar
      GTK: Fix runtime completion popup warning · 67b464a5
      Colomban Wendling yazdı
      GtkScrolledWindow in GTK 3.16 might have a minimum and natural height
      of 0 if GTK_OVERLAY_SCROLLING is enabled (which is the default), so we
      need to fix our overridden minimal height to never be greater than the
      natural height.
      
      Do that by only changing the minimal height if it is greater than what
      we want.
      
      I don't know why we didn't use to set 0 here, but it might be that a
      height of 0 caused problems on older GTK versions, so keep 1 to be sure.
      
      X-Scintilla-Commit-ID: e9f9c964236a6b740f75d09a8b0ac76e5d6dd09f
      67b464a5
    • Peter Bittner's avatar
      Autodetect .bashrc, .bash_aliases, and the like · 3ad16272
      Peter Bittner yazdı
      Autodetect /etc/bash_completion (and the like)
      
      Splitted up autodetection patterns for Bash
      
      This will match:
      
      - `*.bash` (any manufactured Bash scripts)
      - `~/.bashrc` (hidden Bash configuration in your home directory)
      - `~/.bash_*` (partials included by bashrc, e.g. `.bash_aliases`,  `.bash_history`,  `.bash_logout`)
      - `/etc/bash.bashrc` (global Bash configuration)
      - `/etc/bash_completion` (and potentially any other `/etc/bash_*` file)
      3ad16272
  12. 16 Haz, 2015 1 kayıt (commit)
  13. 15 Haz, 2015 4 kayıt (commit)