.emacs-obsolete
changeset 1445 b1f7af188fa2
parent 1436 bbc10fe15aa5
child 1494 874f705f7be4
equal deleted inserted replaced
1444:d91ea2220a52 1445:b1f7af188fa2
   339   ;; MODIFIER LETTER is not present in terminus, this includes ˌːˈ characters.
   339   ;; MODIFIER LETTER is not present in terminus, this includes ˌːˈ characters.
   340   (set-fontset-font nil '(#x02C0 . #x02FF) "-misc-fixed-*-*-*--13-*-*-*-*-*-*-*") )
   340   (set-fontset-font nil '(#x02C0 . #x02FF) "-misc-fixed-*-*-*--13-*-*-*-*-*-*-*") )
   341  ((eq window-system 'w32)
   341  ((eq window-system 'w32)
   342   (set-frame-font "Courier New-10:antialias=none") ))
   342   (set-frame-font "Courier New-10:antialias=none") ))
   343 
   343 
       
   344 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
       
   345 (message "smex")
       
   346 
       
   347 ;; icomplete also allow flex matching with '*', try 'M-x *copy*as TAB'
       
   348 
       
   349 ;; `smex' is  alternative for `icomplete'.
       
   350 ;; https://github.com/nonsequitur/smex/
       
   351 ;; It is based on `ido'.
       
   352 (ignore-errors
       
   353   (require 'smex)
       
   354   (smex-initialize)
       
   355   (global-set-key (kbd "M-X") 'smex))
       
   356