spacemacs/layers/+lang/sql/packages.el
syl20bnr ebe4c60264 Revert "Defer packages by default using use-package-always-defer"
This reverts commit 29c78ce841 and all other fixes
that have been made afterwards.

The motivation is that use-package is seen by many as a replacement for
`require`. Is use-package always defer the loading of packages then is breaks
this use case, this does not respect POLA so even if it was making Spacemacs
loading faster (up to 3s faster on some startup on my machine) we just cannot
use it, it would be irresponsible. Spacemacs should be easy to use, loading
performance will come with time but it is not a priority.
2018-03-03 23:40:10 -05:00

151 lines
5.3 KiB
EmacsLisp

;;; packages.el --- sql Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Brian Hicks <brian@brianthicks.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq sql-packages
'(
company
sql
sql-indent
(sqlup-mode :toggle sql-capitalize-keywords)
))
(defun sql/init-sql ()
(use-package sql
:defer t
:init (spacemacs/register-repl 'sql 'spacemacs/sql-start "sql")
:config
(progn
(setq
;; should not set this to anything else than nil
;; the focus of SQLi is handled by spacemacs conventions
sql-pop-to-buffer-after-send-region nil)
(advice-add 'sql-add-product :after #'spacemacs/sql-populate-products-list)
(advice-add 'sql-del-product :after #'spacemacs/sql-populate-products-list)
(spacemacs/sql-populate-products-list)
(defun spacemacs//sql-source (products)
"return a source for helm selection"
`((name . "SQL Products")
(candidates . ,(mapcar (lambda (product)
(cons (sql-get-product-feature (car product) :name)
(car product)))
products))
(action . (lambda (candidate) (helm-marked-candidates)))))
(defun spacemacs/sql-highlight ()
"set SQL dialect-specific highlighting"
(interactive)
(let ((product (car (helm
:sources (list (spacemacs//sql-source spacemacs-sql-highlightable))))))
(sql-set-product product)))
(defun spacemacs/sql-start ()
"set SQL dialect-specific highlighting and start inferior SQLi process"
(interactive)
(let ((product (car (helm
:sources (list (spacemacs//sql-source spacemacs-sql-startable))))))
(sql-set-product product)
(sql-product-interactive product)))
(defun spacemacs/sql-send-string-and-focus ()
"Send a string to SQLi and switch to SQLi in `insert state'."
(interactive)
(let ((sql-pop-to-buffer-after-send-region t))
(call-interactively 'sql-send-string)
(evil-insert-state)))
(defun spacemacs/sql-send-buffer-and-focus ()
"Send the buffer to SQLi and switch to SQLi in `insert state'."
(interactive)
(let ((sql-pop-to-buffer-after-send-region t))
(sql-send-buffer)
(evil-insert-state)))
(defun spacemacs/sql-send-paragraph-and-focus ()
"Send the paragraph to SQLi and switch to SQLi in `insert state'."
(interactive)
(let ((sql-pop-to-buffer-after-send-region t))
(sql-send-paragraph)
(evil-insert-state)))
(defun spacemacs/sql-send-region-and-focus (start end)
"Send region to SQLi and switch to SQLi in `insert state'."
(interactive "r")
(let ((sql-pop-to-buffer-after-send-region t))
(sql-send-region start end)
(evil-insert-state)))
(spacemacs/declare-prefix-for-mode 'sql-mode "mb" "buffer")
(spacemacs/declare-prefix-for-mode 'sql-mode "mh" "dialects")
(spacemacs/declare-prefix-for-mode 'sql-mode "ms" "interactivity")
(spacemacs/declare-prefix-for-mode 'sql-mode "ml" "listing")
(spacemacs/set-leader-keys-for-major-mode 'sql-mode
"'" 'spacemacs/sql-start
;; sqli buffer
"bb" 'sql-show-sqli-buffer
"bs" 'sql-set-sqli-buffer
;; dialects
"hk" 'spacemacs/sql-highlight
;; interactivity
"sb" 'sql-send-buffer
"sB" 'spacemacs/sql-send-buffer-and-focus
"si" 'spacemacs/sql-start
;; paragraph gets "f" here because they can be assimilated to functions.
;; If you separate your commands in a SQL file, this key will send the
;; command around point, which is what you probably want.
"sf" 'sql-send-paragraph
"sF" 'spacemacs/sql-send-paragraph-and-focus
"sq" 'sql-send-string
"sQ" 'spacemacs/sql-send-string-and-focus
"sr" 'sql-send-region
"sR" 'spacemacs/sql-send-region-and-focus
;; listing
"la" 'sql-list-all
"lt" 'sql-list-table)
(spacemacs/declare-prefix-for-mode 'sql-interactive-mode "mb" "buffer")
(spacemacs/set-leader-keys-for-major-mode 'sql-interactive-mode
;; sqli buffer
"br" 'sql-rename-buffer
"bS" 'sql-save-connection)
(add-hook 'sql-interactive-mode-hook
(lambda () (toggle-truncate-lines t))))))
(defun sql/init-sql-indent ()
(use-package sql-indent
:defer t))
(defun sql/init-sqlup-mode ()
(use-package sqlup-mode
:defer t
:init
(progn
(add-hook 'sql-mode-hook 'sqlup-mode)
(unless sql-capitalize-keywords-disable-interactive
(add-hook 'sql-interactive-mode-hook 'sqlup-mode))
(spacemacs/set-leader-keys-for-major-mode 'sql-mode
"=c" 'sqlup-capitalize-keywords-in-region))
:config
(progn
(spacemacs|diminish sqlup-mode)
(setq sqlup-blacklist (append sqlup-blacklist
sql-capitalize-keywords-blacklist)))))
(defun sql/post-init-company ()
(spacemacs|add-company-backends
:backends company-capf
:modes sql-mode))