Skip to content

Commit

Permalink
Add some SQL abbrevs.
Browse files Browse the repository at this point in the history
  • Loading branch information
thatismatt committed Sep 24, 2021
1 parent c75fba5 commit 08cc4fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion abbrev_defs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@
(define-abbrev-table 'sql-mode-abbrev-table
'(
("cs" "COUNT(*)" nil :count 0)
("ct" "CREATE TABLE" nil :count 1)
("ct" "CREATE TABLE t (id SERIAL PRIMARY KEY NOT NULL);" nil :count 1)
("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)
("us" "UPDATE t SET" nil :count 0)
("usw" "UPDATE t SET WHERE" nil :count 0)
))

(define-abbrev-table 'org-mode-abbrev-table
Expand Down

0 comments on commit 08cc4fa

Please sign in to comment.