-
Notifications
You must be signed in to change notification settings - Fork 10
/
ChangeLog
2125 lines (1191 loc) · 60 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
2020-09-09 Liu Xin <meteor1113@qq.com>
* init/init-editor.el (global-tab-line-mode): use tab-line-mode to
instead of tabbar-mode.
(t): use (save-place-mode) instead of (setq save-place t)
2018-06-08 Liu Xin <meteor1113@qq.com>
* init/init-editor.el (fboundp): Use display-line-numbers-mode in emacs26.
2018-04-22 Liu Xin <meteor1113@qq.com>
* init/init-editor.el (whitespace-style): Adjust whitespace.
2017-11-01 Liu Xin <meteor1113@qq.com>
* init/modules/init-ecb.el : Change ecb-compile-window-height to 0.125
2017-10-13 Liu Xin <meteor1113@qq.com>
* init/modules/init-font.el: Upgrade chinese-fonts-setup to cnfonts.
2017-08-07 Liu Xin <meteor1113@qq.com>
* init/modules/init-toolbar.el: Fix toolbar for osx's crash.
2017-04-15 Liu Xin <meteor1113@qq.com>
* init/init-keybinding.el (eq): Bind command-<left> and
command-<right> to home and end in os x.
(eq): Key binding for os x.
2017-04-07 Liu Xin <meteor1113@qq.com>
* init/init-editor.el (after-init-hook): Disable zone for performance.
2017-03-21 Liu Xin <meteor1113@qq.com>
* init/modules/init-toolbar.el (eq): Disable toolbar for osx.
2017-01-23 Liu Xin <meteor1113@qq.com>
* init/init-package.el: Add package editorconfig.
2016-09-19 Liu Xin <meteor1113@qq.com>
* init/modules/init-font.el: Add init-font.el
Improve init-font.el
2016-08-31 Liu Xin <meteor1113@qq.com>
* init/modules/init-tabbar.el: Don't load tabbar-ruler in daemon.
2016-07-29 Liu Xin <meteor1113@qq.com>
* init-emacs.el: Rename init.el to init-emacs.el
* init/init-package.el: Use after-init-hook instead of run-with-idle-timer.
2016-04-27 Liu Xin <meteor1113@qq.com>
* init/init-editor.el (frame-title-format): Modify frame-title-format.
2016-02-06 Liu Xin <meteor1113@qq.com>
* init/modules/init-cedet.el ("pulse"): Speed up pulse.
2016-01-29 Liu Xin <meteor1113@qq.com>
* init/modules/init-toolbar.el: Add minor mode for helm-mode.
* init/modules/init-calendar.el: Update appt setting for diary.
2016-01-28 Liu Xin <meteor1113@qq.com>
* init.el: Speed up.
2016-01-27 Liu Xin <meteor1113@qq.com>
* init/init-editor.el: Disable global-cwarn-mode.
Don't load generic-x at start up.
2016-01-26 Liu Xin <meteor1113@qq.com>
* init/modules/init-toolbar.el: Update major mode menu for haskell.
* init/progmodes/init-haskell.el: Add package ghc and company-ghc.
* init/modules/init-fci.el: Config fill-column-indicator.
* init/progmodes/init-prog.el: Only enable fci-mode in window-system.
* init/modules/init-flycheck.el: Disable global-flycheck-mode default.
* init/init-package.el (fci-dash-pattern): Config fci-mode and whitespace.
2016-01-25 Liu Xin <meteor1113@qq.com>
* init/init-package.el: Disable symon-mode default.
* init/modules/init-toolbar.el: Update toolbar menu.
2016-01-24 Liu Xin <meteor1113@qq.com>
* init/init-package.el: Add package minimap.
(after-init-hook): Add package symon.
(after-init-hook): Add package aggressive-indent.
* init/progmodes/init-gdb.el: Split init-cc to init-cc and init-gdb.
* init/init-package.el (after-init-hook): Add pacage smex.
2016-01-23 Liu Xin <meteor1113@qq.com>
* init/init-package.el: Add package anzu.
2016-01-20 Liu Xin <meteor1113@qq.com>
* init/init-editor.el: Keep desktop-load-locked-desktop to 'ask.
* init.el: Don't server-start automatic.
2016-01-19 Liu Xin <meteor1113@qq.com>
* init/modules/init-cedet.el (featurep): Fix called-interactively-p.
* init.el: Add 'noerror for require.
* init/modules/init-highlight.el (after-init-hook): Setting for volatile-highlights.
* init/modules/init-tabbar.el: Update tabbar setting for tabbar-ruler-20160115.923
* init/textmodes/init-org.el ("org"): Fix for yasnippet.
2016-01-09 Liu Xin <meteor1113@qq.com>
* init/progmodes/init-haskell.el: Add init-haskell.
* init/modules/init-toolbar.el: Remove flycheck-clear.xpm
2015-12-31 Liu Xin <meteor1113@qq.com>
* init/modules/init-toolbar.el: Set toolbar for flycheck.
* init/modules/init-flymake.el: Remove flymake.
* init/modules/init-flycheck.el: Add flycheck.
2015-12-30 Liu Xin <meteor1113@qq.com>
* init/modules/init-toolbar.el: Remove recent-jump toolbar.
* init/modules/init-helm.el: Add helm.
* init/modules/init-toolbar.el (toggle-toolbar-menu): Refactor init-toolbar.
2015-12-28 Liu Xin <meteor1113@qq.com>
* init.el: Refactor.
* init/init-editor.el: Remove htmlize.
Remove cursor-chg.
Remove recent-jump.
* init.el: Split dotemacs.
Refactor.
2015-12-26 Liu Xin <meteor1113@qq.com>
* init-lisp.el: Remove sourcepair.
* init-basic.el (c-mode-common-hook): Setup ff-find-other-file.
2015-12-25 Liu Xin <meteor1113@qq.com>
* init-lisp.el: Remove eim.
* init-elpa.el: Remove anything.
("chinese-wbim"): Add chinese-wbim.
* init-lisp.el: Remove codepilot.
* init-basic.el (highlight-text): Add highlight-text. Remove smart-hl.
2015-12-24 Liu Xin <meteor1113@qq.com>
* init-lisp.el: Remove xgtags.
Remove winsav.
Remove word-count.
Remove vimpulse.
Remove ifdef.
Remove code-imports.
Remove cn-weather.
Remove doxymacs and doc-mode.
* init-elpa.el ("rust-mode"): Config rustfmt, racer, ac-racer.
(rust-mode-hook): Add cargo.
Add go-mode, go-autocomplete, go-doc, go-snippets.
: Add ac-clang, Remove auto-complete-clang.
: Add ggtags.
2015-12-23 Liu Xin <meteor1113@qq.com>
* init-elpa.el: Add rust-mode, rustfmt, racer, ac-racer.
2015-09-08 Liu Xin <meteor1113@qq.com>
* init-elpa.el (ecb-symboldef-find-tag-by-etags): Disable etags's
'Visit tags tagle' dialog when ecb's symboldef is actived.
2015-06-10 Liu Xin <meteor1113@qq.com>
* init-basic.el (format-xml-directory): Add function format-xml-directory.
2015-05-28 Liu Xin <meteor1113@qq.com>
* init-basic.el (kbd): binding Ctrl-a to mark-whole-buffer.
2015-05-06 Liu Xin <meteor1113@qq.com>
* init-toolbar.el: Adjust minormode menu's order.
(minormode-sub-menu): Adjust minor mode menu.
2015-05-05 Liu Xin <meteor1113@qq.com>
* init-elpa.el: Fix.
("org"): Fix yasnippet setting.
2015-05-04 Liu Xin <meteor1113@qq.com>
* init-elpa.el: Add init-elpa.el
2015-03-30 Liu Xin <meteor1113@gmail.com>
* init-misc.el (projectile-global-mode): Enable projectile default.
* Update magit to 1.2.2
* init-misc.el (projectile-mode): Add projectile.
2015-03-11 Liu Xin <meteor1113@gmail.com>
* init-custom.el (holiday-other-holidays): set calendar
* init-misc.el ("calendar"): set cal-china-x
* init-basic.el (holiday-local-holidays): set calendar
* init-site.el (fboundp): set ecb-source-path
2015-03-10 Liu Xin <meteor1113@gmail.com>
* init-custom.el: Add init-custom.el
2014-10-29 Meteor Liu <meteor1113@gmail.com>
* init-site.el (default-directory): update for emacs-24.4
* init-misc.el ("tabbar"): update for emacs-24.4's desktop-save-mode.
* init-basic.el (key-binding): update for emacs-24.4
2014-10-05 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (and): fix for server-ensure-safe-dir.
2014-09-30 Meteor Liu <meteor1113@gmail.com>
* init-misc.el ("tabbar"): Add "Open in Windows Explorer" to tabbar's menu.
2014-08-20 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (appt-message-warning-time): set
appt-message-warning-time to 0.
2014-05-04 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Add markdown-mode.
2014-04-09 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (*): Change zone idle from 600 to 1800.
2014-02-22 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (frame-title-format): Display encoding in title.
* init-misc.el (require): Fix: when encoding changed, tabbar's
status is not update.
2014-02-12 Meteor Liu <meteor1113@gmail.com>
* init-misc.el (locate-library): Fix diff-hl for emacs-24.1
* init-basic.el (and): Suppress error "directory ~/.emacs.d/server is unsafe" on windows.
2014-02-11 Meteor Liu <meteor1113@gmail.com>
* init-basic.el (desktop-load-locked-desktop): Fix desktop-save-mode.
(daemonp): Setting server.
2013-12-27 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Add hl-defined.
2013-11-12 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: Add diff-hl.
2013-11-06 Meteor Liu <meteor1113@gmail.com>
* init-basic.el : Disable semantic for python when python is not found.
2013-10-31 Meteor Liu <meteor1113@gmail.com>
* init-misc.el: default use sql-mode for .sql files.
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.