@phoenix-plugin-registry/hirse.outline-list
Version:
Displays a list of the functions or definitions in the currently opened document. Works with CSS, CoffeeScript, HTML, Haxe, Jade, JavaScript, JSX, LESS, Markdown, PHP, Python, Ruby, SCSS, SVG, Stylus, and XML.
12 lines (10 loc) • 500 B
JavaScript
/**
* This file provides the interface to user visible strings in Brackets. Code that needs
* to display strings should should load this module by calling var Strings = require("strings").
* The i18n plugin will dynamically load the strings for the right locale and populate
* the exports variable. See nls/root/strings.js for the master file of English strings.
*/
define(function (require, exports, module) {
"use strict";
module.exports = require("i18n!nls/strings");
});