1. 07 Nov, 2015 3 commits
  2. 06 Nov, 2015 2 commits
    • Bram Schoenmakers's avatar
      Set priority color as the last step in the colorization · 027d8a8a
      Bram Schoenmakers authored
      The project/context, tag and URL matching patterns are not aware of any color codes that are already prepended to a word. This affects items that appear at the start of a line.
      
      Given a todo string where a priority color was already added:
      
      \x1b[0mkey:value
      
      Then the match would turn it into something like this:
      
      \x1b[\x1b[1;32m0mkey:value\x1b[0m
      
      So you get an ugly 0m prefix to the key:value text, because ] is a word boundary and 0m are non-whitespace characters that end up as being part of the key.
      
      Report and suggested fix by @mruwek. It became apparent with `ls -F %k`, which puts tags at the start of a line, a not so common case that slipped through when writing the colorization code.
      027d8a8a
    • Bram Schoenmakers's avatar
      Do a proper replacement of whitespace before URL · 37382021
      Bram Schoenmakers authored
      In case a URL starts at the start of the line, don't insert an additional space.
      
      Reported by @mruwek.
      37382021
  3. 05 Nov, 2015 9 commits
  4. 04 Nov, 2015 4 commits
  5. 03 Nov, 2015 5 commits
  6. 02 Nov, 2015 3 commits
  7. 01 Nov, 2015 2 commits
  8. 31 Oct, 2015 5 commits
  9. 30 Oct, 2015 7 commits