Replace warn => warn!

This commit is contained in:
Henrik Lissner 2018-02-14 07:40:05 -05:00
parent 5ad4246cb9
commit bac73ec938
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
11 changed files with 31 additions and 31 deletions

View file

@ -36,7 +36,7 @@
(IS-LINUX (IS-LINUX
"/usr/share/java/languagetool/languagetool-commandline.jar"))) "/usr/share/java/languagetool/languagetool-commandline.jar")))
(unless (file-exists-p langtool-language-tool-jar) (unless (file-exists-p langtool-language-tool-jar)
(warn "langtool: couldn't find languagetool-commandline.jar"))))) (warn! "Couldn't find languagetool-commandline.jar")))))
(when (featurep! +wordnut) (when (featurep! +wordnut)

View file

@ -119,7 +119,7 @@ compilation database is present in the project.")
(add-hook! (c-mode c++-mode objc-mode) #'+cc|init-irony-mode) (add-hook! (c-mode c++-mode objc-mode) #'+cc|init-irony-mode)
:config :config
(unless (file-directory-p irony-server-install-prefix) (unless (file-directory-p irony-server-install-prefix)
(warn "irony-mode: server isn't installed; run M-x irony-install-server")) (warn! "Irony server isn't installed. Run M-x irony-install-server"))
;; Initialize compilation database, if present. Otherwise, fall back on ;; Initialize compilation database, if present. Otherwise, fall back on
;; `+cc-default-compiler-options'. ;; `+cc-default-compiler-options'.
(add-hook 'irony-mode-hook #'+cc|irony-init-compile-options)) (add-hook 'irony-mode-hook #'+cc|irony-init-compile-options))
@ -187,9 +187,9 @@ compilation database is present in the project.")
:when (featurep! :completion company) :when (featurep! :completion company)
:after glsl-mode :after glsl-mode
:config :config
(if (executable-find "glslangValidator") (unless (executable-find "glslangValidator")
(warn "glsl-mode: couldn't find glslangValidator, disabling company-glsl") (warn! "Couldn't find glslangValidator. Code completion is disabled"))
(set! :company-backend 'glsl-mode '(company-glsl)))) (set! :company-backend 'glsl-mode '(company-glsl)))
;; ;;
@ -210,7 +210,7 @@ compilation database is present in the project.")
(let ((bins (cl-remove-if #'executable-find '("rdm" "rc")))) (let ((bins (cl-remove-if #'executable-find '("rdm" "rc"))))
(if (/= (length bins) 0) (if (/= (length bins) 0)
(warn "cc-mode: couldn't find the rtag client and/or server programs %s, disabling rtags support" bins) (warn! "Couldn't find the rtag client and/or server programs %s. Disabling rtags support" bins)
(add-hook! (c-mode c++-mode) #'rtags-start-process-unless-running) (add-hook! (c-mode c++-mode) #'rtags-start-process-unless-running)
(set! :lookup '(c-mode c++-mode) (set! :lookup '(c-mode c++-mode)
:definition #'rtags-find-symbol-at-point :definition #'rtags-find-symbol-at-point

View file

@ -19,4 +19,7 @@
(def-package! inf-crystal (def-package! inf-crystal
:commands (inf-crystal crystal-switch-to-inf)) :commands (inf-crystal crystal-switch-to-inf)
:config
(unless (executable-find "icr")
(warn! "Couldn't find icr. REPL will not work")))

View file

@ -9,10 +9,10 @@
(setq omnisharp-auto-complete-want-documentation nil (setq omnisharp-auto-complete-want-documentation nil
omnisharp-cache-directory (concat doom-cache-dir "omnisharp")) omnisharp-cache-directory (concat doom-cache-dir "omnisharp"))
:config :config
(add-hook! csharp-mode #'(eldoc-mode flycheck-mode omnisharp-mode))
(unless (file-exists-p (omnisharp--server-installation-path t)) (unless (file-exists-p (omnisharp--server-installation-path t))
(warn "csharp-mode: omnisharp server isn't installed, completion won't work")) (warn! "Omnisharp server isn't installed, completion won't work"))
(add-hook! csharp-mode #'(eldoc-mode flycheck-mode omnisharp-mode))
(defun +csharp|cleanup-omnisharp-server () (defun +csharp|cleanup-omnisharp-server ()
"Clean up the omnisharp server once you kill the last csharp-mode buffer." "Clean up the omnisharp server once you kill the last csharp-mode buffer."

View file

@ -76,14 +76,14 @@
go-guru-expand-region) go-guru-expand-region)
:config :config
(unless (executable-find "guru") (unless (executable-find "guru")
(warn "go-mode: couldn't find guru, refactoring commands won't work"))) (warn! "Couldn't find guru. Refactoring commands (go-guru-*) won't work")))
(def-package! gorepl-mode (def-package! gorepl-mode
:commands (gorepl-run gorepl-run-load-current-file) :commands (gorepl-run gorepl-run-load-current-file)
:config :config
(unless (executable-find "gore") (unless (executable-find "gore")
(warn "go-mode: couldn't find gore, REPL support disabled"))) (warn! "Couldn't find gore. REPL will not work")))
(def-package! company-go (def-package! company-go
@ -92,6 +92,6 @@
:after go-mode :after go-mode
:config :config
(setq company-go-show-annotation t) (setq company-go-show-annotation t)
(if (executable-find command-go-gocode-command)
(set! :company-backend 'go-mode '(company-go)) (set! :company-backend 'go-mode '(company-go))
(warn "go-mode: couldn't find gocode, code completion won't work"))) (unless (executable-find command-go-gocode-command)
(warn! "Couldn't find gocode. Code completion won't work")))

View file

@ -5,11 +5,9 @@
:after haskell-mode :after haskell-mode
:hook (haskell-mode . dante-mode) :hook (haskell-mode . dante-mode)
:config :config
(add-hook 'haskell-mode-hook #'interactive-haskell-mode)
(unless (executable-find "cabal") (unless (executable-find "cabal")
(warn "haskell-mode: couldn't find cabal") (warn! "Couldn't find cabal, haskell-mode may have issues"))
(remove-hook 'haskell-mode-hook #'dante-mode))
(add-hook 'haskell-mode-hook #'interactive-haskell-mode)
(add-hook 'dante-mode-hook #'flycheck-mode)) (add-hook 'dante-mode-hook #'flycheck-mode))

View file

@ -5,8 +5,7 @@
:hook (haskell-mode . intero-mode) :hook (haskell-mode . intero-mode)
:config :config
(unless (executable-find "stack") (unless (executable-find "stack")
(warn "haskell-mode: couldn't find stack, disabling intero") (warn! "Couldn't find stack. Intero has been disabled."))
(remove-hook 'haskell-mode-hook #'intero-mode))
(add-hook! 'intero-mode-hook #'(flycheck-mode eldoc-mode)) (add-hook! 'intero-mode-hook #'(flycheck-mode eldoc-mode))

View file

@ -31,10 +31,9 @@
:init :init
(add-hook 'haskell-mode-hook #'ghc-comp-init) (add-hook 'haskell-mode-hook #'ghc-comp-init)
:config :config
(if (executable-find "ghc-mod") (unless (executable-find "ghc-mod")
(set! :company-backend 'haskell-mode #'company-ghc) (warn! "Couldn't find ghc-mod on PATH. Code completion is disabled."))
(warn "haskell-mode: couldn't find ghc-mod on PATH")
(remove-hook 'haskell-mode-hook #'ghc-comp-init))
(setq company-ghc-show-info 'oneline)) (setq company-ghc-show-info 'oneline)
(set! :company-backend 'haskell-mode #'company-ghc))

View file

@ -5,7 +5,7 @@
(cond ((featurep! +meghanada) (load! +meghanada)) (cond ((featurep! +meghanada) (load! +meghanada))
((featurep! +eclim) ; FIXME lang/java +eclim ((featurep! +eclim) ; FIXME lang/java +eclim
;;(load! +eclim) ;;(load! +eclim)
(warn "java-mode: eclim support isn't implemented yet"))) (warn! "Eclim support isn't implemented yet")))
;; ;;

View file

@ -2,14 +2,15 @@
(def-package! plantuml-mode (def-package! plantuml-mode
:mode "\\.p\\(lant\\)?uml$" :mode "\\.p\\(lant\\)?uml$"
:config :init
(setq plantuml-jar-path (concat doom-etc-dir "plantuml.jar")) (setq plantuml-jar-path (concat doom-etc-dir "plantuml.jar"))
:config
(set! :popup "^\\*PLANTUML" '((size . 0.4)) '((select) (transient . 0))) (set! :popup "^\\*PLANTUML" '((size . 0.4)) '((select) (transient . 0)))
(unless (executable-find "java") (unless (executable-find "java")
(warn "plantuml-mode: can't find java, preview disabled.")) (warn! "Couldn't find java. Disabling plantuml preview."))
(unless (file-exists-p plantuml-jar-path) (unless (file-exists-p plantuml-jar-path)
(warn "plantuml-mode: can't find plantuml.jar; run M-x +plantuml/install."))) (warn! "Couldn't find plantuml.jar. Install it witInstall it with-x +plantuml/install.")))
(def-package! flycheck-plantuml (def-package! flycheck-plantuml

View file

@ -30,7 +30,7 @@
(expand-file-name "rust/src/" +rust-src-dir))) (expand-file-name "rust/src/" +rust-src-dir)))
(unless (file-exists-p racer-cmd) (unless (file-exists-p racer-cmd)
(warn "rust-mode: racer binary can't be found; auto-completion is disabled")) (warn! "Couldn't find racer binary. Code completion won't work"))
(set! :lookup 'rust-mode :definition #'racer-find-definition)) (set! :lookup 'rust-mode :definition #'racer-find-definition))