-
Notifications
You must be signed in to change notification settings - Fork 7
/
CHANGELOG
5675 lines (2845 loc) · 171 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
[6fe3519 | 2013-03-31 12:55:15 UTC] Michael Fellinger <[email protected]>
* update rake tasks
[1d8d271 | 2013-03-27 12:06:48 UTC] Michael Fellinger <[email protected]>
* syntax errors ftl
[4169fef | 2013-03-27 12:06:34 UTC] Michael Fellinger <[email protected]>
* better platform detection
[027c494 | 2013-03-27 12:06:16 UTC] Michael Fellinger <[email protected]>
* set toplevel to be wm resizable
[068e51f | 2013-03-27 12:05:59 UTC] Michael Fellinger <[email protected]>
* KeyError => IndexError
[3d9927c | 2010-11-09 20:51:49 UTC] Michael Fellinger <[email protected]>
* WM_CLASS should be ver
[1136532 | 2010-09-01 22:24:20 UTC] Michael Fellinger <[email protected]>
* Add attr_reader for preferences on Buffer
[6c24a00 | 2010-08-27 16:16:22 UTC] Michael Fellinger <[email protected]>
* Fix issues with incremental search preview
[bef0315 | 2010-08-24 20:08:55 UTC] Simon Hafner <[email protected]>
* refactoring of clipboard
[8560fa2 | 2010-08-24 19:55:03 UTC] Simon Hafner <[email protected]>
* eol paste [fixes #4841183]
[a68eb12 | 2010-07-15 22:05:37 UTC] Simon Hafner <[email protected]>
* fixed some yardoc
[2cb767a | 2010-08-23 17:26:59 UTC] Simon Hafner <[email protected]>
* added some yardoc to Executor::Entry
[4be576a | 2010-08-25 22:09:13 UTC] Michael Fellinger <[email protected]>
* Restrict matching braces
[657f766 | 2010-08-23 17:18:38 UTC] Michael Fellinger <[email protected]>
* Fix ffi-tk dependency
[4a6d7da | 2010-08-23 17:17:57 UTC] Michael Fellinger <[email protected]>
* Version 2010.08
[07a6847 | 2010-08-19 17:39:21 UTC] Michael Fellinger <[email protected]>
* Implement matching brace jumping from anywhere
[4f9ae6f | 2010-08-17 16:05:53 UTC] Michael Fellinger <[email protected]>
* Fix namespace reference
[fa104a7 | 2010-08-05 15:24:41 UTC] Michael Fellinger <[email protected]>
* Adding cucumber from aslak
[a516287 | 2010-08-05 09:30:46 UTC] Michael Fellinger <[email protected]>
* Fix Open.file_under_cursor
[31dc014 | 2010-06-24 18:48:53 UTC] Michael Fellinger <[email protected]>
* Add CoffeScript bundle
[7d93dc5 | 2010-04-20 12:58:26 UTC] Michael Fellinger <[email protected]>
* Make sure insert cursor stays visible if minibuffer expands
[3ad4ead | 2010-04-18 18:19:03 UTC] Michael Fellinger <[email protected]>
* Language preferences influence options.comment_line now
[0939615 | 2010-04-18 18:06:45 UTC] Michael Fellinger <[email protected]>
* Make config/preferences/Go.rb US-ASCII
[5862b15 | 2010-04-14 16:33:17 UTC] Michael Fellinger <[email protected]>
* Update config/detect.rb for AsciiDoc and Go
[8e84b70 | 2010-04-03 22:01:18 UTC] Michael Fellinger <[email protected]>
* Remember the syntax last used in a buffer
[7b19a18 | 2010-04-03 18:59:30 UTC] Michael Fellinger <[email protected]>
* Avoid failure when buffer is visited for the first time
[e00499e | 2010-04-03 18:55:58 UTC] Michael Fellinger <[email protected]>
* Fix .yardopts
[19d18e5 | 2010-04-03 18:55:46 UTC] Michael Fellinger <[email protected]>
* Avoid race conditions in syntax highlighting
[9ee2edb | 2010-04-02 19:05:09 UTC] Michael Fellinger <[email protected]>
* Persist and load individual buffer info so VER remembers the position of insert cursor even without sessions
[fc4d13c | 2010-04-02 12:43:19 UTC] Michael Fellinger <[email protected]>
* Improve the session code, unfortunately sessions are useless right now
[cba72e4 | 2010-04-02 10:44:15 UTC] Michael Fellinger <[email protected]>
* Fix and spec issue when deleting line selections
[5fc32e7 | 2010-04-02 10:37:41 UTC] Michael Fellinger <[email protected]>
* Fix issue with syntax highlighting when buffer lock is deleted
[1d9a149 | 2010-04-01 11:00:26 UTC] Michael Fellinger <[email protected]>
* Only fork on unix platform
[10190d6 | 2010-04-01 10:50:05 UTC] Michael Fellinger <[email protected]>
* Implement Control-e and Control-y in insert mode
[16a869c | 2010-03-31 22:02:00 UTC] Michael Fellinger <[email protected]>
* Simplify macro calls
[154963c | 2010-03-31 21:55:48 UTC] Michael Fellinger <[email protected]>
* Add last-used macro repetition
[e1edbf8 | 2010-03-31 21:43:12 UTC] Michael Fellinger <[email protected]>
* Basic support for macros
[b695962 | 2010-03-31 13:45:57 UTC] Michael Fellinger <[email protected]>
* Cleanup
[6a8006b | 2010-03-31 13:42:41 UTC] Michael Fellinger <[email protected]>
* Increase/Decrease indent in insert mode with Control-t and Control-d
[f345e14 | 2010-03-31 13:12:10 UTC] Michael Fellinger <[email protected]>
* Control-m and Control-j can be used for newlines in insert mode
[3885a64 | 2010-03-31 13:06:16 UTC] Michael Fellinger <[email protected]>
* Basic support for Control-v to insert literals
[7a8081e | 2010-03-31 10:43:16 UTC] Michael Fellinger <[email protected]>
* Make it possible to add a new reader within a called reader
[240fbac | 2010-03-31 10:42:37 UTC] Michael Fellinger <[email protected]>
* Improve debugging output for shadowed actions
[dc659bd | 2010-03-29 15:32:58 UTC] Michael Fellinger <[email protected]>
* Fix end_of_line in diakonos keymap
[48f2ae8 | 2010-03-29 15:32:44 UTC] Michael Fellinger <[email protected]>
* Fix some keysyms for X11
[21a66f3 | 2010-03-29 15:15:43 UTC] Michael Fellinger <[email protected]>
* Fix nano keymap
[f43b424 | 2010-03-29 15:12:04 UTC] Michael Fellinger <[email protected]>
* Fix toggling selection case
[efa5a62 | 2010-03-29 15:00:41 UTC] Michael Fellinger <[email protected]>
* Support for {visual}I and {visual}A
[a0b0d07 | 2010-03-29 14:37:55 UTC] Michael Fellinger <[email protected]>
* Fix specs for text object motion
[0a6dd92 | 2010-03-29 13:38:27 UTC] Michael Fellinger <[email protected]>
* Fix pattern expansion
[1b62c89 | 2010-03-29 13:35:17 UTC] Michael Fellinger <[email protected]>
* Fix specs of MajorMode
[f2e648c | 2010-03-29 13:32:38 UTC] Michael Fellinger <[email protected]>
* Fix MinorMode specs
[3e622cb | 2010-03-29 13:26:45 UTC] Michael Fellinger <[email protected]>
* Fix insert specs
[3b91d22 | 2010-03-29 13:18:28 UTC] Michael Fellinger <[email protected]>
* Fix selection specs
[6e2d990 | 2010-03-29 13:07:54 UTC] Michael Fellinger <[email protected]>
* Fix WidgetMajorMode spec
[369556d | 2010-03-29 02:09:02 UTC] Michael Fellinger <[email protected]>
* a bunch of changes, don't even try to understand that
[16f601b | 2010-03-28 21:32:50 UTC] Michael Fellinger <[email protected]>
* Split selection into more files
[e3b8835 | 2010-03-27 21:14:10 UTC] Michael Fellinger <[email protected]>
* Implement specs for insert mode keys
[0c52b7e | 2010-03-27 21:01:59 UTC] Michael Fellinger <[email protected]>
* Fix and spec for bug in replace char
[dc5e07f | 2010-03-27 20:17:13 UTC] Michael Fellinger <[email protected]>
* Implement specs for deletion
[37f40fa | 2010-03-25 21:17:18 UTC] Michael Fellinger <[email protected]>
* Finalize yet another spec file
[9165aa3 | 2010-03-25 21:07:15 UTC] Michael Fellinger <[email protected]>
* Support for increase/decrease numbers
[855f84f | 2010-03-24 23:55:26 UTC] Michael Fellinger <[email protected]>
* rot13 encoding, up/down/toggle casing
[6116ab7 | 2010-03-24 20:48:47 UTC] Michael Fellinger <[email protected]>
* A couple of improvments for changing
[1033751 | 2010-03-24 12:49:34 UTC] Michael Fellinger <[email protected]>
* specs and support for NR
[fd8632c | 2010-03-24 12:15:53 UTC] Michael Fellinger <[email protected]>
* some more for copying and moving
[cee78b5 | 2010-03-24 09:58:55 UTC] Michael Fellinger <[email protected]>
* Add a lot of stuff... see spec for details
[7f22266 | 2010-03-22 11:35:11 UTC] Michael Fellinger <[email protected]>
* Add support for digraphs
[eb31050 | 2010-03-22 09:38:03 UTC] Michael Fellinger <[email protected]>
* Split vim keymap into files
[d8da7d0 | 2010-03-21 20:03:26 UTC] Michael Fellinger <[email protected]>
* Hackfix for rchardet fail
[fb80925 | 2010-03-21 20:03:09 UTC] Michael Fellinger <[email protected]>
* Add specs describing the functionality listed in vim quickref
[fa7862d | 2010-03-20 18:54:32 UTC] Michael Fellinger <[email protected]>
* First chunk of specs written to match vim behaviour
[cfeb1d6 | 2010-03-18 15:02:10 UTC] Michael Fellinger <[email protected]>
* ^ really is start_of_line, g^ is home_of_line
[e0b3410 | 2010-03-18 13:08:54 UTC] Michael Fellinger <[email protected]>
* Implement a bit of vim left-right motion quickref
[f7c9513 | 2010-03-18 11:55:50 UTC] Michael Fellinger <[email protected]>
* Remove the ROADMAP
[26cea72 | 2010-03-18 11:54:38 UTC] Michael Fellinger <[email protected]>
* Some updates for README
[84374da | 2010-03-18 01:14:54 UTC] Julian Langschaedel <[email protected]>
* Fix quoteright typo
[d6237dd | 2010-03-17 17:46:05 UTC] Julian Langschaedel <[email protected]>
* Adjust load_aliases to mac
[a110fe0 | 2010-03-17 19:56:42 UTC] Michael Fellinger <[email protected]>
* Implement equivalents for the way diakonos manipulates text via <F7>, <F19>, and <Alt-F7>
[0808bcd | 2010-03-17 12:57:10 UTC] Michael Fellinger <[email protected]>
* First fixes for snippet completion
[a8cf144 | 2010-03-17 12:52:34 UTC] Michael Fellinger <[email protected]>
* Final fixes and specs, generalize mode resolution and make it very explicit what happens
[96cf161 | 2010-03-17 00:17:52 UTC] Michael Fellinger <[email protected]>
* Fix and spec the fallback behaviour of modes
[afc4589 | 2010-03-16 23:39:07 UTC] Michael Fellinger <[email protected]>
* Simplify keymap spec
[e260fb1 | 2010-03-16 22:07:13 UTC] Michael Fellinger <[email protected]>
* Comment Completions bind, rm your .events to get rid of weird mouse behaviour
[e3b0d82 | 2010-03-16 22:06:34 UTC] Michael Fellinger <[email protected]>
* Event::load_default is a module function
[4a155b2 | 2010-03-15 21:26:40 UTC] Michael Fellinger <[email protected]>
* Share common code of keymap specs
[d6fda47 | 2010-03-15 21:15:53 UTC] Michael Fellinger <[email protected]>
* Improvments and fixes for diakonos keymap spec
[e79891a | 2010-03-15 21:11:22 UTC] Michael Fellinger <[email protected]>
* Fix aliasing
[d560c15 | 2010-03-15 20:36:27 UTC] Michael Fellinger <[email protected]>
* Finally rename keysyms.rb to event.rb
[1d452f1 | 2010-03-15 20:35:35 UTC] Michael Fellinger <[email protected]>
* A bit less verbose keysyms
[91da344 | 2010-03-15 20:34:58 UTC] Michael Fellinger <[email protected]>
* Add pasting from clipboard in Entry
[c859afd | 2010-03-15 20:34:42 UTC] Michael Fellinger <[email protected]>
* bind <Control-l> to kind-of-redraw
[7549efc | 2010-03-15 20:28:05 UTC] Michael Fellinger <[email protected]>
* Try a different approach for the Shift-Fn issue
[7ab8ac8 | 2010-03-15 19:58:41 UTC] Michael Fellinger <[email protected]>
* A few more specs for nano and vim
[999ac49 | 2010-03-15 19:57:56 UTC] Michael Fellinger <[email protected]>
* Fix deleting in Entry
[b1ec518 | 2010-03-15 18:39:48 UTC] Michael Fellinger <[email protected]>
* Add specs for forward search in vim keymap, minibuffer queries can be handled in specs now as well
[94dfcf3 | 2010-03-15 18:13:14 UTC] Michael Fellinger <[email protected]>
* Some updates to vim keymap specs
[d1d6152 | 2010-03-14 23:05:08 UTC] Michael Fellinger <[email protected]>
* Add support for Esc Esc ascii input in nano keymap
[666347d | 2010-03-14 22:40:15 UTC] Michael Fellinger <[email protected]>
* Fix filename completion
[d1c3c40 | 2010-03-14 22:28:13 UTC] Michael Fellinger <[email protected]>
* Fix diakonos keymap
[a873426 | 2010-03-14 22:25:23 UTC] Michael Fellinger <[email protected]>
* Fix keymap spec
[2ea4682 | 2010-03-14 22:20:12 UTC] Michael Fellinger <[email protected]>
* Fix spec for smart_autoindent
[a78c163 | 2010-03-14 22:17:38 UTC] Michael Fellinger <[email protected]>
* Update keymap of git and soma plugins
[d90a0f2 | 2010-03-14 22:11:56 UTC] Michael Fellinger <[email protected]>
* Improve behaviour of r and c in char selection
[674c2ba | 2010-03-14 22:01:02 UTC] Michael Fellinger <[email protected]>
* Add simple copy/paste to readline
[1f08862 | 2010-03-14 21:52:37 UTC] Michael Fellinger <[email protected]>
* Fix warnings in vim keymap
[69a1d12 | 2010-03-14 21:45:35 UTC] Michael Fellinger <[email protected]>
* Allow abbreviation of modifiers and details in event pattern
[767abee | 2010-03-14 01:53:51 UTC] Michael Fellinger <[email protected]>
* Extract Platform into VER namespace
[0d6dd60 | 2010-03-13 23:46:28 UTC] Michael Fellinger <[email protected]>
* Add Go bundle
[63f2efa | 2010-03-13 23:46:07 UTC] Michael Fellinger <[email protected]>
* Update bundles
[72c7e95 | 2010-03-13 20:32:24 UTC] Michael Fellinger <[email protected]>
* Try to capture correct pattern
[49a2991 | 2010-03-13 20:32:05 UTC] Michael Fellinger <[email protected]>
* In insert mode, Control-e is not eval
[599fce4 | 2010-03-13 20:31:47 UTC] Michael Fellinger <[email protected]>
* Update nano keymap
[85d9391 | 2010-03-13 20:15:36 UTC] Michael Fellinger <[email protected]>
* Log warnings when keymap is not consistent
[cfba760 | 2010-03-13 19:56:12 UTC] Michael Fellinger <[email protected]>
* Add Pathname#rm_f, in case another instance of VER was told to remove the lockfile, the original holder of the lock shouldn't complain when it's gone
[76d7650 | 2010-03-13 19:51:49 UTC] Michael Fellinger <[email protected]>
* Remove some useless overhead
[8b1cfe3 | 2010-03-13 19:51:30 UTC] Michael Fellinger <[email protected]>
* Add Control-bracketleft and Control-bracketright for lianj
[488b76b | 2010-03-13 19:42:44 UTC] Michael Fellinger <[email protected]>
* Add VER::Struct, a caching wrapper for core Struct, so source-reloading works for classes that inherit from Struct.new without superclass mismatch
[d4990f2 | 2010-03-13 19:39:46 UTC] Michael Fellinger <[email protected]>
* A bit of nitpicking
[ebeeb58 | 2010-03-13 19:39:06 UTC] Michael Fellinger <[email protected]>
* Fix file_open_ask
[001709f | 2010-03-13 19:31:22 UTC] Michael Fellinger <[email protected]>
* A couple more shortcuts from FFI::Platform for Keymap::Platform
[43ced59 | 2010-03-13 18:32:27 UTC] Michael Fellinger <[email protected]>
* Seed .events with all non-mod ASCII keys
[f7f005b | 2010-03-13 18:31:23 UTC] Michael Fellinger <[email protected]>
* Fix preview
[bccf37f | 2010-03-13 08:45:43 UTC] Michael Fellinger <[email protected]>
* Now try it the other way round, keymap has Alt, we send M1
[858e7dd | 2010-03-13 08:45:10 UTC] Michael Fellinger <[email protected]>
* Only use STRING_UTF8 on x11
[5c79d1f | 2010-03-12 17:25:11 UTC] Michael Fellinger <[email protected]>
* use b flag instead of :BINARY
[db7cfd3 | 2010-03-12 16:57:08 UTC] Michael Fellinger <[email protected]>
* Add stub spec for nano and fix keymap
[c193da5 | 2010-03-12 16:56:24 UTC] Michael Fellinger <[email protected]>
* And a couple more improvments to keysyms
[67cb586 | 2010-03-12 16:22:39 UTC] Michael Fellinger <[email protected]>
* Fix Status::Label#on_destroy
[bdf8f35 | 2010-03-12 16:21:14 UTC] Michael Fellinger <[email protected]>
* Fix specs
[462646d | 2010-03-12 16:20:26 UTC] Michael Fellinger <[email protected]>
* Make Status::Label more robust when destroyed
[95882c8 | 2010-03-12 16:19:53 UTC] Michael Fellinger <[email protected]>
* Add clear method to Clipboard
[801065c | 2010-03-12 15:13:16 UTC] Michael Fellinger <[email protected]>
* Fix specs to handle Buffer calling VER.exit
[5eed471 | 2010-03-12 14:18:59 UTC] Michael Fellinger <[email protected]>
* Fix Diakonos keymap and spec
[a34469e | 2010-03-12 14:16:12 UTC] Michael Fellinger <[email protected]>
* This should finally solve the keysym issues
[68a772c | 2010-03-12 13:53:49 UTC] Michael Fellinger <[email protected]>
* Fix annoying behaviour of MiniBuffer, no highlighting anymore since the popup of the minibuffer should be notification enough
[829df0d | 2010-03-12 13:52:54 UTC] Michael Fellinger <[email protected]>
* Fix some annoying behaviour of search_and_replace
[c5d2472 | 2010-03-12 13:24:25 UTC] Michael Fellinger <[email protected]>
* Adjust the binding of keys
[795e961 | 2010-03-12 13:20:40 UTC] Michael Fellinger <[email protected]>
* Nicer name in $0
[e8573b0 | 2010-03-11 20:08:03 UTC] Michael Fellinger <[email protected]>
* Fix vim spec
[c070a6a | 2010-03-11 20:06:25 UTC] Michael Fellinger <[email protected]>
* A little bit of cleanup in minibuffer
[fad649e | 2010-03-11 20:04:43 UTC] Michael Fellinger <[email protected]>
* Also export to string selection when copying an array
[2ce4cc6 | 2010-03-11 20:04:06 UTC] Michael Fellinger <[email protected]>
* Bookmark visit should work now
[da38e35 | 2010-03-11 20:03:40 UTC] Michael Fellinger <[email protected]>
* Some more fixes and specs
[b30c78f | 2010-03-11 19:27:52 UTC] Michael Fellinger <[email protected]>
* Major improvments to VER::Clipboard
[7241574 | 2010-03-11 18:02:32 UTC] Michael Fellinger <[email protected]>
* A lot of cleanup in vim keymap
[c1ff3e9 | 2010-03-11 17:19:48 UTC] Michael Fellinger <[email protected]>
* Make vim keymap spec pass again
[5880f9d | 2010-03-11 01:53:24 UTC] Michael Fellinger <[email protected]>
* Prepare some more ASCII for .events generation
[3ab995b | 2010-03-10 21:17:02 UTC] Michael Fellinger <[email protected]>
* Make location of .events configurable
[8c51bd0 | 2010-03-10 21:14:36 UTC] Michael Fellinger <[email protected]>
* Don't pay too much attention to the .events missing
[7aec21e | 2010-03-10 21:14:18 UTC] Michael Fellinger <[email protected]>
* Avoid fail for colon
[856600c | 2010-03-10 21:08:36 UTC] Michael Fellinger <[email protected]>
* Fix subtle bug
[8f2db0a | 2010-03-10 21:06:23 UTC] Michael Fellinger <[email protected]>
* Better structure and behaviour of keysym update
[655c891 | 2010-03-10 20:39:19 UTC] Michael Fellinger <[email protected]>
* M2 really is Control
[65271b8 | 2010-03-10 20:35:17 UTC] Michael Fellinger <[email protected]>
* remove call to windowingsystem before fork
[b49608a | 2010-03-10 12:26:57 UTC] Julian Langschaedel <[email protected]>
* Fix fork startup
[cbc5665 | 2010-03-10 12:17:12 UTC] Julian Langschaedel <[email protected]>
* missing keysyms uncomment
[f1c6fca | 2010-03-10 16:02:16 UTC] Michael Fellinger <[email protected]>
* First more-or-less done version of the keysym mapping
[6201481 | 2010-03-10 09:49:55 UTC] Michael Fellinger <[email protected]>
* Another snapshot on the way to better keysyms
[501eda8 | 2010-03-09 15:38:45 UTC] Michael Fellinger <[email protected]>
* Remove useless code
[1b942ec | 2010-03-09 23:16:41 UTC] Julian Langschaedel <[email protected]>
* Fix line_evaluate
[385dd4a | 2010-03-09 15:37:10 UTC] Michael Fellinger <[email protected]>
* Rename sequence to pattern
[a3ebcec | 2010-03-09 15:28:26 UTC] Michael Fellinger <[email protected]>
* Snapshot of keysyms
[a566924 | 2010-03-07 20:37:18 UTC] Michael Fellinger <[email protected]>
* Try to resolve issues with windows platform
[2969f3a | 2010-03-07 17:32:19 UTC] Michael Fellinger <[email protected]>
* Add some more sequences
[dd57916 | 2010-03-07 17:14:26 UTC] Michael Fellinger <[email protected]>
* Add output to console, if we are forked it goes to /dev/null anyway
[5d884df | 2010-03-07 17:14:00 UTC] Michael Fellinger <[email protected]>
* More fixes and specs
[10a1afe | 2010-03-07 17:04:26 UTC] Michael Fellinger <[email protected]>
* Fix Basic::quit
[2127ea6 | 2010-03-07 17:04:07 UTC] Michael Fellinger <[email protected]>
* Fix Status::Filename
[29c50a1 | 2010-03-07 17:03:42 UTC] Michael Fellinger <[email protected]>
* Use Tk.update
[83da8af | 2010-03-07 17:03:25 UTC] Michael Fellinger <[email protected]>
* Add option to avoid opening welcome buffer
[6db44e8 | 2010-03-07 17:02:37 UTC] Michael Fellinger <[email protected]>
* Remove KEYSYM and SYMKEY, use FakeEvent instead, seed with the results of one hour of punching the keyboard
[4dca9fb | 2010-03-07 15:46:31 UTC] Michael Fellinger <[email protected]>
* First set of specs for Diakonos keymap
[01cb87b | 2010-03-07 15:45:41 UTC] Michael Fellinger <[email protected]>
* Fix Diakonos status widgets
[dac5734 | 2010-03-07 15:45:09 UTC] Michael Fellinger <[email protected]>
* HoverCompletion should share font with buffer
[aabee17 | 2010-03-07 14:35:55 UTC] Michael Fellinger <[email protected]>
* The toplevel itself should never take focus
[4da23b4 | 2010-03-07 13:01:03 UTC] Michael Fellinger <[email protected]>
* Remove trailing newline
[1f5d807 | 2010-03-07 12:58:02 UTC] Michael Fellinger <[email protected]>
* Try to avoid focusing text widget while minibuffer is asking
[c1ef75f | 2010-03-07 12:17:01 UTC] Michael Fellinger <[email protected]>
* Allow opening non-existant files
[2387c84 | 2010-03-07 11:53:56 UTC] Michael Fellinger <[email protected]>
* Finally ask for piping selections
[2755ce4 | 2010-03-07 11:28:25 UTC] Michael Fellinger <[email protected]>
* Fix usage of logger, it might be needed before it's there
[60b61ab | 2010-03-07 11:27:55 UTC] Michael Fellinger <[email protected]>
* Map Escape in control mode to control mode
[f4a06bd | 2010-03-06 19:14:32 UTC] Michael Fellinger <[email protected]>
* Try to sort indices before working with them
[39a5bc4 | 2010-03-06 18:58:06 UTC] Michael Fellinger <[email protected]>
* Fix aspell completion
[457d145 | 2010-03-06 18:55:46 UTC] Michael Fellinger <[email protected]>
* Fix bug in minibuffer expiration
[e4436aa | 2010-03-06 18:55:07 UTC] Michael Fellinger <[email protected]>
* Finally add a logger
[d59390a | 2010-03-06 18:48:37 UTC] Michael Fellinger <[email protected]>
* Negotiate encoding when saving too, allow deleting lock, simplify rchardet call
[d77166c | 2010-03-06 13:24:35 UTC] Michael Fellinger <[email protected]>
* Fix empty buffer issue when rchardet isn't available
[05e9c10 | 2010-03-06 04:53:18 UTC] Michael Fellinger <[email protected]>
* Fix autosave
[443382b | 2010-03-06 03:52:38 UTC] Michael Fellinger <[email protected]>
* Lots of changes around save/open/close
[2589ab1 | 2010-03-06 00:17:30 UTC] Michael Fellinger <[email protected]>
* Change encoding on the fly using Executor
[da5680c | 2010-03-05 12:32:58 UTC] Michael Fellinger <[email protected]>
* Don't rely on 'tk inactive', it's reset randomly
[79b7189 | 2010-03-04 16:38:36 UTC] Michael Fellinger <[email protected]>
* Remove Delete module, all methods are in other places now
[6814913 | 2010-03-04 16:36:59 UTC] Michael Fellinger <[email protected]>
* Move delete_trailing_whitespace into Buffer and add specs for it
[40e5972 | 2010-03-04 16:22:34 UTC] Michael Fellinger <[email protected]>
* Fix exception in replace_once when it runs out of matches
[f045efa | 2010-03-04 16:16:54 UTC] Michael Fellinger <[email protected]>
* More specs and fixes for Selection and Clipboard
[4a0b161 | 2010-03-03 21:58:02 UTC] Julian Langschaedel <[email protected]>
* Add tig to git plugin and fix git blame
[6b666a6 | 2010-03-04 00:07:16 UTC] Michael Fellinger <[email protected]>
* Fix swallowed raise when setting minibuffer height
[6b78efe | 2010-03-03 20:10:05 UTC] Michael Fellinger <[email protected]>
* Make as much as possible use of Buffer#message
[0bd642c | 2010-03-03 19:58:57 UTC] Michael Fellinger <[email protected]>
* Make sure file can be sourced
[3178192 | 2010-03-03 19:58:15 UTC] Michael Fellinger <[email protected]>
* Control::tags_at isn't used anymore
[a8a24e5 | 2010-03-03 19:57:09 UTC] Michael Fellinger <[email protected]>
* Make sure Search&Replace always jumps to match
[c0a051c | 2010-03-03 19:54:56 UTC] Michael Fellinger <[email protected]>
* Call message on buffer in nano methods
[ab762fc | 2010-03-03 18:53:46 UTC] Michael Fellinger <[email protected]>
* Implement locking of files in VIM fashion
[1a9353d | 2010-03-03 16:02:46 UTC] Michael Fellinger <[email protected]>
* Center search result location
[a6d9c09 | 2010-03-03 15:55:27 UTC] Michael Fellinger <[email protected]>
* Fix I
[e340332 | 2010-03-02 23:23:51 UTC] Michael Fellinger <[email protected]>
* Remove .todo from repo and add it to .gitignore
[d646509 | 2010-03-02 22:56:42 UTC] Michael Fellinger <[email protected]>
* Center view around search results
[75664b9 | 2010-03-02 22:38:23 UTC] Michael Fellinger <[email protected]>
* Use spawn_rxvt for git plugin, and trust that we don't need less
[54bdbe1 | 2010-03-02 22:25:46 UTC] Michael Fellinger <[email protected]>
* Fix indent
[acb338c | 2010-03-02 22:21:34 UTC] Michael Fellinger <[email protected]>
* Fix the git plugin by spawning new terminals outside VER
[4499a4c | 2010-03-02 17:32:21 UTC] Michael Fellinger <[email protected]>
* Make sure line_evaluate works
[6af8835 | 2010-03-02 17:30:05 UTC] Michael Fellinger <[email protected]>
* repeat_command becomes repeat_action, is improved, and moves into Buffer
[2917c5e | 2010-03-02 17:13:44 UTC] Michael Fellinger <[email protected]>
* Increase event history size to 500
[ae031bf | 2010-03-02 17:13:30 UTC] Michael Fellinger <[email protected]>
* Fix HoverCompletion
[47e24ac | 2010-03-02 17:06:46 UTC] Michael Fellinger <[email protected]>
* Fixes for Entry
[b4bfd35 | 2010-03-02 16:58:25 UTC] Michael Fellinger <[email protected]>
* Dedicated class for the events in event history, makes Executor work again
[21d7a02 | 2010-03-02 16:47:17 UTC] Michael Fellinger <[email protected]>
* Abort search and replace when no more matches exist
[f498a35 | 2010-03-02 16:46:16 UTC] Michael Fellinger <[email protected]>
* Rename text to buffer for clarity in Search and SearchAndReplace
[259a178 | 2010-03-02 16:40:01 UTC] Michael Fellinger <[email protected]>
* Incremental highlight for search_and_replace
[61a9bdc | 2010-03-02 16:34:21 UTC] Michael Fellinger <[email protected]>
* Fix search and replace
[4c0de94 | 2010-03-02 16:06:21 UTC] Michael Fellinger <[email protected]>
* Fix a lot of issues with selection
[1453a37 | 2010-03-02 13:41:25 UTC] Michael Fellinger <[email protected]>
* Fix weird filenames with colon in them
[57791cc | 2010-03-01 13:40:15 UTC] Michael Fellinger <[email protected]>
* Put more functionality into Tag, inheritance rocks
[91f02f7 | 2010-03-01 13:02:20 UTC] Michael Fellinger <[email protected]>
* indent and unindent selections
[56651f3 | 2010-02-28 16:10:15 UTC] Michael Fellinger <[email protected]>
* First attempt at hiding minibuffer when it's empty
[9548230 | 2010-02-28 15:26:19 UTC] Michael Fellinger <[email protected]>
* Make specs pass once again
[d47df93 | 2010-02-28 14:51:39 UTC] Michael Fellinger <[email protected]>
* Work around closing issues
[f0da6f9 | 2010-02-28 14:51:16 UTC] Michael Fellinger <[email protected]>
* Adding VER::Clipboard
[dac250d | 2010-02-28 10:52:05 UTC] Michael Fellinger <[email protected]>
* Don't load customized rc.rb for specs
[bc256b7 | 2010-02-28 10:44:42 UTC] Michael Fellinger <[email protected]>
* Make sure we get and set UTF8_STRING from clipboard
[3287214 | 2010-02-28 02:39:57 UTC] Michael Fellinger <[email protected]>
* A bit of fixing so VER actually exits when all buffers are closed
[6b0d8a4 | 2010-02-28 02:39:10 UTC] Michael Fellinger <[email protected]>
* Start spec for emacs keymap
[0a25ed8 | 2010-02-28 01:06:46 UTC] Michael Fellinger <[email protected]>
* Fix a and A
[342d2f0 | 2010-02-28 00:57:46 UTC] Michael Fellinger <[email protected]>
* For now, don't use a normal Buffer for completion
[1aa7758 | 2010-02-27 19:18:58 UTC] Michael Fellinger <[email protected]>
* Finally figured out how the indication for the input focus works
[8a24a84 | 2010-02-27 19:16:32 UTC] Michael Fellinger <[email protected]>
* Various fixes so most of nano keymap works again, still needs specs
[0879a58 | 2010-02-27 18:34:52 UTC] Michael Fellinger <[email protected]>
* Use another shared context in vim keymap spec
[a347b12 | 2010-02-27 18:34:35 UTC] Michael Fellinger <[email protected]>
* Don't notify when nothing was added in minibuffer
[2d2675d | 2010-02-27 18:34:04 UTC] Michael Fellinger <[email protected]>
* Make the output of Incomplete easier to read
[8a05783 | 2010-02-27 18:13:18 UTC] Michael Fellinger <[email protected]>
* Add specs and implement deletion in VIM Keymap
[9a706eb | 2010-02-27 16:58:36 UTC] Michael Fellinger <[email protected]>
* A couple of minor fixes
[c82e002 | 2010-02-27 16:42:56 UTC] Michael Fellinger <[email protected]>
* First set of specs for movement in vim keymap
[8c869d8 | 2010-02-27 03:13:06 UTC] Michael Fellinger <[email protected]>
* Update todo
[228356c | 2010-02-27 03:10:41 UTC] Michael Fellinger <[email protected]>
* Unindent line when pressing Shift-Tab in insert mode
[ca815d9 | 2010-02-27 03:05:44 UTC] Michael Fellinger <[email protected]>
* Fail silently when removing highlight
[6434ac8 | 2010-02-27 03:05:23 UTC] Michael Fellinger <[email protected]>
* Fix wrapping selection
[c647ff8 | 2010-02-27 02:34:18 UTC] Michael Fellinger <[email protected]>
* Collapse keychain completion when action was found
[94eca42 | 2010-02-27 02:33:54 UTC] Michael Fellinger <[email protected]>
* Decrease message expiration time again
[ca3311a | 2010-02-27 02:32:53 UTC] Michael Fellinger <[email protected]>
* Nicer prompt for eval