From a612ebeaf116d42d058ae78ee28ea5e5c8dd4479 Mon Sep 17 00:00:00 2001 From: Leandro Freitas Date: Wed, 27 Jan 2016 14:09:17 -0200 Subject: [PATCH] Remove trailing whitespaces --- README.markdown | 38 ++++++++++----------- autoload/todo/txt.vim | 2 +- doc/todo.txt | 6 ++-- syntax/python/dateregex/dateregex/after.py | 4 +-- syntax/python/dateregex/dateregex/before.py | 10 +++--- syntax/python/todo.py | 4 +-- test/tc_sort_context.vim | 2 +- test/tc_sort_date.vim | 2 +- test/tc_sort_project.vim | 2 +- 9 files changed, 35 insertions(+), 35 deletions(-) diff --git a/README.markdown b/README.markdown index d677ce5..7c00981 100644 --- a/README.markdown +++ b/README.markdown @@ -17,28 +17,28 @@ If your Vim installation does **not** have Python support, this plugin **will wo This plugin gives syntax highlighting to [todo.txt](http://todotxt.com/) files. It also defines a few mappings, to help with editing these files: -Sorting tasks: -`s` Sort the file -`s+` Sort the file on +Projects -`s@` Sort the file on @Contexts -`sd` Sort the file on dates -`sdd` Sort the file on due dates +Sorting tasks: +`s` Sort the file +`s+` Sort the file on +Projects +`s@` Sort the file on @Contexts +`sd` Sort the file on dates +`sdd` Sort the file on due dates -Edit priority: -`j` Decrease the priority of the current line -`k` Increase the priority of the current line -`a` Add the priority (A) to the current line -`b` Add the priority (B) to the current line -`c` Add the priority (C) to the current line +Edit priority: +`j` Decrease the priority of the current line +`k` Increase the priority of the current line +`a` Add the priority (A) to the current line +`b` Add the priority (B) to the current line +`c` Add the priority (C) to the current line -Date: -`d` Set current task's creation date to the current date -`date` (Insert mode) Insert the current date +Date: +`d` Set current task's creation date to the current date +`date` (Insert mode) Insert the current date -Mark as done: -`x` Mark current task as done -`X` Mark all tasks as done -`D` Move completed tasks to done.txt +Mark as done: +`x` Mark current task as done +`X` Mark all tasks as done +`D` Move completed tasks to done.txt This plugin detects any text file with the name todo.txt or done.txt with an optional prefix that ends in a period (e.g. second.todo.txt, example.done.txt). diff --git a/autoload/todo/txt.vim b/autoload/todo/txt.vim index efd72df..b170ea8 100644 --- a/autoload/todo/txt.vim +++ b/autoload/todo/txt.vim @@ -41,7 +41,7 @@ endfunction function! todo#txt#mark_as_done() call s:remove_priority() call todo#txt#prepend_date() - normal! Ix + normal! Ix endfunction function! todo#txt#mark_all_as_done() diff --git a/doc/todo.txt b/doc/todo.txt index c84d869..f13c0da 100644 --- a/doc/todo.txt +++ b/doc/todo.txt @@ -26,18 +26,18 @@ CONTENTS *todo-contents* `s@` Sort the file on @Contexts `sd` Sort the file on dates `sdd` Sort the file on due dates (i.e. due:2015-10-25) - + 1.2 Edit priority: *todo-commands-priority* `j` Decrease the priority of the current line `k` Increase the priority of the current line `a` Add the priority (A) to the current line `b` Add the priority (B) to the current line `c` Add the priority (C) to the current line - + 1.3 Date: *todo-commands-date* `d` Set current task's creation date to the current date `date` (Insert mode) Insert the current date - + 1.4 Mark as done: *todo-commands-done* `x` Mark current task as done `X` Mark all tasks as done diff --git a/syntax/python/dateregex/dateregex/after.py b/syntax/python/dateregex/dateregex/after.py index 8a13574..1e4027a 100644 --- a/syntax/python/dateregex/dateregex/after.py +++ b/syntax/python/dateregex/dateregex/after.py @@ -20,7 +20,7 @@ def _year_regex_after(year): regex = '|' + year[0:idx] regex += '9' if digit == '8' else '[%s-9]' % str(int(digit) + 1) if idx < len(year) - 1: - regex += '\d{%s}' % (len(year) - (idx + 1)) + regex += '\d{%s}' % (len(year) - (idx + 1)) year_regex += regex year_regex += ')' @@ -40,7 +40,7 @@ def _month_regex_after(year, month): if digit2 == '8': month_regex = r'(' + month_regex + r'|09)' else: - month_regex = r'(' + month_regex + r'|0[%s-9])' + month_regex = r'(' + month_regex + r'|0[%s-9])' month_regex = month_regex % str(int(digit2) + 1) return '-'.join((year, month_regex, r'\d{2}')) diff --git a/syntax/python/dateregex/dateregex/before.py b/syntax/python/dateregex/dateregex/before.py index 8a3402e..fe91c74 100644 --- a/syntax/python/dateregex/dateregex/before.py +++ b/syntax/python/dateregex/dateregex/before.py @@ -10,7 +10,7 @@ from datetime import date, timedelta, MINYEAR def _year_regex_before(year): - if int(year) <= MINYEAR: + if int(year) <= MINYEAR: return None year_regex = r'(' year_regex += r'\d{1,%s}' % str(len(year) - 1) if len(year) > 1 else '' @@ -19,12 +19,12 @@ def _year_regex_before(year): regex = '|' + year[0:idx] regex += '0' if digit == '1' else '[0-%s]' % str(int(digit) - 1) if idx < len(year) - 1: - regex += '\d{%s}' % (len(year) - (idx + 1)) + regex += '\d{%s}' % (len(year) - (idx + 1)) year_regex += regex year_regex += ')' return '-'.join((year_regex, r'\d{2}', r'\d{2}')) - + def _month_regex_before(year, month): if month == '01': return None @@ -33,7 +33,7 @@ def _month_regex_before(year, month): if digit1 == '0': month_regex = '01' if month == '02' else r'0[1-%s]' % str(int(digit2) - 1) elif month == '10': - month_regex = r'0\d' + month_regex = r'0\d' elif month == '11': month_regex = r'(0\d|10)' else: @@ -63,7 +63,7 @@ def _day_regex_before(year, month, day): return '-'.join((year, month, day_regex)) - + def regex_date_before(given_date): year, month, day = given_date.isoformat().split('-') diff --git a/syntax/python/todo.py b/syntax/python/todo.py index 36d0d9d..e928026 100644 --- a/syntax/python/todo.py +++ b/syntax/python/todo.py @@ -16,11 +16,11 @@ if os.path.isdir(dateregex_dir): sys.path.insert(0, dateregex_dir) def add_due_date_syntax_highlight(): - try: + try: from dateregex import regex_date_before except ImportError: print("dateregex module not found. Overdue dates won't be highlighted") - return + return regex = regex_date_before(date.today()) regex = r'(^|<)due:%s(>|$)' % regex diff --git a/test/tc_sort_context.vim b/test/tc_sort_context.vim index 53e518d..df2f55a 100644 --- a/test/tc_sort_context.vim +++ b/test/tc_sort_context.vim @@ -1,5 +1,5 @@ let s:here = expand(':p:h') -let s:tc = unittest#testcase#new('Sort Context', +let s:tc = unittest#testcase#new('Sort Context', \ { 'data': s:here . '/tc_sort_context.todo.txt' }) let s:LEADER = mapleader diff --git a/test/tc_sort_date.vim b/test/tc_sort_date.vim index 8041c0d..8dd7982 100644 --- a/test/tc_sort_date.vim +++ b/test/tc_sort_date.vim @@ -1,5 +1,5 @@ let s:here = expand(':p:h') -let s:tc = unittest#testcase#new('Sort Date', +let s:tc = unittest#testcase#new('Sort Date', \ { 'data': s:here . '/tc_sort_date.todo.txt' }) let s:LEADER = mapleader diff --git a/test/tc_sort_project.vim b/test/tc_sort_project.vim index d4fd2c5..2577f5e 100644 --- a/test/tc_sort_project.vim +++ b/test/tc_sort_project.vim @@ -1,5 +1,5 @@ let s:here = expand(':p:h') -let s:tc = unittest#testcase#new('Sort Project', +let s:tc = unittest#testcase#new('Sort Project', \ { 'data': s:here . '/tc_sort_project.todo.txt' }) let s:LEADER = mapleader