mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Update modules/lang/*
This commit is contained in:
@ -165,12 +165,13 @@
|
||||
|
||||
"REACTIONS" "BODYPARTS_ALL" "RESOURCES_ALL" "COLORS_ALL"))
|
||||
|
||||
(project! screeps "screeps"
|
||||
:match "/screeps/.+$"
|
||||
:modes (nodejs-project-mode))
|
||||
;; TODO
|
||||
;; (@def-project screeps "screeps"
|
||||
;; :match "/screeps/.+$"
|
||||
;; :modes (nodejs-project-mode))
|
||||
|
||||
(@add-hook screeps-project-mode
|
||||
(when (eq major-mode 'js2-mode)
|
||||
(add-to-list 'flycheck-disabled-checkers 'javascript-jshint)
|
||||
(setq js2-additional-externs (append '("_") screeps-objects screeps-constants))))
|
||||
;; (@add-hook screeps-project-mode
|
||||
;; (when (eq major-mode 'js2-mode)
|
||||
;; (add-to-list 'flycheck-disabled-checkers 'javascript-jshint)
|
||||
;; (setq js2-additional-externs (append '("_") screeps-objects screeps-constants))))
|
||||
|
||||
|
21
modules/lang/javascript/autoload.el
Normal file
21
modules/lang/javascript/autoload.el
Normal file
@ -0,0 +1,21 @@
|
||||
;;; lang/javascript/autoload.el
|
||||
|
||||
;;;###autoload
|
||||
(defun +javascript/install ()
|
||||
"Installs NodeJS and tern."
|
||||
(interactive)
|
||||
(pcase (doom-system-os)
|
||||
('arch
|
||||
(unless (and (executable-find "node")
|
||||
(executable-find "npm"))
|
||||
(doom-sudo "pacman --needed --noconfirm -S nodejs npm")))
|
||||
('debian) ;; TODO
|
||||
('macos
|
||||
(unless (executable-find "node")
|
||||
(doom-sh "brew install node")))
|
||||
(_ (error "Not a supported OS")))
|
||||
(unless (executable-find "node")
|
||||
(error "node isn't installed, run `+javascript/install' again"))
|
||||
(unless (executable-find "tern")
|
||||
(sh "npm -g install tern")))
|
||||
|
@ -1,58 +1,84 @@
|
||||
;; lang/javascript/config.el
|
||||
|
||||
;; TODO (@load +screeps)
|
||||
|
||||
(@def-package js2-mode
|
||||
:mode "\\.js$"
|
||||
:interpreter "node"
|
||||
:init
|
||||
:config
|
||||
(setq js2-skip-preprocessor-directives t
|
||||
js2-highlight-external-variables nil
|
||||
js2-mode-show-parse-errors nil)
|
||||
|
||||
:config
|
||||
(@add-hook '(tern-mode flycheck-mode highlight-indent-guides-mode))
|
||||
;; Only way to conform switch-case indentation to editorconfig's config
|
||||
(@add-hook (setq js-switch-indent-offset js-indent-level))
|
||||
(@add-hook js2-mode '(tern-mode flycheck-mode highlight-indent-guides-mode))
|
||||
;; Conform switch-case indentation to editorconfig's config
|
||||
(@add-hook js2-mode (setq js-switch-indent-offset js-indent-level))
|
||||
|
||||
(@map :map js2-mode-map :localleader :nv ";" 'doom/append-semicolon)
|
||||
(@set :repl 'js2-mode 'nodejs-repl)
|
||||
|
||||
(@set :repl nodejs-repl)
|
||||
(@set :company-backends tern)
|
||||
(@set :electric-chars ?\} ?\) ?.)
|
||||
(@set :electric-words "||" "&&")
|
||||
(@set :emr
|
||||
(:v js2r-extract-function "extract function")
|
||||
(:v js2r-extract-method "extract method")
|
||||
(:v js2r-introduce-parameter "introduce parameter")
|
||||
(:n js2r-localize-parameter "localize parameter")
|
||||
(:n js2r-expand-object "expand object")
|
||||
(:n js2r-contract-object "contract object")
|
||||
(:n js2r-expand-function "expand function")
|
||||
(:n js2r-contract-function "contract function")
|
||||
(:n js2r-expand-array "expand array")
|
||||
(:n js2r-contract-array "contract array")
|
||||
(:n js2r-wrap-buffer-in-iife "wrap buffer in ii function")
|
||||
(:v js2r-inject-global-in-iife "inject global in ii function")
|
||||
(:n js2r-add-to-globals-annotation "add to globals annotation")
|
||||
(:v js2r-extract-var "extract variable")
|
||||
(:v js2r-inline-var "inline variable")
|
||||
(:n js2r-rename-var "rename variable")
|
||||
(:n js2r-var-to-this "var to this")
|
||||
(:n js2r-arguments-to-object "arguments to object")
|
||||
(:n js2r-ternary-to-if "ternary to if")
|
||||
(:n js2r-split-var-declaration "split var declaration")
|
||||
(:n js2r-split-string "split string")
|
||||
(:v js2r-unwrap "unwrap")
|
||||
(:nv js2r-log-this "log this")
|
||||
(:nv js2r-debug-this "debug this")
|
||||
(:n js2r-forward-slurp "forward slurp")
|
||||
(:n js2r-forward-barf "forward barf")))
|
||||
(@set :company-backend 'js2-mode '(company-tern))
|
||||
|
||||
(@def-package js2-refactor :after emr)
|
||||
(@set :electric 'js2-mode
|
||||
:chars ?\} ?\) ?.
|
||||
:words "||" "&&")
|
||||
|
||||
(@map :map js2-mode-map
|
||||
:localleader
|
||||
:nv ";" 'doom/append-semicolon
|
||||
|
||||
:prefix "r"
|
||||
:n "g" 'js2r-add-to-globals-annotation
|
||||
:n "ca" 'js2r-arguments-to-object
|
||||
:n "Xa" 'js2r-contract-array
|
||||
:n "Xf" 'js2r-contract-function
|
||||
:n "Xo" 'js2r-contract-object
|
||||
:nv "d" 'js2r-debug-this
|
||||
:n "xa" 'js2r-expand-array
|
||||
:n "xf" 'js2r-expand-function
|
||||
:n "xo" 'js2r-expand-object
|
||||
:v "ef" 'js2r-extract-function
|
||||
:v "em" 'js2r-extract-method
|
||||
:v "ev" 'js2r-extract-var
|
||||
:n "F" 'js2r-forward-barf
|
||||
:n "f" 'js2r-forward-slurp
|
||||
:v "ii" 'js2r-inject-global-in-iife
|
||||
:v "iv" 'js2r-inline-var
|
||||
:v "p" 'js2r-introduce-parameter
|
||||
:n "p" 'js2r-localize-parameter
|
||||
:nv "l" 'js2r-log-this
|
||||
:n "r" 'js2r-rename-var
|
||||
:n "ss" 'js2r-split-string
|
||||
:n "sv" 'js2r-split-var-declaration
|
||||
:n "ct" 'js2r-ternary-to-if
|
||||
:v "u" 'js2r-unwrap
|
||||
:n "t" 'js2r-var-to-this
|
||||
:n "ii" 'js2r-wrap-buffer-in-iife))
|
||||
|
||||
|
||||
(@def-package nodejs-repl :commands nodejs-repl)
|
||||
|
||||
|
||||
(@def-package js2-refactor
|
||||
:commands
|
||||
(js2r-extract-function js2r-extract-method js2r-introduce-parameter
|
||||
js2r-localize-parameter js2r-expand-object js2r-contract-object
|
||||
js2r-expand-function js2r-contract-function js2r-expand-array
|
||||
js2r-contract-array js2r-wrap-buffer-in-iife js2r-inject-global-in-iife
|
||||
js2r-add-to-globals-annotation js2r-extract-var js2r-inline-var
|
||||
js2r-rename-var js2r-var-to-this js2r-arguments-to-object js2r-ternary-to-if
|
||||
js2r-split-var-declaration js2r-split-string js2r-unwrap js2r-log-this
|
||||
js2r-debug-this js2r-forward-slurp js2r-forward-barf))
|
||||
|
||||
|
||||
(@def-package company-tern
|
||||
:when (featurep 'company)
|
||||
:commands company-tern
|
||||
:after tern)
|
||||
|
||||
(@def-package company-tern :commands company-tern :after tern)
|
||||
|
||||
(@def-package jsx-mode :mode "\\.jsx$")
|
||||
|
||||
|
||||
(@def-package coffee-mode
|
||||
:mode "\\.coffee$"
|
||||
:init (setq coffee-indent-like-python-mode t))
|
||||
@ -62,15 +88,15 @@
|
||||
;; Projects
|
||||
;;
|
||||
|
||||
(project! npm
|
||||
:modes (web-mode js2-mode)
|
||||
:files ("package.json")
|
||||
:config
|
||||
(let* ((project-path (doom-project-root))
|
||||
(hash (gethash project-path npm-conf))
|
||||
(package-file (expand-file-name "package.json" project-path))
|
||||
deps)
|
||||
(-when-let (json (and (not hash) (f-exists? package-file)
|
||||
(ignore-errors (json-read-file package-file))))
|
||||
(puthash project-path json npm-conf))))
|
||||
;; (project! npm
|
||||
;; :modes (web-mode js2-mode)
|
||||
;; :files ("package.json")
|
||||
;; :config
|
||||
;; (let* ((project-path (doom-project-root))
|
||||
;; (hash (gethash project-path npm-conf))
|
||||
;; (package-file (expand-file-name "package.json" project-path))
|
||||
;; deps)
|
||||
;; (when-let (json (and (not hash) (file-exists-p package-file)
|
||||
;; (ignore-errors (json-read-file package-file))))
|
||||
;; (puthash project-path json npm-conf))))
|
||||
|
||||
|
@ -2,9 +2,12 @@
|
||||
;;; lang/javascript/packages.el
|
||||
|
||||
(@package coffee-mode)
|
||||
(@package company-tern :needs +company)
|
||||
(@package js2-mode)
|
||||
(@package js2-refactor)
|
||||
(@package jsx-mode)
|
||||
(@package nodejs-repl)
|
||||
(@package tern)
|
||||
|
||||
(when (@featurep :completion company)
|
||||
(@package company-tern))
|
||||
|
||||
|
Reference in New Issue
Block a user