.emacs-my
changeset 1127 dec4b1d47f61
parent 1126 ac1679b2a4cb
child 1128 33ab3ce7f973
equal deleted inserted replaced
1126:ac1679b2a4cb 1127:dec4b1d47f61
   837 (setq uniquify-buffer-name-style 'post-forward)
   837 (setq uniquify-buffer-name-style 'post-forward)
   838 (setq uniquify-separator "|")
   838 (setq uniquify-separator "|")
   839 (setq uniquify-after-kill-buffer-p t)
   839 (setq uniquify-after-kill-buffer-p t)
   840 
   840 
   841 (setq read-buffer-completion-ignore-case t)
   841 (setq read-buffer-completion-ignore-case t)
       
   842 (setq read-file-name-completion-ignore-case t)
   842 
   843 
   843 ;; buffer-menu better then buffer-list, but ibuffer much better.
   844 ;; buffer-menu better then buffer-list, but ibuffer much better.
   844 (global-set-key "\C-x\C-b" 'ibuffer)
   845 (global-set-key "\C-x\C-b" 'ibuffer)
   845 
       
   846 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
       
   847 (message "minibuffer")
       
   848 
   846 
   849 (icomplete-mode 1)
   847 (icomplete-mode 1)
   850 (setq icomplete-with-completion-tables t)
   848 (setq icomplete-with-completion-tables t)
   851 
   849 
   852 (mapc (lambda (ext) (add-to-list 'completion-ignored-extensions ext))
   850 (mapc (lambda (ext) (add-to-list 'completion-ignored-extensions ext))
   854         ".class" "~" ".aux"
   852         ".class" "~" ".aux"
   855         ".o" ".obj" ".map" ".lib" ".lo" ".la" ".a" ".bin" ".exe"
   853         ".o" ".obj" ".map" ".lib" ".lo" ".la" ".a" ".bin" ".exe"
   856         ;; Place dir at end to appear at the start of completion-ignored-extensions.
   854         ;; Place dir at end to appear at the start of completion-ignored-extensions.
   857         "CVS/" ".hg/" ".svn/" ".git/" ".bzr/"
   855         "CVS/" ".hg/" ".svn/" ".git/" ".bzr/"
   858         ) )
   856         ) )
   859 (setq read-file-name-completion-ignore-case t)
       
   860 
   857 
   861 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
   858 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
   862 (message "completion")
   859 (message "completion")
   863 
   860 
   864 ;; I remove partial-completion-mode because it depricated in Emacs 24.0.
   861 ;; I remove partial-completion-mode because it depricated in Emacs 24.0.