diff --git a/index.html b/index.html index 6a23ef15..b3623cb8 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + @@ -332,7 +332,7 @@ for the JavaScript code in this tag.
  • 7.2. which-key
  • 7.3. hydra @@ -585,15 +585,7 @@ for the JavaScript code in this tag.
  • 17.47. helm-gtags
  • 17.48. sgml-mode
  • 17.49. evil
  • -
  • 17.50. hackernews - -
  • +
  • 17.50. hackernews
  • 18. Appearance @@ -2883,7 +2875,7 @@ This interferes with too many other packages. See
    (use-package hydra
       :demand t
    -  :bind (("C-c f" . imalison:hydra-font-resize/body)
    +  :bind (("C-c f" . imalison:hydra-font/body)
              ("C-c y" . imalison:hydra-yank/body)
              ("C-c 6" . imalison:compile/body))
       :config
    @@ -2891,23 +2883,24 @@ This interferes with too many other packages. See
     
    -
    -

    7.3.1 Font Size

    +
    +

    7.3.1 Font Settings

    -
    (defhydra imalison:hydra-font-resize
    +
    (defhydra imalison:hydra-font
       nil
    -  "Resize Font"
    +  "Font Settings"
       ("-" imalison:font-size-decr "Decrease")
       ("d" imalison:font-size-decr "Decrease")
       ("=" imalison:font-size-incr "Increase")
       ("+" imalison:font-size-incr "Increase")
       ("i" imalison:font-size-incr "Increase")
       ("h" imalison:set-huge-font-size "Huge")
    +  ("a" imalison:appearance "Set Default Appearance")
       ("f" set-frame-font "Set Frame Font")
       ("0" imalison:font-size-reset "Reset to default size"))
     
    @@ -6766,20 +6759,6 @@ I've disabled perspective because I just don't use it much.
    -
    -
    17.50.0.1 structured-haskell-mode
    -
    -

    -This needs a hackage install and I've never used it before. Just putting this here for later. -

    -
    - -
    (use-package shm
    -  :disabled t)
    -
    -
    -
    -
    @@ -6967,20 +6946,22 @@ Set the character used to represent spaces to ยท, and the character used for tab

    18.9 Colorize Compliation Buffers

    -This automatically applies ansi-color interpretation of terminal escape sequences to compilation buffers +This automatically applies ansi-color interpretation of terminal escape +sequences to compilation buffers.

    (defun colorize-compilation-buffer ()
    -  (read-only-mode)
    -  (ansi-color-apply-on-region (point-min) (point-max))
    -  (read-only-mode))
    +  (let ((was-read-only read-only-mode))
    +    (when was-read-only (read-only-mode -1))
    +    (ansi-color-apply-on-region (point-min) (point-max))
    +    (when was-read-only (read-only-mode +1))))
    +
     (add-hook 'compilation-filter-hook 'colorize-compilation-buffer)
     
    -

    18.10 Automatic Theme Changer

    @@ -7077,9 +7058,9 @@ load-theme hook (See the heading below). (interactive (list nil)) (if (display-graphic-p) (progn - (condition-case _ignored - (set-face-attribute 'default nil :font "Source Code Pro") - ('error nil)) + (condition-case error + (set-face-attribute 'default nil :font "source code pro") + ('error (message "Error: %s, when setting font"))) (set-face-attribute 'default nil :weight 'semi-bold) (set-face-attribute 'default nil :height imalison:default-font-size-pt)) @@ -7116,7 +7097,7 @@ load-theme hook (See the heading below).

    Author: Ivan Malison

    -

    Created: 2016-10-25 Tue 14:23

    +

    Created: 2016-10-25 Tue 17:48

    Validate