Skip to content

Commit

Permalink
Use ns-toggle-fullscreen when it is available
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Klishin committed Jan 27, 2013
1 parent 997e3bb commit 9955a3c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions initializers/ui_initializer.el
Expand Up @@ -39,8 +39,8 @@
(require 'color-theme) (require 'color-theme)


(load "themes/twilight-theme") (load "themes/twilight-theme")
(load "themes/vibrant-ink-theme") ;; (load "themes/vibrant-ink-theme")
(load "themes/zenburn-ng-theme") ;; (load "themes/zenburn-ng-theme")
;; (load "themes/solarized") ;; (load "themes/solarized")


(color-theme-twilight) (color-theme-twilight)
Expand All @@ -55,7 +55,8 @@
;; ;;


(global-set-key "\C-\c\C-f\C-s" 'ns-toggle-fullscreen) (global-set-key "\C-\c\C-f\C-s" 'ns-toggle-fullscreen)
;; (ns-toggle-fullscreen) (when (fboundp 'ns-toggle-fullscreen)
(ns-toggle-fullscreen))


(setq x-select-enable-clipboard t) (setq x-select-enable-clipboard t)
(setq interprogram-paste-function 'x-selection-value) (setq interprogram-paste-function 'x-selection-value)

0 comments on commit 9955a3c

Please sign in to comment.