forked from meteor1113/dotemacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1808 lines (1018 loc) · 51.4 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
2013-05-27 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (after-init-hook): Add setting for emacs-init-time.
2013-05-08 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (>=): Add js2-mode.
2013-03-21 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("tabbar"): Update tabbar-ruler.el to 0.25
2013-03-20 Meteor Liu <meteor1113@gmail.com>
* init-site.el ("ecb"): Fix ecb for cedet-2.0
* init-misc.el ("tabbar"): Fix tabbar-ruler for emacs-24.3(ucs-insert)
2012-11-06 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Add format-xml.
2012-08-24 Meteor Liu <meteor1113@gmail.com>
* init-site.el (fboundp): setq ecb-windows-width to 0.25
2012-07-26 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Add mark-multiple.
* init-basic.el ([f11]): Bind f11 to toggle-fullscreen.
2012-07-23 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (fci-mode): Add fill-column-indicator.el.
2012-07-12 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Disable whitespace-mode in xml.
2012-06-21 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (zone-programs): Fix zone.
2012-06-19 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (org-src-fontify-natively): set
org-src-fontify-natively to t.
* init-toolbar.el: Add electric-pair-mode menu item.
2012-05-03 Meteor Liu <meteor1113@gmail.com>
* init-basic.el ([header-line double-mouse-1]): Bind [header-line
double-mouse-1] to create new buffer.
2012-04-29 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Remove some toolbar item like emacs-24.
* init-basic.el: Fix dired-jump.
* init-toolbar.el: Add linum toolbar iterm.
* init-basic.el: Fix.
* init-misc.el (require): Fix highlight-symbol-mode.
2012-04-26 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Fix.
* init-misc.el: Disable nyan-mode default, too slow.
Disable change-cursor-mode for performance.
* init-basic.el: Disable global-hl-line-mode.
* init-misc.el (require): Don't enable highlight-symbol-mode
global, only in program modes.
* init-basic.el: Don't enable linum-mode global, only enable in
program modes.
2012-04-25 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Fix csharp-mode setting.
2012-04-11 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (fboundp): Fix ido and ffap.
2012-04-05 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Add php-mode.
2012-01-25 Meteor Liu <meteor1113@gmail.com>
* Move sample to etc/
2012-01-18 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (ace-jump-mode): Add ace-jump-mode.
(and): Don't save ac completion history file.
("viper"): Fix vimpulse setting.
("ace-jump-mode"): Fix ace-jump-face-foreground.
* init-basic.el (300): Setup zone-when-idle.
2012-01-15 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (init-emms): Set emms to support mpg123.
2012-01-12 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (kbd): Bind Ctrl + mouse wheel to text scale.
* init-misc.el: Add volatile-highlights.
2012-01-09 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Add color-theme.
2012-01-04 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (filesets-data): Fix filesets.
2012-01-03 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (filesets-data): Use filesets.
* init-misc.el (htmlize-buffer): autoload htmlize.
2011-12-28 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Disable display time.
* init-misc.el (init-emms): Update emms modeline setting.
2011-12-27 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (after-make-frame-functions): Fix background color.
(after-make-frame-functions): Fix frame's background color.
* init-misc.el (require): Fix highlight-symbol face.
* init-basic.el (dired-mode-hook): Fix dired key setting(terminal
can't know [return], only (kbd "RET")).
: Fix dired's single buffer.
: Delete diary window when appt-activate.
2011-12-13 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (inhibit-default-init): Disable load the default library.
2011-12-12 Meteor Liu <meteor1113@gmail.com>
* README (Email): Update README.
2011-11-18 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("code-imports"): Add code-imports.el
2011-11-02 Meteor Liu <meteor1113@gmail.com>
* init-site.el (fboundp): Change ecb-compile-window-height to 0.15
2011-10-20 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (appt-display-duration): Don't delete appt window.
2011-10-19 Meteor Liu <meteor1113@gmail.com>
* lisp/codepilot/misc/smart-hl.el: Get a new smart-hl.el for emacs24.
2011-10-17 Meteor Liu <meteor1113@gmail.com>
* Update emacs-calfw from v1.2 to v1.3
2011-10-16 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (and): Set auto-complete for eshell.
2011-10-12 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("sqlplus"): Use mouse-2 instead of c-mouse-1.
2011-10-05 Meteor Liu <meteor1113@gmail.com>
* init-site.el (user-include-dirs): Fix user-include-dirs.
2011-09-26 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("tabbar"): Fix tabbar font in win7.
* init-site.el (boundp): Fix ecb compatible with emacs24, because stack-trace-on-error.
2011-09-22 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (my-c-mode-font-lock-if0): comment if0 in c/c++-mode.
2011-09-04 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (kbd): Bind M-SPC to set-mark-command instead of C-SPC.
2011-09-02 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (dired-dwim-target): dired.
2011-08-30 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (grep-dir-format): Fix grep.
2011-08-26 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("\C-xo"): Add win-switch.el
2011-08-23 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Why nyan-wavy-trail no effect in gnu/linux.
2011-08-22 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (nyan-mode): Add nyan-mode.
(and): Fix nyan-mode.
2011-08-19 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (cfw:open-org-calendar): Update calfw to v1.2
* init-basic.el (chmod+x): Fix chmod+x.
2011-08-17 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (and): Fix ac-modes.
* init-toolbar.el (misc-sub-menu): Add multi-term menu item.
2011-08-12 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Fix auto-mode-alist.
* init-misc.el (auto-mode-alist): Fix auto-mode-alist for plsql-mode.
* init-toolbar.el (language-sub-menu): Add plsql-mode major-mode.
2011-08-11 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (and): Fix auto-complete for ielm-mode.
2011-08-10 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (format-cxx-file): Remove warning for set-buffer.
2011-08-03 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (fboundp): Change cua-rectangle-mark-key to [C-M-return].
* init-misc.el (sqlplus-mode-hook): Fix sqlplus.
2011-08-02 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (scroll-step): set scroll-step to 1.
* init-misc.el (plsql-mode): Add plsql.el
(sqlplus): Add sqlplus.el
* init-basic.el (grep-dir-format): MinGW's grep support ''.
2011-08-01 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (require): Bind Ctrl PageUp/PageDown to tabbar-backward/tabbar-forward.
* init-basic.el ([C-next]): Bind Ctrl PageDown to next-buffer.
([C-prior]): Bind Ctrl PageUp to previous-buffer.
* sample/.dir-locals.el: Add.
2011-07-31 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (auto-mode-alist): Setup auto-mode-alist for hexl-mode.
* init-toolbar.el (language-sub-menu): Add hexl-mode menu item.
* init-basic.el (goto-match-paren): Setup goto-match-paren.
(make-backup-files): Setup auto backup.
* init-misc.el (undo-tree-mode): Setup undo-tree.
2011-07-30 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Setup for ielm.
2011-07-29 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (comment-column): Set comment-column default to 40.
(grep-current-dir): grep-current-dir can support region.
(grep-dir-format): Fix grep.
2011-07-28 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (mode-require-final-newline): Disable
require-final-newline in text-mode.
2011-07-13 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (magit-status): Add package magit.
2011-07-12 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (daemonp): Don't enable appt when daemon.
2011-07-08 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("calendar"): Add cal-china-x.
("calfw"): Add calfw.
* init-basic.el (calendar-chinese-all-holidays-flag): Set calendar.
2011-07-07 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Bind C-u f12 to semantic-ia-fast-jump-back.
Remove "ESC ESC <f12>" binding.
From now on, don't support emacs-21.
([f4]): Bind C-u f4 to previous-error.
("gud"): Bind C-u f5 to gud-kill in gud-minor-mode.
* init-misc.el: Bind C-u f2 to bm-previous.
Remove "ESC ESC <f2>" binding.
* init-site.el: Bind C-u f2 to viss-bookmark-prev-buffer.
* init-misc.el: Revert C-u f3 to highlight-symbol-prev.
Remove "ESC ESC <f3>" binding.
2011-07-06 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Bing "ESC ESC <f2>" to bm-previous.
: Bind "ESC ESC <f3>" to highlight-symbol-prev.
* init-basic.el: Bind "ESC ESC <f12>" to semantic-ia-fast-jump-back.
2011-07-04 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("tabbar"): Fix tabbar-ruler' face family.
* init-basic.el (grep-dir-format): Use default grep option in gnu/linux.
2011-07-03 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("tabbar"): Fix tabbar-ruler in terminal and window-system.
(require): Fix tabbar.
* init-basic.el: Keep auto-insert-query 'function
(find-dotemacs-file): Fix find-dotemacs-file.
2011-07-02 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (tabbar-popup-menu): Fix tabbar-ruler.
* init-basic.el (grep-current-dir): Fix grep.
2011-07-01 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: C-c C-v to toggle view-mode.
2011-06-30 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Fix grep on aix.
2011-06-28 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Fix vimpulse.
* init-misc.el ("viper"): Fix vimpulse.
2011-06-27 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("viper"): Use vimpulse.
* init-toolbar.el: viper-mode menu item.
2011-06-26 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Add minor-mode menu item - goto-address-mode.
2011-06-25 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (grep-current-dir): Fix grep.
2011-06-24 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Fix tabbar font.
Add site-lisp dir.
2011-06-21 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Add copy menu item to tabbar-popup-menu.
: Fix tabbar-popup-menu.
2011-06-20 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (auto-mode-alist): Use ntcmd-mode instead of dos-mode.
Use bat-generic-mode instead of ntcmd-mode.
("vc-svn"): Auto load psvn when used vc-svn.
2011-06-18 Meteor Liu <meteor1113@gmail.com>
* init-site.el (ecb-autoloads): for compatible.
* init-basic.el: Don't report error when can't found gcc.
2011-06-17 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: backspace key for aix.
(cedet-possible-dirs): if have offical cedet.
2011-06-16 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (auto-insert-expand): autoinsert.
2011-06-15 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (write-file-hooks): time-stamp.
(auto-insert-mode): auto-insert setting.
2011-06-14 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Make ecb support emacs-lisp-mode in build in cedet.
2011-06-09 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (buffers-menu-max-size): More buffers menu.
* init-misc.el: Add dos-mode.
2011-06-08 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (recentf-track-closed-file): Adviced. Move to
beginning of the recent list after killed.
(undo-kill-buffer): Add.
2011-06-07 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (svn-status): Add psvn.
* init-site.el: visual bookmarks support mouse.
2011-06-03 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (word-count-mode): Add word-count.el
2011-05-27 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Use comment-dwim instead of comment-or-uncomment-region.
2011-05-23 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Set appt and diary.
2011-05-20 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Fix highlight-symbol-face.
2011-05-18 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Don't auto load emms history when daemon.
2011-05-17 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Auto save and load emms history.
* init-toolbar.el: Update emms setting.
2011-05-16 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Add line-wrap toolbar item.
2011-05-12 Meteor Liu <meteor1113@gmail.com>
* init-site.el: Update ecb setting.
2011-05-11 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (format-cxx-directory): Add format-cxx-directory.
2011-05-10 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Use tabbar-buffer-groups to group tabbar.
2011-05-05 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (grep-current-dir): Fix a bug.
(executable-find): Auto add executable attribute for script.
2011-05-04 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Add winsav.el
2011-04-18 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Add multi-term.el
2011-04-14 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Bind double-mouse-2 to semantic-ia-fast-jump-back.
* init-site.el: Only capture (ctrl " ") in ibus-mode.
2011-04-01 Meteor Liu <meteor1113@gmail.com>
* init-site.el: Don't capture f6-f12 in ibus-mode.
2011-03-24 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Bind some mouse event.
2011-03-19 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (and): Set mouse event for semantic.
* init-misc.el ("tabbar"): Add tabbar-ruler.el
* init-basic.el ("filecache"): Add filecache setting.
2011-03-17 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Let whitespace-style compatible with emacs-23.3
Add find-func setting.
2011-03-10 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Enable auto-complete in comment.
* init-basic.el (user-include-dirs): user-include-dirs also used
by ffap.
2011-03-09 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (mark-current-line-mouse): Bind <left-margin>
<mouse-1> to mark-current-line-mouse.
2011-03-04 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Only enable dired+ in window-system.
2011-02-23 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: User dark frame-background-mode for terminal.
2011-02-15 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el (minormode-sub-menu): Add iimage-mode menu.
2011-01-27 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Disable highlight-parentheses.
autoload drag-stuff.
2011-01-26 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Disable highlight-symbol-mode-post-command.
2011-01-25 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Enable global-hl-line-mode in terminal.
: Enable xterm-mouse-mode for putty.
: Support mouse scroll in terminal.
* init-misc.el: Enable highlight-symbol-mode in terminal.
2011-01-19 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (flymake-no-changes-timeout): Change from 0.5 to 5.0
2011-01-17 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (flymake-master-make-cc-init): Fix a flymake bug.
2011-01-13 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: highlight-symbol-face's background set to gray83(eclipse).
* init-site.el: Fix a bug for ede-cpp-root-project when not
install global.
2011-01-10 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Don't enable flymake in default.
2010-12-21 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (shell-mode-hook): Enable
ansi-color-for-comint-mode for shell-mode.
: Enable winner-mode for window configuration.
2010-12-15 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Small changes for flymake python.
2010-12-13 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Small changes for flymake toolbar.
* init-basic.el: Small changes for flymake.
2010-12-12 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Check C/C++ compile when startup.
: Add elisp and shell support for flymake.
Disable FlymakeElisp because ede-projects.el error when startup.
2010-12-11 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Flymake now support clang.
2010-12-08 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Flymake both support vc6 and vc2010.
2010-12-07 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Flymake now support vc.
* init-toolbar.el: Improve flymake toolbar.
* init-site.el: Setup INCLUDE path for gcc.
2010-12-06 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (org-mode-hook): Don't enable whitespace and
auto-fill-mode in org.
2010-12-05 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Flymake now support c/c++ header file.
: set flymake-log-level to 0.
2010-12-03 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Improve flymake setting.
Enable global-linum-mode.
: Add flymake setting for python using pyflakes.
* init-toolbar.el: Add flymake toolbar.
* init-basic.el: Add flymake setting.
2010-11-29 Meteor Liu <meteor1113@gmail.com>
* Update auto-complete to 1.3.1
* init-misc.el: Add rainbow-mode.
2010-11-17 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Update cn-weather toolbar item.
2010-11-15 Meteor Liu <meteor1113@gmail.com>
* lisp/cn-weather.el: Update cn-weather.
2010-10-18 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Add Minor mode and Misc sub menu.
Update minor mode sub menu.
2010-09-28 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Add key description for toolbar help.
: Add Revert and Change encoding menu.
(emms-sub-menu): Improve emms menu.
2010-09-27 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Add grep and moccur toolbar item.
2010-09-25 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (anything-command-map-prefix-key): anything.
* init-toolbar.el: Improve remember toolbar setting.
Disable all separator.
2010-09-22 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (global-map): Setup dired-x.
* init-misc.el (require): Add browse-kill-ring.
* init-toolbar.el: Add comment and format toolbar item.
Auto save toolbarshow setting.
Add remember toolbar.
* Add lisp/w32-browser.el
2010-09-20 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (dired-mode-hook): Add dired+.
2010-09-19 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el ("folding"): Add toggle-hiding toolbar item.
Add emms toolbar.
* init-misc.el: Bind double click to change song in emms.
* init-toolbar.el: Use emms pop menu instead of toolbar item.
2010-09-16 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Bind [header-line double-mouse-1] to kill-this-buffer.
2010-09-14 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("emms-playlist-mode"): Use space to pause.
2010-09-08 Meteor Liu <meteor1113@gmail.com>
* init-site.el: Add ibus setting.
(require): Add scim-bridge setting.
2010-09-05 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (emms-dir-tree): Improve emms setting.
* init-toolbar.el: Remove semantic-impl-toggle toolbar item.
Setup emms toolbar item.
* init-misc.el (emms): Set autoload for emms.
2010-08-26 Meteor Liu <meteor1113@gmail.com>
* .emacs: Update to support cedet-1.0
2010-08-23 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (format-region): Check whitespace-cleanup.
2010-08-21 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: In default, don't enable whitespace in sql-mode.
2010-08-19 Meteor Liu <meteor1113@gmail.com>
* snippets/text-mode/isot: Add.
2010-08-14 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Enable upcase-region and downcase-region only (region-active-p).
2010-08-07 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Disable linum-mode in default because slow.
* init-misc.el: Add cn-weather.
2010-08-04 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (org-mode-hook): Enable whitespace in org-mode.
2010-08-03 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Set auto-complete for clang.
2010-08-02 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("company"): Set autoload for company-mode.
2010-07-25 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Update auto-complete from 1.2 to 1.3
2010-07-22 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Disable highlight-symbol-mode in console.
2010-07-19 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Enable pc-selection-mode in emacs-21.
2010-07-14 Meteor Liu <meteor1113@gmail.com>
* init-site.el: Add custom-autoload for cedet in emacs-21.
* init-misc.el: Add line-number-at-pos for drag-stuff.
Emacs-21 can't use eim.
Don't use drag-stuff in emacs-21.
* init-basic.el (frame-title-format): system-name must in the last.
2010-07-12 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Enable transient-mark-mode.
2010-07-10 Meteor Liu <meteor1113@gmail.com>
* init-misc.el:
doxymacs,sql-indent,highlight-symbol,highlight-parentheses now
compilation with emacs-21.
* init-basic.el: Enable move-line-up and move-line-down.
2010-07-09 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Compilation with emacs-21.
2010-07-04 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el (toggle-toolbar-menu): Add change to csv-mode menu.
* init-misc.el: Add csv-mode.
2010-07-03 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (text-mode-hook): Add imenu for text-mode.
* init-misc.el (csharp-mode-hook): Add imenu for C#.
2010-06-29 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Set magic-mode-alist for objc-mode.
2010-06-26 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (company--disabled-backends): Disable
company-pysmell back-end.
2011-07-08 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Set default-major-mode to text-mode.
2010-06-24 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Add change major-mode menu.
2011-07-06 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Bind [C-u f3] to highlight-symbol-prev.
* init-basic.el (hs-set-up-overlay): Use mode-line face to display hideshow-overlay.
* init-misc.el: Disable hl-s-mode in help-mode.
2010-06-22 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Set background color to lightcyan.
2010-06-21 Meteor Liu <meteor1113@gmail.com>
* init-site.el: Enable global-semantic-decoration-mode for include.
2010-06-20 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (auto-mode-alist): .mm alist to objc-mode.
* init-toolbar.el: Remove the some buttons in the tool bar.
2010-06-19 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Add toolbar button isearch-repeat-forward.
* init-basic.el (hs-set-up-overlay): Setting hideshow.
Add skeleton setting.
(window-system): Color setting.
(lambda): Remove the print-buffer button in the tool bar.
* init-misc.el (smart-hl): Add smart-hl for double click highlight.
2010-06-06 Meteor Liu <meteor1113@gmail.com>
* init-site.el: Search global for CEDET.
2010-06-05 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Open semanticdb-enable-gnu-global-databases for
c-mode and c++-mode.
* init-misc.el: Add gtags and xgtags setting.
Remove gtags.
Search cscopt and global.
* init-basic.el: Update semantic-ia-fast-jump-back for buildin cedet.
: Set ede-locate-setup-options to enable global.
* init-site.el: Update semantic-ia-fast-jump-back.
: Enable semantic-load-enable-primary-exuberent-ctags-support.
* init-basic.el (grep-current-dir): Update grep setting.
* init-site.el: Add semantic-load-enable-all-exuberent-ctags-support.
2010-06-04 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Add toolbar item semantic-analyze-proto-impl-toggle.
* init-basic.el (org-export-with-archived-trees): Org also export
archived trees.
2010-06-03 Meteor Liu <meteor1113@gmail.com>
* README: Update toolbar config.
* init-basic.el: Customize PATH in win32.
2010-06-02 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (hl-line-face): Highlight line using underline.
2010-05-31 Meteor Liu <meteor1113@gmail.com>
* .emacs: Modify for portable emacs.
2010-05-30 Meteor Liu <meteor1113@gmail.com>
* init-toolbar.el: Add toolbar setting.
2010-05-28 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Load sql-indent.el when sql.
: Set tabbar-mode to display modified flag.
* init-basic.el (sql-mode-hook): sql-mode Setting.
* init-misc.el: Add ac-source-yasnippet to all ac-modes.
* init-basic.el (kbd): Alias (kbd "ESC <f6>") to [M-f6].
(kbd): Alias (kbd "ESC <C-f6>") to [C-M-f6].
(grep-current-dir): When (grep-current-dir) return empty, prompt.
(moccur-all-buffers): When (moccur-all-buffers) return empty, prompt.
: Swap f6/C-f6, now f6 bind to grep family, C-f6 bind to moccur family.
(gdb-use-separate-io-buffer): Set to t.
(auto-mode-alist): Alias .prc file to sql-mode.
2010-05-27 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (grep-current-dir): Ignore version control dirs.
* .emacs: Support portable emacs.
* init-basic.el (inhibit-startup-message): Disable startup message.
2010-05-26 Meteor Liu <meteor1113@gmail.com>
* init-basic.el ([f7]): Prompt command when press f7.
([f7]): Don't prompt command when press f7.
2010-05-25 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (artist-coord-win-to-buf): Add advice to fix bug
with tabbar-mode.
2010-05-24 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Bind C-S-u and C-S-l to upcase-region and downcase-region.
2010-05-21 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Add autoload for pulse.
* init-misc.el: Add csharp-mode to support c#.
2010-05-20 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (gud-kill-buffer-hook): Add advice for auto
enable/disable gud-tooltip-mode.
(gdb): Add advice for deactivate ecb.
2010-05-19 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (gdb-tooltip-hook): Add for auto enable/disable gud-tooltip-mode.
2010-05-18 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (window-system): In terminal, whitespace-mode
don't display tabs.
(cua-keep-region-after-copy): In terminal, don't keep region after copy.
2010-05-17 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Highlight TODO.
*: Refactor c include dirs.
2010-05-15 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Create imenu menu for makefile-mode.
("whitespace"): Hack whitespace-post-command-hook for emacs-23.2.
(whitespace-style): Don't display space-before-tab and space-after-tab.
: Turn auto-image-file-mode.
2010-05-14 Meteor Liu <meteor1113@gmail.com>
* init-basic.el: Add TODO|FIXME to font lock keyword.
2010-05-12 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (show-trailing-whitespace): Close
show-trailing-whitespace, use whitespace-mode instead.
: whitespace-mode: don't display newline-mark.
(tab-width): Set default tab-width to 4.