11 lines
231 B
EmacsLisp
11 lines
231 B
EmacsLisp
;;; defuns-nlinum.el
|
|
|
|
;;;###autoload
|
|
(defun narf/nlinum-toggle ()
|
|
(interactive)
|
|
(if (bound-and-true-p nlinum-mode)
|
|
(narf|nlinum-disable)
|
|
(narf|nlinum-enable)))
|
|
|
|
(provide 'defuns-nlinum)
|
|
;;; defuns-nlinum.el ends here
|