Emacs' Helpers
- user warning: Table 'nolan.comments' doesn't exist
query: SELECT COUNT(*) FROM comments WHERE nid = 68 AND status = 0 in /home/sneakin/web/nolan.eakins.net/includes/database.mysql.inc on line 120.
- user warning: Table 'nolan.comments' doesn't exist
query: SELECT c.cid as cid, c.pid, c.nid, c.subject, c.comment, c.format, c.timestamp, c.name, c.mail, c.homepage, u.uid, u.name AS registered_name, u.picture, u.data, c.score, c.users, c.thread, c.status FROM comments c INNER JOIN users u ON c.uid = u.uid WHERE c.nid = 68 AND c.status = 0 GROUP BY c.cid, c.pid, c.nid, c.subject, c.comment, c.format, c.timestamp, c.name, c.mail, u.picture, c.homepage, u.uid, u.name, u.picture, u.data, c.score, c.users, c.thread, c.status ORDER BY c.thread DESC LIMIT 0, 50 in /home/sneakin/web/nolan.eakins.net/includes/database.mysql.inc on line 120.
Submitted by sneakin on Mon, 2004/12/13 - 02:26.
Computing | Personal | Programming
I created a set of Emacs' Heplers. They're available at http://www.semanticgap.com/scripts/sneakin.el. The helpers provide the follwing:
| Key |
Command |
Description |
|
sneakin-customize |
Customize the helpers |
| C-c C-c |
sneakin-insert-c++-class |
Inserts a C++ class template |
| C-c C |
sneakin-insert-c++-destructor |
Inserts a template for defining a destructor |
| C-c c |
sneakin-insert-c++-constructor |
Inserts a template for defining a constructor |
| C-c C-d |
sneakin-insert-c-ifndef-define |
Inserts a template for adding an "#ifndef
#define" pair |
| C-c d |
sneakin-insert-c-header-define |
Inserts an "#ifndef" for a header file |
| C-c h |
sneakin-insert-c-file-header |
Inserts a file header comment block |
| C-c C-i |
sneakin-insert-c-system-include |
Inserts a system "#include" |
| C-c i |
sneakin-insert-c-local-include |
Inserts a local "#include" |
|