Created
November 15, 2013 19:01
-
-
Save supernullset/7489738 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(global-set-key [f2] 'toggle-selective-display-at-depth) | |
(defun toggle-selective-display-at-depth (column) | |
(interactive "P") | |
(set-selective-display | |
(if selective-display nil (or column 3)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment