File: gitdiff-color.txt

package info (click to toggle)
moor 2.10.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,960 kB
  • sloc: sh: 229; ansic: 12; xml: 6; makefile: 5
file content (100 lines) | stat: -rw-r--r-- 3,601 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
commit 0ccc858f87d70c302117db9034186754a4091f23
Author: Johan Walles <johan.walles@gmail.com>
Date:   Thu Oct 24 20:45:40 2013 +0200

    Prioritize the TODO file

diff --git a/TODO.txt b/TODO.txt
index 52551e7..663ffd7 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -1,36 +1,48 @@
 Moar is a pager.  It's designed to be easy to use and just do the
 right thing without any configuration.
 
-TODO (in some order):
+TODO (before using it myself)
+-----------------------------
+* Scroll down one line on RETURN
 
-* Write "/ to search" somewhere in the status field
+* Enable displaying ANSI-colored input
+
+
+TODO (before github)
+--------------------
 
+TODO (before trying to get others to use it)
+--------------------------------------------
 * Do a regexp search if the search term is a valid regexp, otherwise
   just use it as a substring.
 
-* Make the search case sensitive only if it contains any capital
-  letters.  This goes for both regexps and non-regexps.
-
 * Make sure we can search for unicode characters
 
-* Make sure searching for an upper case unicode character turns on
-  case sensitive search.
-
 * Make sure we get the line length right even with unicode characters
   present in the lines.  Verify by looking at where the truncation
   markers end up.
 
-* Scroll down one line on RETURN
-
 * Enable sideways scrolling using arrow keys.
 
 * Handle search hits to the right of the right screen edge
 
-* Interactive search using ^s and ^r like in Emacs
+* Enable 'h' or '?' for help
 
-* Highlight all matches while searching
+* Report command line errors, think about when to use $stdin for input
+  vs what commands we accept
 
-* Enable displaying ANSI-colored input
+
+TODO (bonus)
+------------
+* Make the search case sensitive only if it contains any capital
+  letters.  This goes for both regexps and non-regexps.
+
+* Make sure searching for an upper case unicode character turns on
+  case sensitive search.
+
+* Write "/ to search" somewhere in the status field
+
+* Interactive search using ^s and ^r like in Emacs
 
 * Enable filtered input, start with zcat as a filter
 
@@ -47,11 +59,6 @@ TODO (in some order):
 
 * Enable up / down using the mouse wheel.
 
-* Enable 'h' or '?' for help
-
-* Report command line errors, think about when to use $stdin for input
-  vs what commands we accept
-
 * Enable pass-through operation unless $stdout.isatty()
 
 * Doing moor.rb on an arbitrary binary (like /bin/ls) should put all
@@ -60,7 +67,8 @@ TODO (in some order):
   various control characters.
 
 
-DONE:
+DONE
+----
 * Enable exiting using q (restores screen)
 
 * Handle the terminal window getting resized.
@@ -121,3 +129,5 @@ DONE:
 * Indicate when we're wrapping the search while pressing n.
 
 * Indicate when we're wrapping the search while pressing N.
+
+* Highlight all matches while searching