summary refs log tree commit diff stats
path: root/tools/nimgrep.nim
Commit message (Expand)AuthorAgeFilesLines
* make more things compile without isNilAraq2018-08-221-1/+1
* nimgrep: count the number of matchesAndreas Rumpf2018-04-271-8/+11
* nimgrep: add --filenames optionAndreas Rumpf2018-04-241-7/+14
* [nimgrep] add option --oneline to keep file:line info when piping (#7592)Timothee Cour2018-04-131-6/+12
* Faster nimgrep (#6983)Mathias Stearn2018-01-031-27/+19
* make nimgrep compile without warningsAndreas Rumpf2016-09-261-2/+2
* fixes #4751Andreas Rumpf2016-09-121-2/+2
* nimgrep version 1Araq2015-12-051-3/+11
* renamed writeln to writeLine in toolspatrick dw2015-06-191-45/+45
* Replaced deprecated repeatChar() with repeat() or spaces().Hans Raaf2015-03-041-1/+1
* Fix typosFederico Ceratto2015-02-151-1/+1
* updated nimgrep toolAraq2014-09-101-6/+6
* nimgrep compiles againAraq2014-09-071-8/+8
* posix.nim compiles againAraq2014-08-291-3/+3
* Changed tests and tools to use 'discard' statements instead of 'nil' for empt...Clay Sweetser2014-02-151-1/+1
* case consistency part 6Araq2013-12-281-3/+3
* Fixed terminal module so that it doesn't raise an EOS exception when stdout i...Dominik Picheta2013-06-221-0/+2
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* added terminal.isatty; nimgrep version 0.9Araq2012-04-061-6/+25
* implemented incompleteStruct pragma; embedded debugger works with posix moduleAraq2012-01-051-2/+2
* year 2012 for most copyright headersAraq2012-01-021-2/+1
* clean exit codes for all the toolsAraq2011-08-011-2/+7
* bugfixes; added events module, sequtils moduleAraq2011-07-261-2/+4
* further steps for thread support; bootstrapping should require unzip C source...Araq2011-05-161-5/+5
* nimgrep: version 0.8Araq2011-02-031-17/+54
* nimgrep --ext supportAraq2011-02-021-5/+14
* nimgrep: support for multiple input files/dirsAraq2011-02-021-6/+8
* nimgrep: first working versionAraq2011-02-021-29/+97
* commit before ov-res changesAraq2010-12-071-0/+191
class='alt'>
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134


                
   










                                               
      









































                                                                       
                                                           




















                                                                        
                                                                


                                                                       
                  



                                                                        
                                                   















                                                                   
                                                                 


























                                                                          
port for i386/amd64 platforms unix/windows OSes markAndSweep/refCounting GCs.' href='/ahoang/Nim/commit/lib/pure/coro.nim?h=devel&id=43bfda057b56d6c67222d4c86e3be90dd3f01e59'>43bfda057 ^





24655ecd5 ^
7d9a748fc ^
43bfda057 ^

7d9a748fc ^


43bfda057 ^
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143