50 lines
1.6 KiB
EmacsLisp
50 lines
1.6 KiB
EmacsLisp
;;; funcs.el --- Perl5 Layer functions File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Eivind Fonn <evfonn@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
|
|
(defun spacemacs//perl5-smartparens-enable ()
|
|
(define-key cperl-mode-map "{" nil))
|
|
|
|
(defun spacemacs//perl5-spartparens-disable ()
|
|
(define-key cperl-mode-map "{" 'cperl-electric-lbrace))
|
|
|
|
(defun spacemacs/perltidy-format ()
|
|
"Format Perl code with perltidy.
|
|
If region is active, operate on it, else operate on line."
|
|
(interactive)
|
|
(let ((old-point (point))
|
|
(pos
|
|
(if (use-region-p)
|
|
(cons (region-beginning)
|
|
(if (char-equal ?\n (char-before (region-end)))
|
|
(region-end)
|
|
(save-excursion ;; must including terminating newline
|
|
(goto-char (region-end))
|
|
(1+ (line-end-position)))))
|
|
(cons (line-beginning-position)
|
|
(1+ (line-end-position))))))
|
|
(apply #'call-process-region (car pos) (cdr pos) perl5-perltidy-executable t '(t nil)
|
|
"--quiet"
|
|
"--standard-error-output"
|
|
perl5-perltidy-options)
|
|
(goto-char old-point)))
|
|
|
|
(defun spacemacs/perltidy-format-buffer ()
|
|
"Format current buffer with perltidy."
|
|
(interactive)
|
|
(mark-whole-buffer)
|
|
(spacemacs/perltidy-format))
|
|
|
|
(defun spacemacs/perltidy-format-function ()
|
|
"Format current function with perltidy."
|
|
(interactive)
|
|
(mark-defun)
|
|
(spacemacs/perltidy-format))
|