forked from vimoutliner/vimoutliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1556 lines (1508 loc) · 55.6 KB
/
CHANGELOG
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CHANGELOG
Version 0.4.0
Updated 2014-10-19
* Additions/Changes:
- Added a list-based tags feature similar to org-mode
- Complete rewrite of the outline math plugin.
- Added colorscheme option to vimoutlinerrc and directory
- Modified to install.sh to: 1. Turn off backup functionality.
2. Remove old backup clutter. 3. Remove old vo_base.vim files from
syntax, ftdetect and ftpluginAdd VimOutliner icons to the repository.
- Updated TODO.otl
- Move README.detailed to doc/votl.txt to make Pathogen working.
- Added information on pathogen installation to INSTALL file.
- Added syntax conceal for math equations. Concealed equations appear
as µ
- Add VimOutliner icons to the repository
- Add votl_maketags manpage
* Bug fixes:
- Small corrections and updates
- Removed unnecessary reserved mappings
- doc/votl_readme.txt is just a copy of old votl.txt, removed it.
- Fix for user-defined <localleader> for command mappings.
- Moved loading of .vimoutlinerrc to before key mappings, other fixes
- Update in install.sh so that it installs vimoutlinerrc correctly.
- Correct votl_cheatsheet so that it is installed with helptags.
- Gramatical and stylistic corrections.
- Remove all remainders of localleader munging.
- Removed vimball install instructions from INSTALL and README files.
- Fix Help links
- Fix FSF address
Version 0.3.7
Released 2014-04-05
* Additions/Changes:
- Added new hoisting plugin.
- Added new tags plugin.
- Add weighted checkboxes.
- Now checkboxes calculations will ignore dash ([-]) marked items.
- Added new math plugin.
- Merged new clock plugin.
- Added new format plugin.
- Added new gtd plugin.
- Added updated smart_paste plugin.
- Added otl2latex script with files.
- New file type naming convention: vo_base to votl.
- Color fixes and updates.
- Updated vimoutlinerrc with more options for new plugins.
- Moved previous hoist plugin to prev directory,
- Made new TODO list
- Uploaded MediaWiki2otl script.
- Updated documentation.
* Bug fixes:
- Stop setting global options.
- Fixed checkboxes calculation to make it faster and more consistent.
- Strtime fix in vo_base.vim
- Corrections to READNE.detailed, readme, INSTALL and cheatsheet files.
- Corrections to install.sh.
- Replaced len() so it works with multibyte chars.
Version 0.3.6
Released 2011-05-09
* Additions/Changes:
- Added updated comments and information to the user in the INSTALL
file.
- Added comments and information to the user in install.sh to align
with the new version.
- Added new light version of README and moved the more extensive file
to README.detailed
- Several updates and additions to the README, README.detailed and
doc/vo_readme.txt file.
* Bug fixes:
- Source only the first vimoutlinerrc found.
- Do not echo mappings.
- Fixed typo and updated reference in install.sh.
- Fixed several typos and updated reference in the
ftplugin/vo_base.vim
- Fixed typos and removed outdated references in the vo_hoist.otl and
vo_hoist.vim files.
- Fixed typos and removed outdated references in the vo_checkbox.otl
file.
- Fixed two mappings for sourcing rc file and writing file in
ftplugin/vo_base.vim.
- Fixed typos in colors/vo_base.vim
- Fixed errors when g:vo_modules_load is not defined, also updated the
plugin loading process to use lists.
Version 0.3.5
Released 2011-03-20
* Additions/Changes:
- Moved all files inside $HOME/.vim.
- Added a cheat sheet to the documentation.
- Added smart-paste plugin.
- Added and updated post-processor scripts:
· fs2otl
· Node.pm
· otl2aft.awk
· otl2docbook.pl
· otl2html.py
· otl2lyx.awk
· otl2ooimpress.py
· otl2table.py
· otl2tags.py
· otlgrep.py
· otlhead.sh
· otlsplit.py
· otltail.sh
· otl_handler
· outline_calendar
· outline_freemind
· vo_maketags.pl
- Added syntax support for _ilink_.
- Hoist plugin disabled by default.
- Layout of vo_readme.txt made more similar to Vim help.
* Bug fixes:
- ,,S did not work. Fixed
Version 0.3.4
Released
* Additions/changes:
- added ,,cp as an alias to ,,c%
- Color schemes have been added
- Checkboxes and hoisting default to 'on'
- Modified ,,cb and ,,c% (and ,,cp) to work only on headings
- Fixed the ,,cz command to make the correct call
- Added descriptions of VO objects to help (headings, text, tables,
etc.)
* Bug fixes:
- W18 errors have been fixed
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/INSTALL,v
Working file: INSTALL
head: 1.2
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 2; selected revisions: 2
description:
----------------------------
revision 1.2
date: 2004-11-27 19:30:43 +0000; author: noel; state: Exp; lines: +2 -2
Minor syntax and installation adjustments.
Change to vo_checkbox to fix a typo.
----------------------------
revision 1.1
date: 2004-02-17 22:00:15 +0000; author: noel; state: Exp;
These files are only in cvs for backup purposes. They should be extracted
from vo_readme.txt and never edited themselves:
INSTALL
LICENSE
VERSION
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/Attic/INSTALL.TXT,v
Working file: INSTALL.TXT
head: 1.3
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 3; selected revisions: 3
description:
Quick installation instructions for developers.
----------------------------
revision 1.3
date: 2003-06-20 14:13:15 +0000; author: noel; state: dead; lines: +0 -0
Final documentation tweaks for the final 0.3.0 release.
----------------------------
revision 1.2
date: 2003-06-18 13:50:55 +0000; author: noel; state: Exp; lines: +1 -1
Modified the installation title.
----------------------------
revision 1.1
date: 2003-03-20 22:56:49 +0000; author: noel; state: Exp;
Initial revision
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/LICENSE,v
Working file: LICENSE
head: 1.2
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 2; selected revisions: 2
description:
----------------------------
revision 1.2
date: 2004-11-27 19:30:43 +0000; author: noel; state: Exp; lines: +4 -2
Minor syntax and installation adjustments.
Change to vo_checkbox to fix a typo.
----------------------------
revision 1.1
date: 2004-02-17 22:00:15 +0000; author: noel; state: Exp;
These files are only in cvs for backup purposes. They should be extracted
from vo_readme.txt and never edited themselves:
INSTALL
LICENSE
VERSION
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/VERSION,v
Working file: VERSION
head: 1.4
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 4; selected revisions: 4
description:
----------------------------
revision 1.4
date: 2005-06-07 17:48:50 +0000; author: noel; state: Exp; lines: +4 -0
Updated to include help on VO objects.
----------------------------
revision 1.3
date: 2005-06-07 17:41:42 +0000; author: noel; state: Exp; lines: +10 -10
Updated version.
----------------------------
revision 1.2
date: 2004-11-27 19:30:43 +0000; author: noel; state: Exp; lines: +9 -14
Minor syntax and installation adjustments.
Change to vo_checkbox to fix a typo.
----------------------------
revision 1.1
date: 2004-02-17 22:00:15 +0000; author: noel; state: Exp;
These files are only in cvs for backup purposes. They should be extracted
from vo_readme.txt and never edited themselves:
INSTALL
LICENSE
VERSION
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/install.sh,v
Working file: install.sh
head: 1.3
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 3; selected revisions: 3
description:
----------------------------
revision 1.3
date: 2005-06-06 18:42:29 +0000; author: noel; state: Exp; lines: +3 -0
Added support for color schemes.
----------------------------
revision 1.2
date: 2004-11-27 19:30:43 +0000; author: noel; state: Exp; lines: +2 -2
Minor syntax and installation adjustments.
Change to vo_checkbox to fix a typo.
----------------------------
revision 1.1
date: 2004-05-02 19:03:01 +0000; author: noel; state: Exp;
Added to the distro.
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/vimoutlinerrc,v
Working file: vimoutlinerrc
head: 1.6
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 6; selected revisions: 6
description:
----------------------------
revision 1.6
date: 2005-06-07 12:39:01 +0000; author: noel; state: Exp; lines: +9 -78
Enabled checkboxes and hoisting by default.
Added Vim colorscheme support.
----------------------------
revision 1.5
date: 2005-01-19 15:06:20 +0000; author: noel; state: Exp; lines: +4 -3
Fixed another W18 error.
Enabled hoisting and checkboxes by default.
----------------------------
revision 1.4
date: 2004-05-24 15:56:34 +0000; author: noel; state: Exp; lines: +45 -0
Added highlighting and folding support for:
Tables (marked with '|')
User-defined, wrapping text (marked with '>')
User-defined, non-wrapping text (marked with '<')
----------------------------
revision 1.3
date: 2004-05-17 17:27:55 +0000; author: noel; state: Exp; lines: +2 -2
Fixed plugin loaders for checkboxes and hoisting.
----------------------------
revision 1.2
date: 2004-03-18 13:23:53 +0000; author: noel; state: Exp; lines: +1 -0
Added a line to change the background.
----------------------------
revision 1.1
date: 2004-02-17 21:50:36 +0000; author: noel; state: Exp;
This file will be provided from now on to make it easy for people
to customize their settings. The install process will rename this file
to .vimoutlinerrc and put it into the user's home directory.
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/Attic/vo_INSTALL.TXT,v
Working file: vo_INSTALL.TXT
head: 1.2
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 2; selected revisions: 2
description:
----------------------------
revision 1.2
date: 2005-06-07 17:24:05 +0000; author: noel; state: dead; lines: +0 -0
*** empty log message ***
----------------------------
revision 1.1
date: 2003-06-26 19:52:07 +0000; author: noel; state: Exp;
Initial add to VimOutliner
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/Attic/vo_README.otl,v
Working file: vo_README.otl
head: 1.4
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 4; selected revisions: 4
description:
----------------------------
revision 1.4
date: 2005-06-07 17:24:05 +0000; author: noel; state: dead; lines: +0 -0
*** empty log message ***
----------------------------
revision 1.3
date: 2003-10-17 02:17:07 +0000; author: noel; state: Exp; lines: +2 -2
Changed version numbers.
----------------------------
revision 1.2
date: 2003-06-20 14:13:15 +0000; author: noel; state: Exp; lines: +4 -41
Final documentation tweaks for the final 0.3.0 release.
----------------------------
revision 1.1
date: 2003-06-18 13:55:03 +0000; author: noel; state: Exp;
Added this documentation to Vim Outliner.
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/add-ons/plugins/vo_checkbox.otl,v
Working file: add-ons/plugins/vo_checkbox.otl
head: 1.3
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 3; selected revisions: 3
description:
----------------------------
revision 1.3
date: 2004-11-27 19:30:43 +0000; author: noel; state: Exp; lines: +12 -8
Minor syntax and installation adjustments.
Change to vo_checkbox to fix a typo.
----------------------------
revision 1.2
date: 2004-05-17 15:57:58 +0000; author: noel; state: Exp; lines: +6 -0
Modified documentation to match current version.
----------------------------
revision 1.1
date: 2003-10-23 22:13:00 +0000; author: noel; state: Exp;
Instructions for vo_checkbox.vim
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/add-ons/plugins/vo_checkbox.vim,v
Working file: add-ons/plugins/vo_checkbox.vim
head: 1.18
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 18; selected revisions: 18
description:
----------------------------
revision 1.18
date: 2005-06-07 15:08:59 +0000; author: noel; state: Exp; lines: +12 -45
Fixed a bug that added checkboxes to body text, preformatted body text,
tables, user-defined text and user-defined preformatted text lines.
Fixed a bug where ,,cb would modify terms like 'test%' or ',,c%'. Now
it only modifies this term: ' [0-9]*%'.
----------------------------
revision 1.17
date: 2005-06-07 13:53:22 +0000; author: noel; state: Exp; lines: +8 -2
Added ,,cp. It is the same as ,,c%
----------------------------
revision 1.16
date: 2004-05-27 22:22:48 +0000; author: noel; state: Exp; lines: +24 -4
Made ,,cd smart so it would try to delete non-existent checkboxes.
Fixed a recursion bug in NewHMD to branches with a single child would
be computed properly.
----------------------------
revision 1.15
date: 2004-05-27 18:11:53 +0000; author: noel; state: Exp; lines: +25 -5
Added smart (only the entire tree in which the child exists), automatic
completion calculations to the ,,cx command.
Added smart (only for parents, not children) '%' sign insertion for
,,c%.
----------------------------
revision 1.14
date: 2004-05-17 15:53:38 +0000; author: noel; state: Exp; lines: +13 -7
Modified SwitchBox() to be more selective.
----------------------------
revision 1.13
date: 2004-05-17 15:43:23 +0000; author: noel; state: Exp; lines: +7 -3
Fixed a broken key mapping: ,,c%.
----------------------------
revision 1.12
date: 2004-02-23 12:19:27 +0000; author: noel; state: Exp; lines: +26 -9
Fixed Up-to-date problem.
Fixed 'Safely script names'.
----------------------------
revision 1.11
date: 2003-09-05 16:37:55 +0000; author: cepl; state: Exp; lines: +41 -2
Added ,cp binding for the new function InsertCheckBoxPerCent,
which adds not only the checkbox but also percentage sign.
----------------------------
revision 1.10
date: 2003-08-23 16:42:15 +0000; author: noel; state: Exp; lines: +18 -17
Modified completion percentages to be recursive.
This:
[_] 0% Project
[_] 33% Task
[_] Subtask
[X] Subtask
[X] Subtask
[_] 0% Task
[_] Subtask
[_] 50% Subtask
[X] Subsubtask
[_] Subsubtask
[X] Subsubtask
[_] Subsubtask
Becomes this:
[_] 29% Project
[_] 33% Task
[_] Subtask
[X] Subtask
[X] Subtask
[_] 25% Task
[_] Subtask
[_] 50% Subtask
[X] Subsubtask
[_] Subsubtask
[X] Subsubtask
[_] Subsubtask
----------------------------
revision 1.9
date: 2003-08-16 13:49:53 +0000; author: noel; state: Exp; lines: +9 -7
added ! to functions.
----------------------------
revision 1.8
date: 2003-08-11 19:16:28 +0000; author: noel; state: Exp; lines: +30 -5
Fixed a bug in which any line that contained the letter x was counted as
completed.
----------------------------
revision 1.7
date: 2003-08-03 23:56:46 +0000; author: noel; state: Exp; lines: +89 -40
Replaced HowManyDone() with a new routine. The new routine is recursive,
ignores headings that don't have checkboxes and does not care what the
current folding states of the parent or children are. The heading at the
top of the tree does not even need to have a checkbox. This will work:
Projects
[_] Software
[_] Input
[_] Processing
[_] Math
[_] Database
[_] Networking
[_] Output
[_] Hardware
[_] Keyboard
[_] Harddisk
[_] Processor
[_] Printer
One only needs to ,,cx on Projects to update everything (everything shown).
As before, including a % on a parent heading with childred, will be replaced
with a percentage of completion. Nice work Matej!
----------------------------
revision 1.6
date: 2003-07-14 00:36:57 +0000; author: noel; state: Exp; lines: +9 -5
Changed [x] to [X] to make it look more full. If the consensus is
[x], I'll gladly put it back.
----------------------------
revision 1.5
date: 2003-07-10 16:29:50 +0000; author: cepl; state: Exp; lines: +75 -3
Calculation of the subtree completion added. The very first alpha
draft.
----------------------------
revision 1.4
date: 2003-07-08 23:48:43 +0000; author: noel; state: Exp; lines: +6 -3
Fixed a bug in <localleader>cd. It used to only delete unchecked boxes.
Now it does both.
----------------------------
revision 1.3
date: 2003-07-07 14:17:04 +0000; author: noel; state: Exp; lines: +11 -6
Fixed the folding of the new headers.
----------------------------
revision 1.2
date: 2003-07-07 14:14:02 +0000; author: noel; state: Exp; lines: +24 -0
Added appropriate headers.
----------------------------
revision 1.1
date: 2003-07-07 13:52:45 +0000; author: noel; state: Exp;
Changed checkbox.vim to vo_checkbox.vim
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/add-ons/plugins/vo_hoist.otl,v
Working file: add-ons/plugins/vo_hoist.otl
head: 1.1
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 1; selected revisions: 1
description:
----------------------------
revision 1.1
date: 2003-10-23 22:12:20 +0000; author: noel; state: Exp;
Instructions for vo_hoist.vim.
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/add-ons/plugins/vo_hoist.vim,v
Working file: add-ons/plugins/vo_hoist.vim
head: 1.9
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 9; selected revisions: 9
description:
----------------------------
revision 1.9
date: 2003-11-12 17:26:09 +0000; author: noel; state: Exp; lines: +6 -2
Added a command to place the cursor on the first line of
a hoisted outline.
----------------------------
revision 1.8
date: 2003-11-12 17:10:51 +0000; author: noel; state: Exp; lines: +9 -3
Fixed a bug that occurs on a level 1 heading with no children.
----------------------------
revision 1.7
date: 2003-10-23 22:14:14 +0000; author: noel; state: Exp; lines: +13 -5
Minor changes to DeHoist() to compensate for current foldlevel settings.
----------------------------
revision 1.6
date: 2003-08-17 15:35:24 +0000; author: noel; state: Exp; lines: +10 -9
Put the new mappings in the correct place this time.
Added a : and <cr> to the ZZ command.
----------------------------
revision 1.5
date: 2003-08-17 14:47:42 +0000; author: noel; state: Exp; lines: +8 -2
Added ZZ, qa, and x to the list of commands that de-hoist the current
outline.
----------------------------
revision 1.4
date: 2003-08-17 00:07:31 +0000; author: noel; state: Exp; lines: +13 -10
Added "silent" to commands generating tedious messages.
----------------------------
revision 1.3
date: 2003-08-16 20:08:06 +0000; author: noel; state: Exp; lines: +11 -6
Removed a need to exclude fold level 1 headings.
----------------------------
revision 1.2
date: 2003-08-16 19:02:44 +0000; author: noel; state: Exp; lines: +84 -31
First fully functional version. May need some tweaks but it works and is
quite easy to use.
----------------------------
revision 1.1
date: 2003-08-14 21:05:05 +0000; author: noel; state: Exp;
First publicly available, experiment verison
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/colors/vo_dark.vim,v
Working file: colors/vo_dark.vim
head: 1.2
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 2; selected revisions: 2
description:
----------------------------
revision 1.2
date: 2005-06-07 15:24:30 +0000; author: noel; state: Exp; lines: +1 -1
The color darkyellow does not appear to exist on some systems. This color
has been changed to darkred.
----------------------------
revision 1.1
date: 2005-06-06 18:45:11 +0000; author: noel; state: Exp;
These are the new color scheme files.
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/colors/vo_light.vim,v
Working file: colors/vo_light.vim
head: 1.2
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 2; selected revisions: 2
description:
----------------------------
revision 1.2
date: 2005-06-07 15:24:30 +0000; author: noel; state: Exp; lines: +3 -3
The color darkyellow does not appear to exist on some systems. This color
has been changed to darkred.
----------------------------
revision 1.1
date: 2005-06-06 18:45:11 +0000; author: noel; state: Exp;
These are the new color scheme files.
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/doc/vo_readme.txt,v
Working file: doc/vo_readme.txt
head: 1.9
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 9; selected revisions: 9
description:
----------------------------
revision 1.9
date: 2005-06-07 17:48:21 +0000; author: noel; state: Exp; lines: +4 -0
Added a better VERSION description.
----------------------------
revision 1.8
date: 2005-06-07 16:44:58 +0000; author: noel; state: Exp; lines: +294 -150
Added a section about VO objects.
Added the ,,cp command.
----------------------------
revision 1.7
date: 2004-05-28 15:28:47 +0000; author: noel; state: Exp; lines: +274 -28
Added complete help for vo_checkbox.vim.
----------------------------
revision 1.6
date: 2004-05-17 17:16:28 +0000; author: noel; state: Exp; lines: +1 -1
Changed 0.3.2 to 0.3.3 in the tite.
----------------------------
revision 1.5
date: 2004-05-17 15:21:25 +0000; author: noel; state: Exp; lines: +75 -69
Modified to reflecte 0.3.3 changes.
----------------------------
revision 1.4
date: 2004-02-17 21:52:41 +0000; author: noel; state: Exp; lines: +263 -111
Modified heavily by Stefan Schiedl for 0.3.2.
----------------------------
revision 1.3
date: 2003-10-17 02:18:07 +0000; author: noel; state: Exp; lines: +44 -7
Changed version numbers.
----------------------------
revision 1.2
date: 2003-06-20 14:13:15 +0000; author: noel; state: Exp; lines: +5 -42
Final documentation tweaks for the final 0.3.0 release.
----------------------------
revision 1.1
date: 2003-06-18 13:55:03 +0000; author: noel; state: Exp;
Added this documentation to Vim Outliner.
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/experimental/Attic/checkbox.vim,v
Working file: experimental/checkbox.vim
head: 1.2
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 2; selected revisions: 2
description:
----------------------------
revision 1.2
date: 2003-07-07 13:52:45 +0000; author: noel; state: dead; lines: +0 -0
Changed checkbox.vim to vo_checkbox.vim
----------------------------
revision 1.1
date: 2003-07-07 01:22:35 +0000; author: noel; state: Exp;
Initial experimental version of checkboxes.
Contains only one function and two mappings.
The only capabilities are to add and delete check boxes from
the beginnings of headings.
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/filetype/Attic/filetype.vim,v
Working file: filetype/filetype.vim
head: 1.5
branch:
locks: strict
access list:
symbolic names:
arelease: 1.1.1.1
avendor: 1.1.1
testfork: 1.3.0.2
keyword substitution: kv
total revisions: 6; selected revisions: 6
description:
VimOutliner filetype.vim
----------------------------
revision 1.5
date: 2005-06-07 17:26:52 +0000; author: noel; state: dead; lines: +5 -2
*** empty log message ***
----------------------------
revision 1.4
date: 2003-03-01 17:37:17 +0000; author: noel; state: Exp; lines: +6 -3
Changed the filetype name to our new standard: vo_base
----------------------------
revision 1.3
date: 2003-02-14 17:49:43 +0000; author: noel; state: Exp; lines: +6 -4
Removed unnecessary filetype commands
----------------------------
revision 1.2
date: 2003-02-09 15:07:35 +0000; author: noel; state: Exp; lines: +8 -7
Changed the auto commands. Setting the "filetype plugin indent on"
option here does not work with ftplugins.
----------------------------
revision 1.1
date: 2003-02-08 21:11:26 +0000; author: noel; state: Exp;
branches: 1.1.1;
Initial revision
----------------------------
revision 1.1.1.1
date: 2003-03-20 22:35:15 +0000; author: noel; state: Exp; lines: +17 -8
no message
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/filetype/vo_base.vim,v
Working file: filetype/vo_base.vim
head: 1.1
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 1; selected revisions: 1
description:
----------------------------
revision 1.1
date: 2005-01-19 16:12:37 +0000; author: noel; state: Exp;
Finally added to CVS.
Don't know how I missed this one.
=============================================================================
RCS file: /root/VimOutliner/VimOutliner/ftplugin/vo_base.vim,v
Working file: ftplugin/vo_base.vim
head: 2.59
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 59; selected revisions: 59
description:
Vim Outliner Main Program File
----------------------------
revision 2.59
date: 2005-06-07 19:50:45 +0000; author: noel; state: Exp; lines: +2 -1
Re-removed the did_filetype() function. Restored the original variable-based
solution.
----------------------------
revision 2.58
date: 2005-06-07 12:47:38 +0000; author: noel; state: Exp; lines: +1 -2
Modified switch that prevents the filetype from being loaded more than once.
----------------------------
revision 2.57
date: 2004-05-24 22:31:11 +0000; author: noel; state: Exp; lines: +0 -6
Removed a redundant PreformattedBodyText() function.
----------------------------
revision 2.56
date: 2004-05-24 15:56:34 +0000; author: noel; state: Exp; lines: +78 -0
Added highlighting and folding support for:
Tables (marked with '|')
User-defined, wrapping text (marked with '>')
User-defined, non-wrapping text (marked with '<')
----------------------------
revision 2.55
date: 2004-05-17 15:18:20 +0000; author: noel; state: Exp; lines: +20 -1
Added Steve Litt's simple executable lines.
----------------------------
revision 2.54
date: 2004-05-17 14:18:27 +0000; author: noel; state: Exp; lines: +41 -16
Replaced system calls to 'date' with strftime().
Modified the time- and date-stamp functions.
normal <localleader>t append the time to the current heading
normal <localleader>T prepend the time to the current heading
insert <localleader>t insert the time at the cursor
normal <localleader>d append the date to the current heading
normal <localleader>D prepend the date to the current heading
insert <localleader>d insert the date at the cursor
----------------------------
revision 2.53
date: 2004-05-17 13:32:38 +0000; author: noel; state: Exp; lines: +2 -2
Added <cr> to end of sort commands.
----------------------------
revision 2.52
date: 2004-05-17 13:30:12 +0000; author: noel; state: Exp; lines: +167 -2
Added child-aware sorting functions.
Mapped <localleader>s to sort ascending.
Mapped <localleader>S to sort descending.
----------------------------
revision 2.51
date: 2004-03-18 13:25:46 +0000; author: noel; state: Exp; lines: +1 -1
Fixed a mapping command for <localleader>w
----------------------------
revision 2.50
date: 2004-02-17 21:47:31 +0000; author: noel; state: Exp; lines: +0 -217
Removed the detailed revision log. It's getting too big. From now on
'cvs log' will need to be used to see the log.
----------------------------
revision 2.49
date: 2003-10-17 01:37:10 +0000; author: noel; state: Exp; lines: +24 -10
Fixed a minor folding issue.
----------------------------
revision 2.48
date: 2003-08-04 13:25:17 +0000; author: noel; state: Exp; lines: +37 -7
Corrected a type for <localleader>w
----------------------------
revision 2.47
date: 2003-06-16 23:57:20 +0000; author: noel; state: Exp; lines: +7 -3
Set UseSpaceColon=0. This is now the standard.
----------------------------
revision 2.46
date: 2003-06-04 11:54:25 +0000; author: noel; state: Exp; lines: +24 -6
The behavior of the "d" and "t" commands have been improved and put into
functions. These commands are now mapped to call the improved functions.
----------------------------
revision 2.45
date: 2003-06-04 11:25:56 +0000; author: noel; state: Exp; lines: +12 -3
Moved the modification to the tags path outside the "if" statement in
autocommands in ftplugin. Completely removed the line from syntax.
----------------------------
revision 2.44
date: 2003-05-27 13:33:34 +0000; author: noel; state: Exp; lines: +45 -29
Added Vim style folds to both vo_base files to make them easier to read.
Added a mode line to the end of each to activate the folds.
Added a "Documentation" section that is mostly empty. This section will
eventually be extracted automatically to form the online help via Vim's
built-in help mechanisms.
----------------------------
revision 2.43
date: 2003-05-23 18:36:44 +0000; author: noel; state: Exp; lines: +7 -4
More trouble with the ,,d function and retaining proper indentation.
----------------------------
revision 2.42
date: 2003-05-23 16:02:42 +0000; author: noel; state: Exp; lines: +8 -2
Added tag file support for ~/.vimoutliner.
----------------------------
revision 2.41
date: 2003-05-23 13:55:25 +0000; author: noel; state: Exp; lines: +10 -6
Modified the d and t commands. They did not work properly on closed folds.
Commented-out the d and t commands when in insert mode. I have not used them
and they don't work properly.
----------------------------
revision 2.40
date: 2003-05-17 23:29:25 +0000; author: noel; state: Exp; lines: +11 -6
Modified date and time (,,d/,,t) to place date/time at beginning of
line instead of end of line to allow for sorting.
----------------------------
revision 2.39
date: 2003-05-17 22:49:26 +0000; author: noel; state: Exp; lines: +20 -16
Changed ^M to <cr> in all occurrances.
Modified date (<leader>d) and time (<leader>t) to add date/time to end of
current line.
----------------------------
revision 2.38
date: 2003-03-05 17:58:22 +0000; author: cepl; state: Exp; lines: +6 -3
Personal configuration file was not run from the user's $HOME directory.
Fixed.
----------------------------
revision 2.37
date: 2003-03-03 16:24:49 +0000; author: noel; state: Exp; lines: +6 -3
Added ~/.vim and ~/.vimoutliner as places to look for tag files.
----------------------------
revision 2.36
date: 2003-03-01 17:37:41 +0000; author: noel; state: Exp; lines: +13 -5
Changed the filetype name to our new standard: vo_base
----------------------------
revision 2.35
date: 2003-02-09 15:04:56 +0000; author: noel; state: Exp; lines: +70 -55
Changed key mappings to be local to the current buffer only. They
will also be loaded for any subsequent .otl file.
Changed key mappings to use an easily modifiable leader. In this case
",,".
Changed the scope of some variables. They had a buffer scoping but now
have a function scope.
----------------------------
revision 2.34
date: 2003-02-08 22:07:47 +0000; author: noel; state: Exp; lines: +5 -63
Removed spellfix functions. Perhaps I'll make them another plugin.
----------------------------
revision 2.33
date: 2003-02-08 21:31:01 +0000; author: noel; state: Exp; lines: +5 -116
Split out syntax settings as Dillon originally showed.
----------------------------
revision 2.32
date: 2003-01-30 01:47:41 +0000; author: noel; state: Exp; lines: +6 -3
modified switches sent to ispell to make it guess better.
----------------------------
revision 2.31
date: 2003-01-28 22:31:37 +0000; author: noel; state: Exp; lines: +6 -3
Modified setlocal foldtext.... to set foldtext....
----------------------------
revision 2.30
date: 2003-01-22 22:03:12 +0000; author: noel; state: Exp; lines: +8 -3
Fixed bodytext folding method.
----------------------------
revision 2.29
date: 2003-01-21 00:18:50 +0000; author: noel; state: Exp; lines: +20 -7
Fixed a problem with runtimepath.
Added a use_space_colon setting to that one can choose between bodytext
marked with a : or with a space-:.
----------------------------
revision 2.28
date: 2003-01-19 16:46:27 +0000; author: noel; state: Exp; lines: +11 -3
Removed some strange escape characters from a revision comment.
----------------------------
revision 2.27
date: 2003-01-19 16:16:54 +0000; author: noel; state: Exp; lines: +101 -88
Added detection of the color scheme and an alternative set of colors
for dark backgrounds. (well actually for non-"light" backgrounds) at
Dillon Jones' request.
Set the "current_syntax" at Dillon's request.
Modified the exe lines in the source to remove the debugging style I was
using.
----------------------------
revision 2.26
date: 2003-01-16 00:56:51 +0000; author: noel; state: Exp; lines: +26 -23
Changed a bunch of set commands to setlocal commands at the
suggestion of Jeffrey Hood. Thanks, Jeffrey!
----------------------------
revision 2.25
date: 2003-01-13 17:05:08 +0000; author: noel; state: Exp; lines: +14 -11
Fixed a problem with the new regex that define headings.
----------------------------
revision 2.24
date: 2003-01-12 19:08:32 +0000; author: noel; state: Exp; lines: +36 -25
Converted from _ to :
----------------------------
revision 2.23
date: 2003-01-11 21:00:33 +0000; author: noel; state: Exp; lines: +55 -38
Added Matej requirement for personalization settings via
.vimoutlinerrc.
Added Steve's style of bodytext that allows for wrapping and formatting
with have the headings wrap as well. It is currently set for "_" as
the bodytext marker.
Added ,,b to set all bodytext to Steve's style.
Added ,,B to set all bodytext to my style. This will also make it
possible for Steve's style to be quickly reformatted for pretty
printing with :ha.
----------------------------
revision 2.22
date: 2003-01-11 00:35:32 +0000; author: noel; state: Exp; lines: +7 -2
[6~Added support for .vimoutlinerrc in both ~ and ~/.vimoutliner.
----------------------------
revision 2.21
date: 2002-12-12 13:38:58 +0000; author: noel; state: Exp; lines: +10 -3
Fixed a spelling problem when words contain a '.
----------------------------
revision 2.20
date: 2002-12-11 23:33:16 +0000; author: noel; state: Exp; lines: +7 -3
Removed a debug setting, again (sigh).
Added some iskeyword symbols so spell-check would work on things
like: don't
----------------------------
revision 2.19
date: 2002-12-11 22:55:19 +0000; author: noel; state: Exp; lines: +24 -11
Fixed body text end error. I was checking for too specific a case.
----------------------------