Whitespace

This commit is contained in:
Case Duckworth 2021-02-24 17:40:56 -06:00
parent eaac9d4843
commit 689cfffcfe

View File

@ -134,7 +134,7 @@ and have made a custom fringe bitmap.
#b01100000
#b00110000
#b00011000])
(define-fringe-bitmap 'right-curly-arrow
[#b00011000
#b00110000
@ -1303,9 +1303,9 @@ that's the only time I accidentally call it, anyway.
1. Enable =auto-fill-mode= with text modes.
#+begin_src emacs-lisp :noweb-ref hooks
#+begin_src emacs-lisp :noweb-ref hooks
(add-hook 'text-mode-hook #'auto-fill-mode)
#+end_src
#+end_src
2. /Just/ in case ... let's "fix" =visual-line-mode= if we're in =org-mode=.
@ -1354,7 +1354,7 @@ This has to be done /before/ loading the package. It's included in
(global-set-key (vector margin event) #'mwheel-scroll))))
#+END_SRC
**** Then: =visual-fill-column= :package:
**** Then: =visual-fill-column= :package:
In reading-intensive views, this mode keeps the text from getting too
wide.
@ -2469,7 +2469,7 @@ from [[https://github.com/KaratasFurkan/.emacs.d#org-1][Furkan Karataş]].
'(("^ *\\([+]\\) "
(0 (prog1 ()
(compose-region (match-beginning 1) (match-end 1) "◦"))))))
(defface org-checkbox-done-text
'((t (:inherit 'font-lock-comment-face :slant normal)))
"Face for the text part of a checked org-mode checkbox."
@ -3172,15 +3172,15 @@ run =runemacs.exe=.
*This is the main shortcut for running Emacs.*
#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs.cmd" "")
<<w32-bat-common>>
start "emacs" "%EMACSC%" -n -c -a "%EMACS%" %*
<<w32-bat-common>>
start "emacs" "%EMACSC%" -n -c -a "%EMACS%" %*
#+end_src
**** Emacs Daemon
#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs Daemon.cmd" "")
<<w32-bat-common>>
start "emacs-daemon" %EMACS% --daemon
<<w32-bat-common>>
start "emacs-daemon" %EMACS% --daemon
#+end_src
**** Emacs Safe Start
@ -3188,8 +3188,8 @@ start "emacs-daemon" %EMACS% --daemon
This runs Emacs with the factory settings.
#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs Safe Start.cmd" "")
<<w32-bat-common>>
start "emacs-safe" "%EMACS%" -Q %*
<<w32-bat-common>>
start "emacs-safe" "%EMACS%" -Q %*
#+end_src
**** Emacs Debug
@ -3197,8 +3197,8 @@ start "emacs-safe" "%EMACS%" -Q %*
This runs Emacs with the =--debug-init= option enabled.
#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs Debug.cmd" "")
<<w32-bat-common>>
start "emacs-debug" "%EMACS%" --debug-init %*
<<w32-bat-common>>
start "emacs-debug" "%EMACS%" --debug-init %*
#+end_src
*** Other configuration files