codeql/misc/emacs
Bas van Schaik c7f45010c5
Remove reference to internal tooling from public repository
2019-08-01 11:02:03 +01:00
..
README.md Add simple mode for highlighting QL dbschemes 2019-02-19 09:56:39 +00:00
dbscheme-mode.el Add simple mode for highlighting QL dbschemes 2019-02-19 09:56:39 +00:00
ql-mode-base.el Remove reference to internal tooling from public repository 2019-08-01 11:02:03 +01:00

README.md

QL syntax highlighting and file-type detection for Emacs

To install, add this directory to the load-path and add load the mode in the Emacs init file.

Example:

;  ~/.emacs, ~/.emacs.el, or ~/.emacs.d/init.el

; ...

(add-to-list 'load-path "~/ql/misc/emacs")
(require 'ql-mode-base)
(require 'dbscheme-mode)

; ...