cmake-mode.el: Make cmake-tab-width a customizable variable

This commit is contained in:
Taylor Braun-Jones 2016-05-10 10:34:16 -04:00 committed by Brad King
parent 3ecdddfc35
commit f12b899f4e
1 changed files with 3 additions and 1 deletions

View File

@ -228,7 +228,9 @@ the indentation. Otherwise it retains the same position on the line"
;;
;; Indentation increment.
;;
(defvar cmake-tab-width 2)
(defcustom cmake-tab-width 2
"Number of columns to indent cmake blocks"
:type 'integer)
;------------------------------------------------------------------------------