-
Notifications
You must be signed in to change notification settings - Fork 9
MendixCodeManager.js
Gerhard Richard Edens edited this page May 26, 2015
·
6 revisions
We first need to load some brackets managers that we need to create the functionality that the code manager needs to be able to do.
CommandManager = brackets.getModule('command/CommandManager'),
DocumentManager = brackets.getModule('document/DocumentManager'),
KeyEvent = brackets.getModule("utils/KeyEvent"),
EditorManager = brackets.getModule('editor/EditorManager'),After that we load our own managers that provide certain functionalities.
SnippetsManager = require("lib/MendixSnippets"),
MendixWorkshopManager = require('lib/MendixWorkshopManager'),
MendixWorkspaceManager = require('lib/MendixWorkspaceManager');