| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
This file contains hidden or 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
| -- ExportSQLite: SQLite export plugin for MySQL Workbench | |
| -- Copyright (C) 2009 Thomas Henlich | |
| -- Edited by luckymancvp to fix insert command with WorkBench | |
| -- This program is free software: you can redistribute it and/or modify | |
| -- it under the terms of the GNU General Public License as published by | |
| -- the Free Software Foundation, either version 3 of the License, or | |
| -- (at your option) any later version. | |
| -- | |
| -- This program is distributed in the hope that it will be useful, | |
| -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains hidden or 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
| var chat = { | |
| // Create this closure to contain the cached modules | |
| module: function() { | |
| // Internal module cache. | |
| var modules = {}; | |
| // Create a new module reference scaffold or load an | |
| // existing module. | |
| return function(name) { | |
| // If this module has already been created, return it. |
NewerOlder