branch: elpa/nasm-mode commit 3992726a6da49379cb2939d46e0b95a7781d8c06 Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Add nasm-join-line keybinding (M-^). --- nasm-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nasm-mode.el b/nasm-mode.el index b6d9d74..188f9a0 100644 --- a/nasm-mode.el +++ b/nasm-mode.el @@ -566,7 +566,8 @@ (let ((map (make-sparse-keymap))) (prog1 map (define-key map (kbd ":") #'nasm-colon) - (define-key map (kbd ";") #'nasm-comment))) + (define-key map (kbd ";") #'nasm-comment) + (define-key map (kbd "M-^") #'nasm-join-line))) "Key bindings for `nasm-mode'.") (defun nasm-colon ()