Remove unused screenshot function.
This commit is contained in:
parent
e54a28bb9d
commit
536c9d30e3
@ -15,18 +15,6 @@
|
||||
(interactive "nTransparency Value 0 - 100 opaque:")
|
||||
(set-frame-parameter nil 'alpha-background value))
|
||||
|
||||
;; Crear captura SVG del frame atual. Fuente: https://www.reddit.com/r/emacs/comments/idz35e/emacs_27_can_take_svg_screenshots_of_itself/
|
||||
(defun screenshot-svg ()
|
||||
"Save a screenshot of the current frame as an SVG image.
|
||||
Saves to a temp file and puts the filename in the kill ring."
|
||||
(interactive)
|
||||
(let* ((filename (make-temp-file "Emacs" nil ".svg"))
|
||||
(data (x-export-frames nil 'svg)))
|
||||
(with-temp-file filename
|
||||
(insert data))
|
||||
(kill-new filename)
|
||||
(message filename)))
|
||||
|
||||
;; Comentar línea o región
|
||||
(defun comment-or-uncomment-region-or-line ()
|
||||
"Comments or uncomments the region or the current line."
|
||||
|
@ -359,11 +359,6 @@
|
||||
))
|
||||
)
|
||||
|
||||
;; Paquete para crear imágens (solo lo uso para sacar capturas SVG de emacs)
|
||||
(use-package silicon
|
||||
:defer t
|
||||
:ensure (:host github :repo "iensu/silicon-el"))
|
||||
|
||||
;; Mejorando el scroll
|
||||
(use-package smooth-scrolling
|
||||
:defer t
|
||||
|
Loading…
Reference in New Issue
Block a user