20 lines
485 B
Org Mode
20 lines
485 B
Org Mode
#+TITLE: Personally Defined Functions
|
|
|
|
These are the functions defined here by myself, for myself
|
|
|
|
* ModeLine Toggle
|
|
as the name suggests, this function toggles the modelinexxk
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(defun toggle-mode-line () "toggles the modeline on and off"
|
|
(interactive)
|
|
(setq mode-line-format
|
|
(if (equal mode-line-format nil)
|
|
(default-value 'mode-line-format)) )
|
|
(redraw-display))t
|
|
|
|
(global-set-key (kbd "s-w t") 'toggle-mode-line)
|
|
|
|
#+END_SRC
|