-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlign.stats
More file actions
183 lines (140 loc) · 6.81 KB
/
Align.stats
File metadata and controls
183 lines (140 loc) · 6.81 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
commit SHA1SHA1SHA1 (HEAD, tag: refs/tags/35-41)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Wed Mar 4 00:00:00 2009 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 35/41
Align: save and restore of mod now done with the local version of the option
Align: new sanity check for an AlignStyle of just ":"
AlignMaps: new maps: \ts; ts: \ts< \ts= \a(
AlignMaps: default g:Align_xstrlen often is now 1 for multi-byte support
AlignMaps: bug fixed for \ts,
autoload/Align.vim | 31
autoload/AlignMaps.vim | 28
doc/Align.txt | 145
plugin/AlignMapsPlugin.vim | 38
plugin/AlignPlugin.vim | 6
plugin/cecutil.vim | 10
6 files changed, 171 insertions(+), 87 deletions(-)
commit SHA1SHA1SHA1 (tag: refs/tags/34-40)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Wed Oct 29 00:00:00 2008 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 34/40
(AlignMaps) split into plugin/ and autoload/ sections (faster [g]vim startup)
(AlignMaps) maps use <Plug>s and <script>s: allowing users to invoke the maps how they wish, and preventing user maps from interfering with the internal workings of the maps.
(Align) bugfix - using :AlignCtrl before entering any alignment ctrl cmds was causing an error
autoload/Align.vim | 41
autoload/AlignMaps.vim | 330
doc/Align.txt | 183
plugin/AlignMaps.vim | 506
plugin/AlignMapsPlugin.vim | 230
plugin/cecutil.vim | 134
6 files changed, 769 insertions(+), 655 deletions(-)
commit SHA1SHA1SHA1 (tag: refs/tags/33-39)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Thu Mar 6 00:00:00 2008 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 33/39
* Align now aligns multi-byte characters correctly (see :help align-strlen) -- choose g:Align_xstrlen for the type of codepoint you want handled.
* Align now accepts \"...\" arguments, so one can pass whitespace to Align as a separator
* AlignMaps' \\t= map now avoids comment aligning when the filetype is not *.c or *.cpp
autoload/Align.vim | 269
doc/Align.txt | 163
plugin/AlignMaps.vim | 64
plugin/AlignPlugin.vim | 79
plugin/cecutil.vim | 6
5 files changed, 361 insertions(+), 220 deletions(-)
commit SHA1SHA1SHA1 (tag: refs/tags/32-38)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Mon Aug 20 00:00:00 2007 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 32/38
The <leader>tt map wasn't working right; Align now uses <q-args> instead of <f-args>, so it does the argument splitting itself, thus allowing patterns containing backslashes to be used without lots of backslash-duplication. This allows the \tt map in AlignMaps to work, and to work without a lot of extra backslashes.
autoload/Align.vim | 109
doc/Align.txt | 12
plugin/AlignMaps.vim | 6
plugin/AlignPlugin.vim | 4
plugin/cecutil.vim | 21
5 files changed, 105 insertions(+), 47 deletions(-)
commit SHA1SHA1SHA1 (tag: refs/tags/31-36)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Thu Aug 16 00:00:00 2007 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 31/36
New feature -- one can embed AlignCtrl settings into Align (as a one-shot):
[range]Align! [AlignCtrl settings] pattern(s)
Plus some small improvements to some of the AlignMaps.
autoload/Align.vim | 137
doc/Align.txt | 438
plugin/AlignMaps.vim | 65
plugin/AlignPlugin.vim | 10
plugin/cecutil.vim | 33
5 files changed, 396 insertions(+), 287 deletions(-)
commit SHA1SHA1SHA1 (tag: refs/tags/30-35)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Wed Sep 20 00:00:00 2006 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 30/35
* \acom can now work with doxygen style /// comments
* \t= and cousins used "`"s. They now use \xff characters.
* <char-0xff> used in \t= \T= \w= and \m= instead of backquotes.
autoload/Align.vim | 6
doc/Align.txt | 14
plugin/AlignMaps.vim | 16
plugin/AlignPlugin.vim | 11
plugin/cecutil.vim | 6
5 files changed, 29 insertions(+), 24 deletions(-)
commit SHA1SHA1SHA1 (tag: refs/tags/29-34)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Tue Apr 25 00:00:00 2006 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 29/34
Align and AlignMaps now use vim 7.0 style autoloading (quicker startup, loads only when used)
cecutil updated to use keepjumps
Now being distributed as a vimball - simply :so % it after decompressing it to install
autoload/Align.vim | 876
doc/Align.txt | 22
plugin/Align.vim | 884
plugin/AlignMaps.vim | 25
plugin/AlignPlugin.vim | 115
plugin/cecutil.vim | 280
6 files changed, 1235 insertions(+), 967 deletions(-)
commit SHA1SHA1SHA1 (tag: refs/tags/28-33)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Mon Nov 21 00:00:00 2005 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 28/33
bugfix: (Align) Align now works around the report option setting.
bugfix: (Align) AlignCtrl l: wasn't behaving as expected; fixed!
bugfix: (AlignMap) \ts, now uses P1 in its AlignCtrl call
doc/Align.txt | 135
plugin/Align.vim | 36
plugin/AlignMaps.vim | 24
plugin/cecutil.vim | 15
4 files changed, 125 insertions(+), 85 deletions(-)
commit SHA1SHA1SHA1 (tag: refs/tags/27-32)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Tue Jul 12 00:00:00 2005 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 27/32
Align v27 : cpo and ignorecase workarounds
AlignMaps v32: s:WrapperStart() -> AlignWrapperStart(), s:WrapperEnd() -> AlignWrapperEnd()
These changes let the wrappers be used outside of AlignMaps.vim (customized map support)
doc/Align.txt | 6
plugin/Align.vim | 9
plugin/AlignMaps.vim | 29
plugin/cecutil.vim | 29
4 files changed, 47 insertions(+), 26 deletions(-)
commit SHA1SHA1SHA1 (tag: refs/tags/27-31)
Author: Charles Campbell <drchip@campbellfamily.biz>
AuthorDate: Fri Apr 15 00:00:00 2005 +0000
Commit: Able Scraper <scraper@vim-scripts.org>
Version 27/31
Align: GetLatestVimScripts/AutoInstall supported
AlignMaps: new map: \\adcom (align declaration-style comments), \\a, now wors across multiple lines with different types, cecutil.vim now used, more number alignment maps (\\aenum, \\aunum)
README | 128
doc/Align.txt | 1207
plugin/Align.vim | 865
plugin/AlignMaps.vim | 409
plugin/cecutil.vim | 300
5 files changed, 2909 insertions(+), 0 deletions(-)