Remove lang/processing: out-of-date & no longer used
This commit is contained in:
parent
cec8c59491
commit
c8ba8ba251
3 changed files with 0 additions and 44 deletions
|
@ -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'}"}
|
||||
|
|
|
@ -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)))))
|
|
@ -1,4 +0,0 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; lang/processing/packages.el
|
||||
|
||||
(package! processing-mode)
|
Loading…
Add table
Add a link
Reference in a new issue