.emacs-my
changeset 63 35e8c02c513f
parent 62 2db4bb6186a8
child 64 54ef0d72488f
equal deleted inserted replaced
62:2db4bb6186a8 63:35e8c02c513f
   683 ;; TAB (tab settings)
   683 ;; TAB (tab settings)
   684 (setq-default tab-width 4)
   684 (setq-default tab-width 4)
   685 (setq-default indent-tabs-mode nil)     ; t - будут вставляться \t
   685 (setq-default indent-tabs-mode nil)     ; t - будут вставляться \t
   686 (setq tab-always-indent t)
   686 (setq tab-always-indent t)
   687 (setq c-tab-always-indent t)
   687 (setq c-tab-always-indent t)
   688 (loop for x downfrom 40 to 1 do
   688 (let ( (line-width 400) )
   689       (setq tab-stop-list (cons (* x 4) tab-stop-list)))
   689   (setq i (+ (/ line-width 4) 1))
       
   690   (while (> (setq i (- i 1)) 0)
       
   691     (setq tab-stop-list (cons (* i 4) tab-stop-list))))
   690 
   692 
   691 ;; ----------------------------------------------------------------------
   693 ;; ----------------------------------------------------------------------
   692 ;; Diff.
   694 ;; Diff.
   693 (setq ediff-diff-options "")
   695 (setq ediff-diff-options "")
   694 
   696