-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
08cc4fa
commit 1288c67
Showing
1 changed file
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
;;-*-coding: utf-8;-*- | ||
(define-abbrev-table 'clojure-mode-abbrev-table | ||
'( | ||
("cap" "(matt.utils/capture :id)" nil :count 1) | ||
("cb" "(comment ;;\n()\n\n\n\n)" nil :count 5) | ||
("td" ";; TODO:" nil :count 8) | ||
)) | ||
("cap" "(matt.capture/capture :id)" nil :count 0) | ||
("cb" "(comment ;;\n()\n\n\n\n)" nil :count 0) | ||
("td" ";; TODO:" nil :count 0) | ||
)) | ||
|
||
(define-abbrev-table 'org-mode-abbrev-table | ||
'( | ||
("dt" "** [0/3] Deploy\n - [ ] QA\n - [ ] Staging\n - [ ] Prod" nil :count 0) | ||
)) | ||
|
||
(define-abbrev-table 'sql-mode-abbrev-table | ||
'( | ||
("cs" "COUNT(*)" nil :count 0) | ||
("ct" "CREATE TABLE t (id SERIAL PRIMARY KEY NOT NULL);" nil :count 1) | ||
("ct" "CREATE TABLE t (id SERIAL PRIMARY KEY NOT NULL);" nil :count 0) | ||
("gb" "GROUP BY" nil :count 0) | ||
("ii" "INSERT INTO t () VALUES ();" nil :count 0) | ||
("ij" "INNER JOIN" nil :count 0) | ||
("l1" "LIMIT 1" nil :count 0) | ||
("ob" "ORDER BY" nil :count 0) | ||
("pk" "SERIAL PRIMARY KEY NOT NULL" nil :count 1) | ||
("ssf" "SELECT * FROM" nil :count 6) | ||
("pk" "SERIAL PRIMARY KEY NOT NULL" nil :count 0) | ||
("scsf" "SELECT COUNT(*) FROM" nil :count 0) | ||
("ssf" "SELECT * FROM" nil :count 0) | ||
("us" "UPDATE t SET" nil :count 0) | ||
("usw" "UPDATE t SET WHERE" nil :count 0) | ||
)) | ||
|
||
(define-abbrev-table 'org-mode-abbrev-table | ||
'( | ||
("dt" "** [0/3] Deploy\n - [ ] QA\n - [ ] Staging\n - [ ] Prod" nil :count 0) | ||
)) | ||
)) |