439ce31bc5
- Don’t need to enable company mode that way - Disable electric local mode, and not global - Properly handle electric indent disabling
40 lines
1.6 KiB
EmacsLisp
40 lines
1.6 KiB
EmacsLisp
;;; funcs.el --- Asm Layer functions File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Tu, Do Hoang <tuhdo1710@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
(defun asm-generic-setup ()
|
|
(setq indent-tabs-mode nil) ; use spaces to indent
|
|
(setq tab-stop-list (number-sequence 2 60 2))) ; 2 spaces per tab
|
|
|
|
(defun asm-electric-indent-local-mode-off ()
|
|
(electric-indent-local-mode -1))
|
|
|
|
;; when we press ':' character, it runs `asm-colon' command in asm-mode.
|
|
;; The command automatically removes the indentation ofcurrent line, since
|
|
;; every non-whitespace character before a colon is a label in asm and
|
|
;; label has to be at the beginning of a line. However, the problem is
|
|
;; that when deleting indentation, trailing spaces are left between the
|
|
;; colon and the original point the colon was inserted.
|
|
;;
|
|
;; These functions solve that problem. First, check whether we have any
|
|
;; space or tab after point. If so, don't do anything becuase the spaces are
|
|
;; there intentionally. If not, we delete all trailing spaces between
|
|
;; point and colon.
|
|
(defvar asm-colon-has-space nil)
|
|
(defun asm-colon-check-space ()
|
|
(setq asm-colon-has-space nil)
|
|
(when (and (not (null (char-after)))
|
|
(member (string (char-after)) '(" " "\t")))
|
|
(setq asm-colon-has-space t)))
|
|
(defun asm-colon-delete-spaces ()
|
|
(unless asm-colon-has-space
|
|
(call-interactively 'delete-horizontal-space)))
|
|
(advice-add 'asm-colon :before 'asm-colon-check-space)
|
|
(advice-add 'asm-colon :after 'asm-colon-delete-spaces)
|