diff --git a/init.example.el b/init.example.el index 21e93fcd0..82ae31a42 100644 --- a/init.example.el +++ b/init.example.el @@ -82,7 +82,6 @@ octave ; math isn't a choice, it's a way of life org ; for organized fearless leader (WIP) php ; make php less awful to work with - processing ; for prototyping python ; beautiful is better than ugly rest ; Emacs as a REST client ruby ; 1.step do {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"} diff --git a/modules/lang/processing/config.el b/modules/lang/processing/config.el deleted file mode 100644 index c05d50493..000000000 --- a/modules/lang/processing/config.el +++ /dev/null @@ -1,39 +0,0 @@ -;;; module-processing.el - -(def-package! processing-mode - :commands (processing-mode processing-find-sketch) - :mode "\\.pde$" - :config - (set! :build 'build-sketch 'processing-mode #'processing-sketch-build) - (set! :popup "*processing-compilation*" :size 10 :noselect t) - (set! :eval 'processing-mode - '((:command . ,processing-location) - (:exec . (lambda () (format "--sketch=%s --output=%s --force --run" - (doom/project-root) processing-output-dir))) - (:description . "Run Processing sketch"))) - (set! :company-backend 'processing-mode - '(company-keywords :with company-yasnippet company-dabbrev-code)) - - (setq processing-location "/usr/local/bin/processing-java" - processing-application-dir "/Applications/Processing.app" - processing-sketchbook-dir "~/work/pde" - processing-output-dir "/tmp") - - (map! :map processing-mode-map - :nv "M-r" #'processing-sketch-run - :m "gd" #'processing-find-in-reference - - (:localleader - :n "e" #'processing-export-application - :n "h" #'processing-open-reference - :n "e" #'processing-open-examples - :n "o" #'processing-open-sketchbook - - :prefix "f" - :n "s" #'processing-find-sketch)) - - (after! company-keywords - (nconc company-keywords-alist - (cons 'processing-mode (append processing-functions - processing-builtins - processing-constants))))) diff --git a/modules/lang/processing/packages.el b/modules/lang/processing/packages.el deleted file mode 100644 index 6c405e710..000000000 --- a/modules/lang/processing/packages.el +++ /dev/null @@ -1,4 +0,0 @@ -;; -*- no-byte-compile: t; -*- -;;; lang/processing/packages.el - -(package! processing-mode)