Remove old big-mode defuns

This commit is contained in:
Henrik Lissner 2016-02-04 18:52:50 -05:00
parent d863e32570
commit 2de49ff8da
2 changed files with 7 additions and 20 deletions

View file

@ -18,13 +18,6 @@
(writeroom-mode (if writeroom-mode -1 1)) (writeroom-mode (if writeroom-mode -1 1))
(set-frame-parameter nil 'fullscreen (if (not (frame-parameter nil 'fullscreen)) 'fullboth))))) (set-frame-parameter nil 'fullscreen (if (not (frame-parameter nil 'fullscreen)) 'fullboth)))))
(defvar narf--big-mode nil)
;;;###autoload
(defun narf:toggle-big-mode ()
(interactive)
(set-frame-font (if narf--big-mode narf-default-font narf-big-font))
(setq narf--big-mode (not narf--big-mode)))
;;;###autoload ;;;###autoload
(defun narf/reset-theme () (defun narf/reset-theme ()
(interactive) (interactive)
@ -46,16 +39,6 @@
(narf/load-font narf-current-font)) (narf/load-font narf-current-font))
(setq narf-current-theme theme)) (setq narf-current-theme theme))
;;;###autoload
(defun narf/default-font ()
(interactive)
(set-frame-font narf-default-font))
;;;###autoload
(defun narf/big-font ()
(interactive)
(set-frame-font narf-big-font))
;;;###autoload ;;;###autoload
(defun narf/show-as (how &optional pred) (defun narf/show-as (how &optional pred)
(let* ((beg (match-beginning 1)) (let* ((beg (match-beginning 1))

View file

@ -2,9 +2,13 @@
;; This library offers: ;; This library offers:
;; + impatient-mode: for broadcasting my emacs session ;; + impatient-mode: for broadcasting my emacs session
;; + TODO integration with reveal.js for presentations ;; + big-mode: for enlarged text while screencasting
;; + TODO "big-mode", for making emacs presentable for screencasts/share ;; + integration with reveal.js for presentations
;; + TODO quick note/time keeping for live/youtube recordings
;; Big-mode settings
(defconst big-mode-font (font-spec :family "Inconsolata" :size 16))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(use-package impatient-mode (use-package impatient-mode
:defer t :defer t