[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-mps-ide-plugin":3,"mdc--kwnwxc-key":32,"related-org-jetbrains-mps-ide-plugin":3169,"related-repo-jetbrains-mps-ide-plugin":3293},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":19,"repoUrl":20,"updatedAt":21,"license":22,"forks":23,"topics":24,"repo":27,"sourceUrl":30,"mdContent":31},"mps-ide-plugin","author and modify MPS IDE plugins","Use when authoring or modifying MPS IDE plugins — code that integrates with the MPS \u002F IntelliJ host IDE shell. Covers ActionDeclaration, ActionGroupDeclaration, ToolDeclaration\u002FTabbedToolDeclaration (dockable tool windows), KeymapChangesDeclaration (shortcuts), PreferencesComponentDeclaration (settings pages), EditorTab+Order (concept editor tabs), InterfaceGroup (bootstrap wrappers around external groups), NonDumbAwareActions, IdeaConfigurationXml, ApplicationPluginDeclaration\u002FProjectPluginDeclaration\u002FStandalonePluginDescriptor (lifecycle hooks). Uses jetbrains.mps.lang.plugin and jetbrains.mps.lang.plugin.standalone. Trigger terms: action group, tool window, menu item, MainMenu, EditorPopup, NodeActions, ModelActions, ModuleActions, ProjectViewPopupMenu, MPS plugin solution, ActionInstance, ModificationStatement, DataKey, MPSCommonDataKeys, MPSDataKeys, dumb-aware, project.tool\u003C...>, project.preferenceComponent\u003C...>, application plugin\u003C...>, project plugin\u003C...>.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"jetbrains","JetBrains","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fjetbrains.png",[12,16],{"name":13,"slug":14,"type":15},"Architecture","architecture","tag",{"name":17,"slug":18,"type":15},"Engineering","engineering",1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-13T06:45:24.319633",null,311,[25,26],"domain-specific-language","dsl",{"repoUrl":20,"stars":19,"forks":23,"topics":28,"description":29},[25,26],"JetBrains Meta programming System","https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS\u002Ftree\u002FHEAD\u002Fplugins\u002Fmcp-tools\u002Fresources\u002Fjetbrains\u002Fmps\u002Fagents\u002Fmcp\u002Fskills\u002Fmps-ide-plugin","---\nname: mps-ide-plugin\ndescription: >-\n  Use when authoring or modifying MPS IDE plugins — code that integrates with the MPS \u002F IntelliJ host IDE shell. Covers ActionDeclaration, ActionGroupDeclaration, ToolDeclaration\u002FTabbedToolDeclaration (dockable tool windows), KeymapChangesDeclaration (shortcuts), PreferencesComponentDeclaration (settings pages), EditorTab+Order (concept editor tabs), InterfaceGroup (bootstrap wrappers around external groups), NonDumbAwareActions, IdeaConfigurationXml, ApplicationPluginDeclaration\u002FProjectPluginDeclaration\u002FStandalonePluginDescriptor (lifecycle hooks). Uses jetbrains.mps.lang.plugin and jetbrains.mps.lang.plugin.standalone. Trigger terms: action group, tool window, menu item, MainMenu, EditorPopup, NodeActions, ModelActions, ModuleActions, ProjectViewPopupMenu, MPS plugin solution, ActionInstance, ModificationStatement, DataKey, MPSCommonDataKeys, MPSDataKeys, dumb-aware, project.tool\u003C...>, project.preferenceComponent\u003C...>, application plugin\u003C...>, project plugin\u003C...>.\ntype: reference\n---\n\n# MPS IDE Plugin Language\n\nThis skill covers **IDE plugins**: code that integrates with the MPS\u002FIntelliJ host IDE — menu actions, tool windows, shortcuts, settings panels. Plugin code lives in a regular `Solution` module (compilation mode: \"Regular MPS module contributing extensions to MPS\") with model(s) using `jetbrains.mps.lang.plugin` and `jetbrains.mps.lang.plugin.standalone`. The canonical model name is `\u003Csolution_name>.plugin` — MPS auto-registers it on that convention.\n\nOfficial documentation: \u003Chttps:\u002F\u002Fwww.jetbrains.com\u002Fhelp\u002Fmps\u002Fplugin.html>\n\n## Critical Directives\n\n- **Disambiguate the overloaded vocabulary first.** \"Plugin\", \"tool\", \"action group\" each mean two or three different things. See `references\u002Fterminology.md` before naming anything.\n- **A plugin solution is NOT an IntelliJ plugin jar.** The solution contains MPS models; the jar is what the MPS Build Language packages from it. Don't conflate.\n- **A `Tool` is a tool window** — a dockable panel — **not** a CLI tool or an action.\n- **Use MPS MCP tools for edits.** `mps_mcp_insert_root_node_from_json`, `mps_mcp_update_node`, `mps_mcp_print_node`. Resolve concept names with `mps_mcp_search_concepts` \u002F `mps_mcp_get_concept_details`; never guess.\n- **`ModificationStatement.modifiedGroup` is a node reference (`r:...`), not a concept reference (`c:...`).** Look up the target group via `mps_mcp_search_root_node_by_name` to obtain the node ref.\n- **Add a model dependency on `jetbrains.mps.ide.actions`** before referencing built-in groups (`MainMenu`, `EditorPopup`, `NodeActions`, `ModelActions`, `ModuleActions`, `MainToolbar`, `ProjectViewPopupMenu`).\n- **Pick `requiredAccess` deliberately:** `none` (no model touch), `read` (safe traversal), `command` (mutates with undo + write lock — **never open modal dialogs from here**), `editorCommand` (correct undo scope for editor-driven edits).\n- **Don't call `project.tool\u003C…>` from `dispose`.** The lookup can fail during teardown.\n- **Mac keymap trap:** with `Keymap = Default`, MPS translates `ctrl` → `cmd` on macOS. If you specifically want `ctrl` on Mac, add a separate `Mac_OS_X` `KeymapChangesDeclaration`.\n- After edits, rebuild the module (`mps_mcp_alter_nodes` MAKE) so generated Java is current, then **Reload All** in MPS for hot-load.\n- Validate every new root with `mps_mcp_check_root_node_problems`.\n\n## Required Used Languages (on the Model)\n\n- `jetbrains.mps.lang.plugin` — core concepts (Action, Group, Tool, …).\n- `jetbrains.mps.lang.plugin.standalone` — ApplicationPlugin \u002F ProjectPlugin, `project.tool\u003C...>`, `project.preferenceComponent\u003C...>`, `StandalonePluginDescriptor`.\n- `jetbrains.mps.baseLanguage` (+ `.classifiers`, `.collections`, `.closures`) — for code bodies.\n- `jetbrains.mps.lang.smodel` if you touch nodes\u002Fmodels.\n- `jetbrains.mps.lang.resources` for icons.\n\n## Common-Path Workflow\n\nFor a typical \"add a menu item that does X on the selected node\":\n\n1. **Identify the context** — which IDE menu\u002Ftoolbar should it appear in? (`MainMenu`, `EditorPopup`, `NodeActions`, `ProjectViewPopupMenu`, …).\n2. **Locate the target group.** `mps_mcp_search_root_node_by_name` for the group name. Inspect with `mps_mcp_print_node` to discover the `GroupAnchor`s you can target.\n3. **Decide plugin solution location.** Reuse an existing `*.pluginSolution` module if one fits; otherwise create a new solution and a `\u003Cname>.plugin` model with the used languages above.\n4. **Author an `ActionDeclaration`** — see `references\u002Factions.md`. Set name, caption, parameters (`MPSCommonDataKeys.MPS_PROJECT` \u002F `.NODE` etc.), `requiredAccess`, isApplicable, execute body.\n5. **Author an `ActionGroupDeclaration`** — see `references\u002Faction-groups.md`. Owns your action(s) via `ElementListContents` → `ActionInstance`. Add a `ModificationStatement` under `modifier` targeting the existing group + an anchor.\n6. **Add a keybinding** (optional) — new `KeymapChangesDeclaration` referencing the action — see `references\u002Fkeymaps.md`.\n7. **Rebuild** the solution via `mps_mcp_alter_nodes` MAKE; reload MPS.\n8. **Validate** with `mps_mcp_check_root_node_problems` on each new root.\n\nFor other task families: tool window → `references\u002Ftools.md`; settings page → `references\u002Fpreferences.md`; editor tabs → `references\u002Feditor-tabs.md`; bespoke startup → `references\u002Flifecycle-plugins.md`.\n\n## Reference Examples in This Repository\n\nSeed `mps_mcp_print_node` \u002F `mps_mcp_query_nodes` (FIND_USAGES) with these:\n\n| Concept | Example nodes | Model |\n|---|---|---|\n| `ActionDeclaration` | `ShowHelpForNode`, `ShowDefaultHelp`, `ShowHelpForRoot`, `ShowHelpForAspect` | `jetbrains.mps.lang.structure.pluginSolution.plugin` |\n| `ActionGroupDeclaration` | `ShowHelp` (contributes to `Structure` and `ModelActions`) | `jetbrains.mps.lang.structure.pluginSolution.plugin` |\n| `ToolDeclaration` | `TodoViewer` | `jetbrains.mps.ide.tools.todo` |\n| `PreferencesComponentDeclaration` | `BehaviorDialogsPersistentOptions` | `jetbrains.mps.ide.actions` |\n| `InterfaceGroup` | `IDEAWindows`, `IDEAGoTo`, `IDEAEdit`, `IDEAFile`, `IDEAView`, `IDEATools`, `IDEAVCS` | `jetbrains.mps.ide.actions` |\n| `EditorTab` | `Actions`, `Behavior`, `Constraints`, `Data Flow`, `Editor`, `Feedback`, `Find Usages`, `Generator`, `Intentions`, `Refactorings`, `Structure`, `Textgen`, `Typesystem` | `jetbrains.mps.ide.devkit.editor` |\n| `EditorTab` (alt) | `Run Configuration`, `Executor`, `Producer` | `jetbrains.mps.execution.configurations.pluginSolution.plugin` |\n| `Order` (editor tabs) | `Order` root | `jetbrains.mps.ide.devkit.editor` |\n\n## Related Skills\n\n- `mps-aspect-actions` — **node factories**, unrelated to IDE actions despite the name.\n- `mps-aspect-intentions` — Alt+Enter context actions *inside* the projectional editor.\n- `mps-aspect-editor-menus-and-keymaps` — editor cell actions, substitute menus, side transforms (a different layer from the IDE shell).\n- `mps-build-language` — packaging a plugin solution into a distributable MPS\u002FIDEA plugin (the build script must copy `startup.properties` from the solution's resources).\n- `mps-quotations` \u002F `mps-model-manipulation` — writing the base-language bodies inside `execute`\u002F`isApplicable`\u002F`init`\u002F`dispose` blocks.\n- `mps-baselanguage` — mechanics of building BaseLanguage JSON.\n\n## Reference Index\n\n- Open `references\u002Fterminology.md` when **starting any plugin task** — disambiguates \"plugin solution\" vs \"IntelliJ plugin\", `ApplicationPlugin`\u002F`ProjectPlugin` vs the deployable jar, `Tool` (tool window) vs \"CLI tool\", `ActionGroup` vs `BootstrapGroup`\u002F`InterfaceGroup`, anchor (`->`), `EditorMenu`\u002F`SubstituteMenu` (different aspect), Intention (different aspect), Node Factory (different language).\n- Open `references\u002Fconcept-catalog.md` when **looking up a concept FQN** — every rootable concept (`ActionDeclaration`, `ActionGroupDeclaration`, `InterfaceGroup`, `ToolDeclaration`, `TabbedToolDeclaration`, `KeymapChangesDeclaration`, `PreferencesComponentDeclaration`, `EditorTab`, `Order`, `NonDumbAwareActions`, `IdeaConfigurationXml`, `IdeaInitializerDescriptor`, `ApplicationPluginDeclaration`, `ProjectPluginDeclaration`, `StandalonePluginDescriptor`) plus every non-root concept you reference (blocks, parameters, instances, anchors, separators, keystrokes, shortcut changes, preference pages, persistent properties, etc.).\n- Open `references\u002Factions.md` when **declaring or modifying an `ActionDeclaration`** — all fields (`name`, `caption`, `description`, `mnemonic`, `ID`, `overrides`, `isAlwaysVisible`, `requiredAccess`, `outsideCommandExecution`, `updateInBackground`, `fillActionContext`, `nativeLanguage`, `updateBlock`, `executeFunction`, `icon`, `parameter`, `constructionParameter`, `methodDeclaration`, `places`), the two parameter kinds (`ActionDataParameterDeclaration` simple-from-DataKey vs `ActionParameterDeclaration` complex-typed), `RequiredCondition` vs `isOptional`, how to refer to parameters inside bodies (`ActionParameterReferenceOperation` \u002F `ActionDataParameterReferenceOperation`), the `ShowHelpForNode` blueprint with typical `MPSCommonDataKeys.MPS_PROJECT` + `MPSCommonDataKeys.NODE`, and the `requiredAccess` table (`none` \u002F `read` \u002F `command` \u002F `editorCommand`) with the dialog-from-`command` deadlock warning.\n- Open `references\u002Faction-groups.md` when **assembling menus \u002F toolbars \u002F popups** — `ActionGroupDeclaration` fields (`name`, `caption`, `mnemonic`, `isPopup`, `isInvisibleWhenDisabled`, `isInternal`, `isPluginXmlGroup`, `updateInBackground`, `modifier`, `contents`), the three `contents` variants (`ElementListContents` static \u002F `BuildGroupBlock` once \u002F `UpdateGroupBlock` every open), `ActionGroupMember` interface, `ActionInstance` with `actualParameter` for construction parameters, `GroupAnchor` (named slots), `Separator`, `InterfaceExtentionPoint` (`bootstrap ->`), `ModificationStatement` to plug into `MainMenu` \u002F `EditorPopup` \u002F `NodeActions` \u002F etc., and the `ShowHelp` blueprint.\n- Open `references\u002Ftools.md` when **building a tool window** — `ToolDeclaration` fields (`name`, `caption`, `position` enum, `isAvailableOnStartup`, `number` deprecated, `icon` deprecated, `toolIcon`, `getComponentBlock`, `toolInitBlock`, `toolDisposeBlock`, `fieldDeclaration`, `methodDeclaration`, `shortcut`), the lifecycle (`BaseProjectTool`, init once, dispose on close, never call `project.tool\u003C…>` from dispose), retrieval via `project.tool\u003CMyTool>` (`GetToolInProjectOperation`), the `TodoViewer` blueprint, and `TabbedToolDeclaration` differences (no `getComponentBlock`, tabs added from init).\n- Open `references\u002Fkeymaps.md` when **adding shortcuts** — `KeymapChangesDeclaration` fields (`name`, `keymap` enum: `Default` \u002F `Mac_OS_X` \u002F `Mac_OS_X_Plus` \u002F `XWin` \u002F `GNOME` \u002F `KDE`, `isPluginXmlKeymap`, `shortcutChange`), `SimpleShortcutChange` with action ref + ordered `KeyMapKeystroke` sequence (chords), `KeyMapKeystroke` fields (`modifiers` space-separated string, `keycode` Java-style like `VK_F9`, `change` enum `replace_all` \u002F `remove`), the `Default` → `cmd`-on-Mac translation, blueprint for `HelpKeymap` with `Ctrl-F1`.\n- Open `references\u002Fpreferences.md` when **creating a Settings dialog page** — `PreferencesComponentDeclaration` fields (`name`, `persistenPropertyDeclaration`, `afterReadBlock`, `beforeWriteBlock`, `preferencePage`), `PreferencePage` fields (`name`, `helpTopic`, `icon`, `component`, `isModifiedBlock`, `resetBlock`, `commitBlock`), how to retrieve from code (`project.preferenceComponent\u003CMyPrefs>`), persistence to `workspace.xml`, the `MyPluginPrefs` skeleton.\n- Open `references\u002Feditor-tabs.md` when **adding tabs to a concept editor** (e.g. the language-definition editor's `Structure`\u002F`Editor`\u002F`Behavior` tabs) — `EditorTab` fields (`name`, `shortcutChar`, `commandOnCreate` deprecated, `baseNodeConcept`, `icon`, `order` legacy, `listenBlock`, `baseNodeBlock`, `isApplicableBlock`, `nodesBlock`, `createTabBlock`), `Order` root + `EditorTabReference` for left-to-right ordering, the `Behavior` tab blueprint.\n- Open `references\u002Finterface-group.md` when **targeting an external (IDEA \u002F platform) action group** — `InterfaceGroup` fields (`name`, `groupID`, `contents`, `modifier`), the `groupID` expression pattern (`IdeActions.GROUP_FILE` etc.), the `IDEAFile` blueprint, and `InterfaceExtentionPoint` (`bootstrap ->`) for external extension-point ids inside an `ElementListContents`.\n- Open `references\u002Fnon-dumb-aware.md` when **opting actions out of dumb mode** — `NonDumbAwareActions` root, one per plugin model, listing actions that must not run while indexing is in progress.\n- Open `references\u002Fidea-configuration-xml.md` when **the higher-level concepts can't express something** — `IdeaConfigurationXml` (`outputPath`, `actions` child of `IdeaActionsDescriptor`) for emitting raw `META-INF\u002FIdeaComponents.xml`. Use sparingly.\n- Open `references\u002Flifecycle-plugins.md` when **needing bespoke application or project lifecycle hooks** — `ApplicationPluginDeclaration` (app scope) vs `ProjectPluginDeclaration` (project scope, `initBlock`\u002F`disposeBlock` receive `project`), `fieldDeclaration` for private state, retrieval via `application plugin\u003CName>` \u002F `project plugin\u003CName>`, the `ProjectPlugin` skeleton, when to add `StandalonePluginDescriptor` (model not following `\u003Csolution>.plugin` convention; `needInitConfig` UI toggle).\n- Open `references\u002Fcommon-failures.md` when **a plugin feature misbehaves** — \"Group X not found\" (missing `jetbrains.mps.ide.actions` dep); concept-ref-vs-node-ref confusion on `modifiedGroup`; action doesn't appear (modifier missing \u002F required param unresolved \u002F `isAlwaysVisible` not set); deadlock when opening dialog from execute (`requiredAccess = command` holds write lock — compute inputs first, then `project.modelAccess.executeCommand { ... }`); `TabbedTool` missing `getComponentBlock` (by design); ctrl shortcut works on Win but not Mac (`Default` translates to `cmd`); `constructionParameter` without `toString()` causes generated-ID collisions; IDE doesn't see edits (rebuild + Reload All).\n",{"data":33,"body":35},{"name":4,"description":6,"type":34},"reference",{"type":36,"children":37},"root",[38,47,94,107,114,495,501,600,606,611,863,899,905,924,1371,1377,1505,1511],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"mps-ide-plugin-language",[44],{"type":45,"value":46},"text","MPS IDE Plugin Language",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51,53,59,61,68,70,76,78,84,86,92],{"type":45,"value":52},"This skill covers ",{"type":39,"tag":54,"props":55,"children":56},"strong",{},[57],{"type":45,"value":58},"IDE plugins",{"type":45,"value":60},": code that integrates with the MPS\u002FIntelliJ host IDE — menu actions, tool windows, shortcuts, settings panels. Plugin code lives in a regular ",{"type":39,"tag":62,"props":63,"children":65},"code",{"className":64},[],[66],{"type":45,"value":67},"Solution",{"type":45,"value":69}," module (compilation mode: \"Regular MPS module contributing extensions to MPS\") with model(s) using ",{"type":39,"tag":62,"props":71,"children":73},{"className":72},[],[74],{"type":45,"value":75},"jetbrains.mps.lang.plugin",{"type":45,"value":77}," and ",{"type":39,"tag":62,"props":79,"children":81},{"className":80},[],[82],{"type":45,"value":83},"jetbrains.mps.lang.plugin.standalone",{"type":45,"value":85},". The canonical model name is ",{"type":39,"tag":62,"props":87,"children":89},{"className":88},[],[90],{"type":45,"value":91},"\u003Csolution_name>.plugin",{"type":45,"value":93}," — MPS auto-registers it on that convention.",{"type":39,"tag":48,"props":95,"children":96},{},[97,99],{"type":45,"value":98},"Official documentation: ",{"type":39,"tag":100,"props":101,"children":105},"a",{"href":102,"rel":103},"https:\u002F\u002Fwww.jetbrains.com\u002Fhelp\u002Fmps\u002Fplugin.html",[104],"nofollow",[106],{"type":45,"value":102},{"type":39,"tag":108,"props":109,"children":111},"h2",{"id":110},"critical-directives",[112],{"type":45,"value":113},"Critical Directives",{"type":39,"tag":115,"props":116,"children":117},"ul",{},[118,137,147,172,221,261,326,382,408,463,483],{"type":39,"tag":119,"props":120,"children":121},"li",{},[122,127,129,135],{"type":39,"tag":54,"props":123,"children":124},{},[125],{"type":45,"value":126},"Disambiguate the overloaded vocabulary first.",{"type":45,"value":128}," \"Plugin\", \"tool\", \"action group\" each mean two or three different things. See ",{"type":39,"tag":62,"props":130,"children":132},{"className":131},[],[133],{"type":45,"value":134},"references\u002Fterminology.md",{"type":45,"value":136}," before naming anything.",{"type":39,"tag":119,"props":138,"children":139},{},[140,145],{"type":39,"tag":54,"props":141,"children":142},{},[143],{"type":45,"value":144},"A plugin solution is NOT an IntelliJ plugin jar.",{"type":45,"value":146}," The solution contains MPS models; the jar is what the MPS Build Language packages from it. Don't conflate.",{"type":39,"tag":119,"props":148,"children":149},{},[150,163,165,170],{"type":39,"tag":54,"props":151,"children":152},{},[153,155,161],{"type":45,"value":154},"A ",{"type":39,"tag":62,"props":156,"children":158},{"className":157},[],[159],{"type":45,"value":160},"Tool",{"type":45,"value":162}," is a tool window",{"type":45,"value":164}," — a dockable panel — ",{"type":39,"tag":54,"props":166,"children":167},{},[168],{"type":45,"value":169},"not",{"type":45,"value":171}," a CLI tool or an action.",{"type":39,"tag":119,"props":173,"children":174},{},[175,180,182,188,190,196,197,203,205,211,213,219],{"type":39,"tag":54,"props":176,"children":177},{},[178],{"type":45,"value":179},"Use MPS MCP tools for edits.",{"type":45,"value":181}," ",{"type":39,"tag":62,"props":183,"children":185},{"className":184},[],[186],{"type":45,"value":187},"mps_mcp_insert_root_node_from_json",{"type":45,"value":189},", ",{"type":39,"tag":62,"props":191,"children":193},{"className":192},[],[194],{"type":45,"value":195},"mps_mcp_update_node",{"type":45,"value":189},{"type":39,"tag":62,"props":198,"children":200},{"className":199},[],[201],{"type":45,"value":202},"mps_mcp_print_node",{"type":45,"value":204},". Resolve concept names with ",{"type":39,"tag":62,"props":206,"children":208},{"className":207},[],[209],{"type":45,"value":210},"mps_mcp_search_concepts",{"type":45,"value":212}," \u002F ",{"type":39,"tag":62,"props":214,"children":216},{"className":215},[],[217],{"type":45,"value":218},"mps_mcp_get_concept_details",{"type":45,"value":220},"; never guess.",{"type":39,"tag":119,"props":222,"children":223},{},[224,251,253,259],{"type":39,"tag":54,"props":225,"children":226},{},[227,233,235,241,243,249],{"type":39,"tag":62,"props":228,"children":230},{"className":229},[],[231],{"type":45,"value":232},"ModificationStatement.modifiedGroup",{"type":45,"value":234}," is a node reference (",{"type":39,"tag":62,"props":236,"children":238},{"className":237},[],[239],{"type":45,"value":240},"r:...",{"type":45,"value":242},"), not a concept reference (",{"type":39,"tag":62,"props":244,"children":246},{"className":245},[],[247],{"type":45,"value":248},"c:...",{"type":45,"value":250},").",{"type":45,"value":252}," Look up the target group via ",{"type":39,"tag":62,"props":254,"children":256},{"className":255},[],[257],{"type":45,"value":258},"mps_mcp_search_root_node_by_name",{"type":45,"value":260}," to obtain the node ref.",{"type":39,"tag":119,"props":262,"children":263},{},[264,275,277,283,284,290,291,297,298,304,305,311,312,318,319,325],{"type":39,"tag":54,"props":265,"children":266},{},[267,269],{"type":45,"value":268},"Add a model dependency on ",{"type":39,"tag":62,"props":270,"children":272},{"className":271},[],[273],{"type":45,"value":274},"jetbrains.mps.ide.actions",{"type":45,"value":276}," before referencing built-in groups (",{"type":39,"tag":62,"props":278,"children":280},{"className":279},[],[281],{"type":45,"value":282},"MainMenu",{"type":45,"value":189},{"type":39,"tag":62,"props":285,"children":287},{"className":286},[],[288],{"type":45,"value":289},"EditorPopup",{"type":45,"value":189},{"type":39,"tag":62,"props":292,"children":294},{"className":293},[],[295],{"type":45,"value":296},"NodeActions",{"type":45,"value":189},{"type":39,"tag":62,"props":299,"children":301},{"className":300},[],[302],{"type":45,"value":303},"ModelActions",{"type":45,"value":189},{"type":39,"tag":62,"props":306,"children":308},{"className":307},[],[309],{"type":45,"value":310},"ModuleActions",{"type":45,"value":189},{"type":39,"tag":62,"props":313,"children":315},{"className":314},[],[316],{"type":45,"value":317},"MainToolbar",{"type":45,"value":189},{"type":39,"tag":62,"props":320,"children":322},{"className":321},[],[323],{"type":45,"value":324},"ProjectViewPopupMenu",{"type":45,"value":250},{"type":39,"tag":119,"props":327,"children":328},{},[329,342,343,349,351,357,359,365,367,372,374,380],{"type":39,"tag":54,"props":330,"children":331},{},[332,334,340],{"type":45,"value":333},"Pick ",{"type":39,"tag":62,"props":335,"children":337},{"className":336},[],[338],{"type":45,"value":339},"requiredAccess",{"type":45,"value":341}," deliberately:",{"type":45,"value":181},{"type":39,"tag":62,"props":344,"children":346},{"className":345},[],[347],{"type":45,"value":348},"none",{"type":45,"value":350}," (no model touch), ",{"type":39,"tag":62,"props":352,"children":354},{"className":353},[],[355],{"type":45,"value":356},"read",{"type":45,"value":358}," (safe traversal), ",{"type":39,"tag":62,"props":360,"children":362},{"className":361},[],[363],{"type":45,"value":364},"command",{"type":45,"value":366}," (mutates with undo + write lock — ",{"type":39,"tag":54,"props":368,"children":369},{},[370],{"type":45,"value":371},"never open modal dialogs from here",{"type":45,"value":373},"), ",{"type":39,"tag":62,"props":375,"children":377},{"className":376},[],[378],{"type":45,"value":379},"editorCommand",{"type":45,"value":381}," (correct undo scope for editor-driven edits).",{"type":39,"tag":119,"props":383,"children":384},{},[385,406],{"type":39,"tag":54,"props":386,"children":387},{},[388,390,396,398,404],{"type":45,"value":389},"Don't call ",{"type":39,"tag":62,"props":391,"children":393},{"className":392},[],[394],{"type":45,"value":395},"project.tool\u003C…>",{"type":45,"value":397}," from ",{"type":39,"tag":62,"props":399,"children":401},{"className":400},[],[402],{"type":45,"value":403},"dispose",{"type":45,"value":405},".",{"type":45,"value":407}," The lookup can fail during teardown.",{"type":39,"tag":119,"props":409,"children":410},{},[411,416,418,424,426,432,434,440,442,447,449,455,456,462],{"type":39,"tag":54,"props":412,"children":413},{},[414],{"type":45,"value":415},"Mac keymap trap:",{"type":45,"value":417}," with ",{"type":39,"tag":62,"props":419,"children":421},{"className":420},[],[422],{"type":45,"value":423},"Keymap = Default",{"type":45,"value":425},", MPS translates ",{"type":39,"tag":62,"props":427,"children":429},{"className":428},[],[430],{"type":45,"value":431},"ctrl",{"type":45,"value":433}," → ",{"type":39,"tag":62,"props":435,"children":437},{"className":436},[],[438],{"type":45,"value":439},"cmd",{"type":45,"value":441}," on macOS. If you specifically want ",{"type":39,"tag":62,"props":443,"children":445},{"className":444},[],[446],{"type":45,"value":431},{"type":45,"value":448}," on Mac, add a separate ",{"type":39,"tag":62,"props":450,"children":452},{"className":451},[],[453],{"type":45,"value":454},"Mac_OS_X",{"type":45,"value":181},{"type":39,"tag":62,"props":457,"children":459},{"className":458},[],[460],{"type":45,"value":461},"KeymapChangesDeclaration",{"type":45,"value":405},{"type":39,"tag":119,"props":464,"children":465},{},[466,468,474,476,481],{"type":45,"value":467},"After edits, rebuild the module (",{"type":39,"tag":62,"props":469,"children":471},{"className":470},[],[472],{"type":45,"value":473},"mps_mcp_alter_nodes",{"type":45,"value":475}," MAKE) so generated Java is current, then ",{"type":39,"tag":54,"props":477,"children":478},{},[479],{"type":45,"value":480},"Reload All",{"type":45,"value":482}," in MPS for hot-load.",{"type":39,"tag":119,"props":484,"children":485},{},[486,488,494],{"type":45,"value":487},"Validate every new root with ",{"type":39,"tag":62,"props":489,"children":491},{"className":490},[],[492],{"type":45,"value":493},"mps_mcp_check_root_node_problems",{"type":45,"value":405},{"type":39,"tag":108,"props":496,"children":498},{"id":497},"required-used-languages-on-the-model",[499],{"type":45,"value":500},"Required Used Languages (on the Model)",{"type":39,"tag":115,"props":502,"children":503},{},[504,514,545,578,589],{"type":39,"tag":119,"props":505,"children":506},{},[507,512],{"type":39,"tag":62,"props":508,"children":510},{"className":509},[],[511],{"type":45,"value":75},{"type":45,"value":513}," — core concepts (Action, Group, Tool, …).",{"type":39,"tag":119,"props":515,"children":516},{},[517,522,524,530,531,537,538,544],{"type":39,"tag":62,"props":518,"children":520},{"className":519},[],[521],{"type":45,"value":83},{"type":45,"value":523}," — ApplicationPlugin \u002F ProjectPlugin, ",{"type":39,"tag":62,"props":525,"children":527},{"className":526},[],[528],{"type":45,"value":529},"project.tool\u003C...>",{"type":45,"value":189},{"type":39,"tag":62,"props":532,"children":534},{"className":533},[],[535],{"type":45,"value":536},"project.preferenceComponent\u003C...>",{"type":45,"value":189},{"type":39,"tag":62,"props":539,"children":541},{"className":540},[],[542],{"type":45,"value":543},"StandalonePluginDescriptor",{"type":45,"value":405},{"type":39,"tag":119,"props":546,"children":547},{},[548,554,556,562,563,569,570,576],{"type":39,"tag":62,"props":549,"children":551},{"className":550},[],[552],{"type":45,"value":553},"jetbrains.mps.baseLanguage",{"type":45,"value":555}," (+ ",{"type":39,"tag":62,"props":557,"children":559},{"className":558},[],[560],{"type":45,"value":561},".classifiers",{"type":45,"value":189},{"type":39,"tag":62,"props":564,"children":566},{"className":565},[],[567],{"type":45,"value":568},".collections",{"type":45,"value":189},{"type":39,"tag":62,"props":571,"children":573},{"className":572},[],[574],{"type":45,"value":575},".closures",{"type":45,"value":577},") — for code bodies.",{"type":39,"tag":119,"props":579,"children":580},{},[581,587],{"type":39,"tag":62,"props":582,"children":584},{"className":583},[],[585],{"type":45,"value":586},"jetbrains.mps.lang.smodel",{"type":45,"value":588}," if you touch nodes\u002Fmodels.",{"type":39,"tag":119,"props":590,"children":591},{},[592,598],{"type":39,"tag":62,"props":593,"children":595},{"className":594},[],[596],{"type":45,"value":597},"jetbrains.mps.lang.resources",{"type":45,"value":599}," for icons.",{"type":39,"tag":108,"props":601,"children":603},{"id":602},"common-path-workflow",[604],{"type":45,"value":605},"Common-Path Workflow",{"type":39,"tag":48,"props":607,"children":608},{},[609],{"type":45,"value":610},"For a typical \"add a menu item that does X on the selected node\":",{"type":39,"tag":612,"props":613,"children":614},"ol",{},[615,650,681,707,753,806,830,847],{"type":39,"tag":119,"props":616,"children":617},{},[618,623,625,630,631,636,637,642,643,648],{"type":39,"tag":54,"props":619,"children":620},{},[621],{"type":45,"value":622},"Identify the context",{"type":45,"value":624}," — which IDE menu\u002Ftoolbar should it appear in? (",{"type":39,"tag":62,"props":626,"children":628},{"className":627},[],[629],{"type":45,"value":282},{"type":45,"value":189},{"type":39,"tag":62,"props":632,"children":634},{"className":633},[],[635],{"type":45,"value":289},{"type":45,"value":189},{"type":39,"tag":62,"props":638,"children":640},{"className":639},[],[641],{"type":45,"value":296},{"type":45,"value":189},{"type":39,"tag":62,"props":644,"children":646},{"className":645},[],[647],{"type":45,"value":324},{"type":45,"value":649},", …).",{"type":39,"tag":119,"props":651,"children":652},{},[653,658,659,664,666,671,673,679],{"type":39,"tag":54,"props":654,"children":655},{},[656],{"type":45,"value":657},"Locate the target group.",{"type":45,"value":181},{"type":39,"tag":62,"props":660,"children":662},{"className":661},[],[663],{"type":45,"value":258},{"type":45,"value":665}," for the group name. Inspect with ",{"type":39,"tag":62,"props":667,"children":669},{"className":668},[],[670],{"type":45,"value":202},{"type":45,"value":672}," to discover the ",{"type":39,"tag":62,"props":674,"children":676},{"className":675},[],[677],{"type":45,"value":678},"GroupAnchor",{"type":45,"value":680},"s you can target.",{"type":39,"tag":119,"props":682,"children":683},{},[684,689,691,697,699,705],{"type":39,"tag":54,"props":685,"children":686},{},[687],{"type":45,"value":688},"Decide plugin solution location.",{"type":45,"value":690}," Reuse an existing ",{"type":39,"tag":62,"props":692,"children":694},{"className":693},[],[695],{"type":45,"value":696},"*.pluginSolution",{"type":45,"value":698}," module if one fits; otherwise create a new solution and a ",{"type":39,"tag":62,"props":700,"children":702},{"className":701},[],[703],{"type":45,"value":704},"\u003Cname>.plugin",{"type":45,"value":706}," model with the used languages above.",{"type":39,"tag":119,"props":708,"children":709},{},[710,721,723,729,731,737,738,744,746,751],{"type":39,"tag":54,"props":711,"children":712},{},[713,715],{"type":45,"value":714},"Author an ",{"type":39,"tag":62,"props":716,"children":718},{"className":717},[],[719],{"type":45,"value":720},"ActionDeclaration",{"type":45,"value":722}," — see ",{"type":39,"tag":62,"props":724,"children":726},{"className":725},[],[727],{"type":45,"value":728},"references\u002Factions.md",{"type":45,"value":730},". Set name, caption, parameters (",{"type":39,"tag":62,"props":732,"children":734},{"className":733},[],[735],{"type":45,"value":736},"MPSCommonDataKeys.MPS_PROJECT",{"type":45,"value":212},{"type":39,"tag":62,"props":739,"children":741},{"className":740},[],[742],{"type":45,"value":743},".NODE",{"type":45,"value":745}," etc.), ",{"type":39,"tag":62,"props":747,"children":749},{"className":748},[],[750],{"type":45,"value":339},{"type":45,"value":752},", isApplicable, execute body.",{"type":39,"tag":119,"props":754,"children":755},{},[756,766,767,773,775,781,782,788,790,796,798,804],{"type":39,"tag":54,"props":757,"children":758},{},[759,760],{"type":45,"value":714},{"type":39,"tag":62,"props":761,"children":763},{"className":762},[],[764],{"type":45,"value":765},"ActionGroupDeclaration",{"type":45,"value":722},{"type":39,"tag":62,"props":768,"children":770},{"className":769},[],[771],{"type":45,"value":772},"references\u002Faction-groups.md",{"type":45,"value":774},". Owns your action(s) via ",{"type":39,"tag":62,"props":776,"children":778},{"className":777},[],[779],{"type":45,"value":780},"ElementListContents",{"type":45,"value":433},{"type":39,"tag":62,"props":783,"children":785},{"className":784},[],[786],{"type":45,"value":787},"ActionInstance",{"type":45,"value":789},". Add a ",{"type":39,"tag":62,"props":791,"children":793},{"className":792},[],[794],{"type":45,"value":795},"ModificationStatement",{"type":45,"value":797}," under ",{"type":39,"tag":62,"props":799,"children":801},{"className":800},[],[802],{"type":45,"value":803},"modifier",{"type":45,"value":805}," targeting the existing group + an anchor.",{"type":39,"tag":119,"props":807,"children":808},{},[809,814,816,821,823,829],{"type":39,"tag":54,"props":810,"children":811},{},[812],{"type":45,"value":813},"Add a keybinding",{"type":45,"value":815}," (optional) — new ",{"type":39,"tag":62,"props":817,"children":819},{"className":818},[],[820],{"type":45,"value":461},{"type":45,"value":822}," referencing the action — see ",{"type":39,"tag":62,"props":824,"children":826},{"className":825},[],[827],{"type":45,"value":828},"references\u002Fkeymaps.md",{"type":45,"value":405},{"type":39,"tag":119,"props":831,"children":832},{},[833,838,840,845],{"type":39,"tag":54,"props":834,"children":835},{},[836],{"type":45,"value":837},"Rebuild",{"type":45,"value":839}," the solution via ",{"type":39,"tag":62,"props":841,"children":843},{"className":842},[],[844],{"type":45,"value":473},{"type":45,"value":846}," MAKE; reload MPS.",{"type":39,"tag":119,"props":848,"children":849},{},[850,855,856,861],{"type":39,"tag":54,"props":851,"children":852},{},[853],{"type":45,"value":854},"Validate",{"type":45,"value":417},{"type":39,"tag":62,"props":857,"children":859},{"className":858},[],[860],{"type":45,"value":493},{"type":45,"value":862}," on each new root.",{"type":39,"tag":48,"props":864,"children":865},{},[866,868,874,876,882,884,890,892,898],{"type":45,"value":867},"For other task families: tool window → ",{"type":39,"tag":62,"props":869,"children":871},{"className":870},[],[872],{"type":45,"value":873},"references\u002Ftools.md",{"type":45,"value":875},"; settings page → ",{"type":39,"tag":62,"props":877,"children":879},{"className":878},[],[880],{"type":45,"value":881},"references\u002Fpreferences.md",{"type":45,"value":883},"; editor tabs → ",{"type":39,"tag":62,"props":885,"children":887},{"className":886},[],[888],{"type":45,"value":889},"references\u002Feditor-tabs.md",{"type":45,"value":891},"; bespoke startup → ",{"type":39,"tag":62,"props":893,"children":895},{"className":894},[],[896],{"type":45,"value":897},"references\u002Flifecycle-plugins.md",{"type":45,"value":405},{"type":39,"tag":108,"props":900,"children":902},{"id":901},"reference-examples-in-this-repository",[903],{"type":45,"value":904},"Reference Examples in This Repository",{"type":39,"tag":48,"props":906,"children":907},{},[908,910,915,916,922],{"type":45,"value":909},"Seed ",{"type":39,"tag":62,"props":911,"children":913},{"className":912},[],[914],{"type":45,"value":202},{"type":45,"value":212},{"type":39,"tag":62,"props":917,"children":919},{"className":918},[],[920],{"type":45,"value":921},"mps_mcp_query_nodes",{"type":45,"value":923}," (FIND_USAGES) with these:",{"type":39,"tag":925,"props":926,"children":927},"table",{},[928,952],{"type":39,"tag":929,"props":930,"children":931},"thead",{},[932],{"type":39,"tag":933,"props":934,"children":935},"tr",{},[936,942,947],{"type":39,"tag":937,"props":938,"children":939},"th",{},[940],{"type":45,"value":941},"Concept",{"type":39,"tag":937,"props":943,"children":944},{},[945],{"type":45,"value":946},"Example nodes",{"type":39,"tag":937,"props":948,"children":949},{},[950],{"type":45,"value":951},"Model",{"type":39,"tag":953,"props":954,"children":955},"tbody",{},[956,1007,1051,1081,1110,1181,1294,1339],{"type":39,"tag":933,"props":957,"children":958},{},[959,968,998],{"type":39,"tag":960,"props":961,"children":962},"td",{},[963],{"type":39,"tag":62,"props":964,"children":966},{"className":965},[],[967],{"type":45,"value":720},{"type":39,"tag":960,"props":969,"children":970},{},[971,977,978,984,985,991,992],{"type":39,"tag":62,"props":972,"children":974},{"className":973},[],[975],{"type":45,"value":976},"ShowHelpForNode",{"type":45,"value":189},{"type":39,"tag":62,"props":979,"children":981},{"className":980},[],[982],{"type":45,"value":983},"ShowDefaultHelp",{"type":45,"value":189},{"type":39,"tag":62,"props":986,"children":988},{"className":987},[],[989],{"type":45,"value":990},"ShowHelpForRoot",{"type":45,"value":189},{"type":39,"tag":62,"props":993,"children":995},{"className":994},[],[996],{"type":45,"value":997},"ShowHelpForAspect",{"type":39,"tag":960,"props":999,"children":1000},{},[1001],{"type":39,"tag":62,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":45,"value":1006},"jetbrains.mps.lang.structure.pluginSolution.plugin",{"type":39,"tag":933,"props":1008,"children":1009},{},[1010,1018,1043],{"type":39,"tag":960,"props":1011,"children":1012},{},[1013],{"type":39,"tag":62,"props":1014,"children":1016},{"className":1015},[],[1017],{"type":45,"value":765},{"type":39,"tag":960,"props":1019,"children":1020},{},[1021,1027,1029,1035,1036,1041],{"type":39,"tag":62,"props":1022,"children":1024},{"className":1023},[],[1025],{"type":45,"value":1026},"ShowHelp",{"type":45,"value":1028}," (contributes to ",{"type":39,"tag":62,"props":1030,"children":1032},{"className":1031},[],[1033],{"type":45,"value":1034},"Structure",{"type":45,"value":77},{"type":39,"tag":62,"props":1037,"children":1039},{"className":1038},[],[1040],{"type":45,"value":303},{"type":45,"value":1042},")",{"type":39,"tag":960,"props":1044,"children":1045},{},[1046],{"type":39,"tag":62,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":45,"value":1006},{"type":39,"tag":933,"props":1052,"children":1053},{},[1054,1063,1072],{"type":39,"tag":960,"props":1055,"children":1056},{},[1057],{"type":39,"tag":62,"props":1058,"children":1060},{"className":1059},[],[1061],{"type":45,"value":1062},"ToolDeclaration",{"type":39,"tag":960,"props":1064,"children":1065},{},[1066],{"type":39,"tag":62,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":45,"value":1071},"TodoViewer",{"type":39,"tag":960,"props":1073,"children":1074},{},[1075],{"type":39,"tag":62,"props":1076,"children":1078},{"className":1077},[],[1079],{"type":45,"value":1080},"jetbrains.mps.ide.tools.todo",{"type":39,"tag":933,"props":1082,"children":1083},{},[1084,1093,1102],{"type":39,"tag":960,"props":1085,"children":1086},{},[1087],{"type":39,"tag":62,"props":1088,"children":1090},{"className":1089},[],[1091],{"type":45,"value":1092},"PreferencesComponentDeclaration",{"type":39,"tag":960,"props":1094,"children":1095},{},[1096],{"type":39,"tag":62,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":45,"value":1101},"BehaviorDialogsPersistentOptions",{"type":39,"tag":960,"props":1103,"children":1104},{},[1105],{"type":39,"tag":62,"props":1106,"children":1108},{"className":1107},[],[1109],{"type":45,"value":274},{"type":39,"tag":933,"props":1111,"children":1112},{},[1113,1122,1173],{"type":39,"tag":960,"props":1114,"children":1115},{},[1116],{"type":39,"tag":62,"props":1117,"children":1119},{"className":1118},[],[1120],{"type":45,"value":1121},"InterfaceGroup",{"type":39,"tag":960,"props":1123,"children":1124},{},[1125,1131,1132,1138,1139,1145,1146,1152,1153,1159,1160,1166,1167],{"type":39,"tag":62,"props":1126,"children":1128},{"className":1127},[],[1129],{"type":45,"value":1130},"IDEAWindows",{"type":45,"value":189},{"type":39,"tag":62,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":45,"value":1137},"IDEAGoTo",{"type":45,"value":189},{"type":39,"tag":62,"props":1140,"children":1142},{"className":1141},[],[1143],{"type":45,"value":1144},"IDEAEdit",{"type":45,"value":189},{"type":39,"tag":62,"props":1147,"children":1149},{"className":1148},[],[1150],{"type":45,"value":1151},"IDEAFile",{"type":45,"value":189},{"type":39,"tag":62,"props":1154,"children":1156},{"className":1155},[],[1157],{"type":45,"value":1158},"IDEAView",{"type":45,"value":189},{"type":39,"tag":62,"props":1161,"children":1163},{"className":1162},[],[1164],{"type":45,"value":1165},"IDEATools",{"type":45,"value":189},{"type":39,"tag":62,"props":1168,"children":1170},{"className":1169},[],[1171],{"type":45,"value":1172},"IDEAVCS",{"type":39,"tag":960,"props":1174,"children":1175},{},[1176],{"type":39,"tag":62,"props":1177,"children":1179},{"className":1178},[],[1180],{"type":45,"value":274},{"type":39,"tag":933,"props":1182,"children":1183},{},[1184,1193,1285],{"type":39,"tag":960,"props":1185,"children":1186},{},[1187],{"type":39,"tag":62,"props":1188,"children":1190},{"className":1189},[],[1191],{"type":45,"value":1192},"EditorTab",{"type":39,"tag":960,"props":1194,"children":1195},{},[1196,1202,1203,1209,1210,1216,1217,1223,1224,1230,1231,1237,1238,1244,1245,1251,1252,1258,1259,1265,1266,1271,1272,1278,1279],{"type":39,"tag":62,"props":1197,"children":1199},{"className":1198},[],[1200],{"type":45,"value":1201},"Actions",{"type":45,"value":189},{"type":39,"tag":62,"props":1204,"children":1206},{"className":1205},[],[1207],{"type":45,"value":1208},"Behavior",{"type":45,"value":189},{"type":39,"tag":62,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":45,"value":1215},"Constraints",{"type":45,"value":189},{"type":39,"tag":62,"props":1218,"children":1220},{"className":1219},[],[1221],{"type":45,"value":1222},"Data Flow",{"type":45,"value":189},{"type":39,"tag":62,"props":1225,"children":1227},{"className":1226},[],[1228],{"type":45,"value":1229},"Editor",{"type":45,"value":189},{"type":39,"tag":62,"props":1232,"children":1234},{"className":1233},[],[1235],{"type":45,"value":1236},"Feedback",{"type":45,"value":189},{"type":39,"tag":62,"props":1239,"children":1241},{"className":1240},[],[1242],{"type":45,"value":1243},"Find Usages",{"type":45,"value":189},{"type":39,"tag":62,"props":1246,"children":1248},{"className":1247},[],[1249],{"type":45,"value":1250},"Generator",{"type":45,"value":189},{"type":39,"tag":62,"props":1253,"children":1255},{"className":1254},[],[1256],{"type":45,"value":1257},"Intentions",{"type":45,"value":189},{"type":39,"tag":62,"props":1260,"children":1262},{"className":1261},[],[1263],{"type":45,"value":1264},"Refactorings",{"type":45,"value":189},{"type":39,"tag":62,"props":1267,"children":1269},{"className":1268},[],[1270],{"type":45,"value":1034},{"type":45,"value":189},{"type":39,"tag":62,"props":1273,"children":1275},{"className":1274},[],[1276],{"type":45,"value":1277},"Textgen",{"type":45,"value":189},{"type":39,"tag":62,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":45,"value":1284},"Typesystem",{"type":39,"tag":960,"props":1286,"children":1287},{},[1288],{"type":39,"tag":62,"props":1289,"children":1291},{"className":1290},[],[1292],{"type":45,"value":1293},"jetbrains.mps.ide.devkit.editor",{"type":39,"tag":933,"props":1295,"children":1296},{},[1297,1307,1330],{"type":39,"tag":960,"props":1298,"children":1299},{},[1300,1305],{"type":39,"tag":62,"props":1301,"children":1303},{"className":1302},[],[1304],{"type":45,"value":1192},{"type":45,"value":1306}," (alt)",{"type":39,"tag":960,"props":1308,"children":1309},{},[1310,1316,1317,1323,1324],{"type":39,"tag":62,"props":1311,"children":1313},{"className":1312},[],[1314],{"type":45,"value":1315},"Run Configuration",{"type":45,"value":189},{"type":39,"tag":62,"props":1318,"children":1320},{"className":1319},[],[1321],{"type":45,"value":1322},"Executor",{"type":45,"value":189},{"type":39,"tag":62,"props":1325,"children":1327},{"className":1326},[],[1328],{"type":45,"value":1329},"Producer",{"type":39,"tag":960,"props":1331,"children":1332},{},[1333],{"type":39,"tag":62,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":45,"value":1338},"jetbrains.mps.execution.configurations.pluginSolution.plugin",{"type":39,"tag":933,"props":1340,"children":1341},{},[1342,1353,1363],{"type":39,"tag":960,"props":1343,"children":1344},{},[1345,1351],{"type":39,"tag":62,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":45,"value":1350},"Order",{"type":45,"value":1352}," (editor tabs)",{"type":39,"tag":960,"props":1354,"children":1355},{},[1356,1361],{"type":39,"tag":62,"props":1357,"children":1359},{"className":1358},[],[1360],{"type":45,"value":1350},{"type":45,"value":1362}," root",{"type":39,"tag":960,"props":1364,"children":1365},{},[1366],{"type":39,"tag":62,"props":1367,"children":1369},{"className":1368},[],[1370],{"type":45,"value":1293},{"type":39,"tag":108,"props":1372,"children":1374},{"id":1373},"related-skills",[1375],{"type":45,"value":1376},"Related Skills",{"type":39,"tag":115,"props":1378,"children":1379},{},[1380,1398,1417,1428,1447,1494],{"type":39,"tag":119,"props":1381,"children":1382},{},[1383,1389,1391,1396],{"type":39,"tag":62,"props":1384,"children":1386},{"className":1385},[],[1387],{"type":45,"value":1388},"mps-aspect-actions",{"type":45,"value":1390}," — ",{"type":39,"tag":54,"props":1392,"children":1393},{},[1394],{"type":45,"value":1395},"node factories",{"type":45,"value":1397},", unrelated to IDE actions despite the name.",{"type":39,"tag":119,"props":1399,"children":1400},{},[1401,1407,1409,1415],{"type":39,"tag":62,"props":1402,"children":1404},{"className":1403},[],[1405],{"type":45,"value":1406},"mps-aspect-intentions",{"type":45,"value":1408}," — Alt+Enter context actions ",{"type":39,"tag":1410,"props":1411,"children":1412},"em",{},[1413],{"type":45,"value":1414},"inside",{"type":45,"value":1416}," the projectional editor.",{"type":39,"tag":119,"props":1418,"children":1419},{},[1420,1426],{"type":39,"tag":62,"props":1421,"children":1423},{"className":1422},[],[1424],{"type":45,"value":1425},"mps-aspect-editor-menus-and-keymaps",{"type":45,"value":1427}," — editor cell actions, substitute menus, side transforms (a different layer from the IDE shell).",{"type":39,"tag":119,"props":1429,"children":1430},{},[1431,1437,1439,1445],{"type":39,"tag":62,"props":1432,"children":1434},{"className":1433},[],[1435],{"type":45,"value":1436},"mps-build-language",{"type":45,"value":1438}," — packaging a plugin solution into a distributable MPS\u002FIDEA plugin (the build script must copy ",{"type":39,"tag":62,"props":1440,"children":1442},{"className":1441},[],[1443],{"type":45,"value":1444},"startup.properties",{"type":45,"value":1446}," from the solution's resources).",{"type":39,"tag":119,"props":1448,"children":1449},{},[1450,1456,1457,1463,1465,1471,1473,1479,1480,1486,1487,1492],{"type":39,"tag":62,"props":1451,"children":1453},{"className":1452},[],[1454],{"type":45,"value":1455},"mps-quotations",{"type":45,"value":212},{"type":39,"tag":62,"props":1458,"children":1460},{"className":1459},[],[1461],{"type":45,"value":1462},"mps-model-manipulation",{"type":45,"value":1464}," — writing the base-language bodies inside ",{"type":39,"tag":62,"props":1466,"children":1468},{"className":1467},[],[1469],{"type":45,"value":1470},"execute",{"type":45,"value":1472},"\u002F",{"type":39,"tag":62,"props":1474,"children":1476},{"className":1475},[],[1477],{"type":45,"value":1478},"isApplicable",{"type":45,"value":1472},{"type":39,"tag":62,"props":1481,"children":1483},{"className":1482},[],[1484],{"type":45,"value":1485},"init",{"type":45,"value":1472},{"type":39,"tag":62,"props":1488,"children":1490},{"className":1489},[],[1491],{"type":45,"value":403},{"type":45,"value":1493}," blocks.",{"type":39,"tag":119,"props":1495,"children":1496},{},[1497,1503],{"type":39,"tag":62,"props":1498,"children":1500},{"className":1499},[],[1501],{"type":45,"value":1502},"mps-baselanguage",{"type":45,"value":1504}," — mechanics of building BaseLanguage JSON.",{"type":39,"tag":108,"props":1506,"children":1508},{"id":1507},"reference-index",[1509],{"type":45,"value":1510},"Reference Index",{"type":39,"tag":115,"props":1512,"children":1513},{},[1514,1599,1714,1976,2179,2341,2526,2661,2801,2889,2913,2967,3070],{"type":39,"tag":119,"props":1515,"children":1516},{},[1517,1519,1524,1526,1531,1533,1539,1540,1546,1548,1553,1555,1561,1563,1569,1570,1575,1577,1583,1584,1590,1591,1597],{"type":45,"value":1518},"Open ",{"type":39,"tag":62,"props":1520,"children":1522},{"className":1521},[],[1523],{"type":45,"value":134},{"type":45,"value":1525}," when ",{"type":39,"tag":54,"props":1527,"children":1528},{},[1529],{"type":45,"value":1530},"starting any plugin task",{"type":45,"value":1532}," — disambiguates \"plugin solution\" vs \"IntelliJ plugin\", ",{"type":39,"tag":62,"props":1534,"children":1536},{"className":1535},[],[1537],{"type":45,"value":1538},"ApplicationPlugin",{"type":45,"value":1472},{"type":39,"tag":62,"props":1541,"children":1543},{"className":1542},[],[1544],{"type":45,"value":1545},"ProjectPlugin",{"type":45,"value":1547}," vs the deployable jar, ",{"type":39,"tag":62,"props":1549,"children":1551},{"className":1550},[],[1552],{"type":45,"value":160},{"type":45,"value":1554}," (tool window) vs \"CLI tool\", ",{"type":39,"tag":62,"props":1556,"children":1558},{"className":1557},[],[1559],{"type":45,"value":1560},"ActionGroup",{"type":45,"value":1562}," vs ",{"type":39,"tag":62,"props":1564,"children":1566},{"className":1565},[],[1567],{"type":45,"value":1568},"BootstrapGroup",{"type":45,"value":1472},{"type":39,"tag":62,"props":1571,"children":1573},{"className":1572},[],[1574],{"type":45,"value":1121},{"type":45,"value":1576},", anchor (",{"type":39,"tag":62,"props":1578,"children":1580},{"className":1579},[],[1581],{"type":45,"value":1582},"->",{"type":45,"value":373},{"type":39,"tag":62,"props":1585,"children":1587},{"className":1586},[],[1588],{"type":45,"value":1589},"EditorMenu",{"type":45,"value":1472},{"type":39,"tag":62,"props":1592,"children":1594},{"className":1593},[],[1595],{"type":45,"value":1596},"SubstituteMenu",{"type":45,"value":1598}," (different aspect), Intention (different aspect), Node Factory (different language).",{"type":39,"tag":119,"props":1600,"children":1601},{},[1602,1603,1609,1610,1615,1617,1622,1623,1628,1629,1634,1635,1640,1641,1647,1648,1653,1654,1659,1660,1665,1666,1671,1672,1678,1679,1685,1686,1692,1693,1699,1700,1706,1707,1712],{"type":45,"value":1518},{"type":39,"tag":62,"props":1604,"children":1606},{"className":1605},[],[1607],{"type":45,"value":1608},"references\u002Fconcept-catalog.md",{"type":45,"value":1525},{"type":39,"tag":54,"props":1611,"children":1612},{},[1613],{"type":45,"value":1614},"looking up a concept FQN",{"type":45,"value":1616}," — every rootable concept (",{"type":39,"tag":62,"props":1618,"children":1620},{"className":1619},[],[1621],{"type":45,"value":720},{"type":45,"value":189},{"type":39,"tag":62,"props":1624,"children":1626},{"className":1625},[],[1627],{"type":45,"value":765},{"type":45,"value":189},{"type":39,"tag":62,"props":1630,"children":1632},{"className":1631},[],[1633],{"type":45,"value":1121},{"type":45,"value":189},{"type":39,"tag":62,"props":1636,"children":1638},{"className":1637},[],[1639],{"type":45,"value":1062},{"type":45,"value":189},{"type":39,"tag":62,"props":1642,"children":1644},{"className":1643},[],[1645],{"type":45,"value":1646},"TabbedToolDeclaration",{"type":45,"value":189},{"type":39,"tag":62,"props":1649,"children":1651},{"className":1650},[],[1652],{"type":45,"value":461},{"type":45,"value":189},{"type":39,"tag":62,"props":1655,"children":1657},{"className":1656},[],[1658],{"type":45,"value":1092},{"type":45,"value":189},{"type":39,"tag":62,"props":1661,"children":1663},{"className":1662},[],[1664],{"type":45,"value":1192},{"type":45,"value":189},{"type":39,"tag":62,"props":1667,"children":1669},{"className":1668},[],[1670],{"type":45,"value":1350},{"type":45,"value":189},{"type":39,"tag":62,"props":1673,"children":1675},{"className":1674},[],[1676],{"type":45,"value":1677},"NonDumbAwareActions",{"type":45,"value":189},{"type":39,"tag":62,"props":1680,"children":1682},{"className":1681},[],[1683],{"type":45,"value":1684},"IdeaConfigurationXml",{"type":45,"value":189},{"type":39,"tag":62,"props":1687,"children":1689},{"className":1688},[],[1690],{"type":45,"value":1691},"IdeaInitializerDescriptor",{"type":45,"value":189},{"type":39,"tag":62,"props":1694,"children":1696},{"className":1695},[],[1697],{"type":45,"value":1698},"ApplicationPluginDeclaration",{"type":45,"value":189},{"type":39,"tag":62,"props":1701,"children":1703},{"className":1702},[],[1704],{"type":45,"value":1705},"ProjectPluginDeclaration",{"type":45,"value":189},{"type":39,"tag":62,"props":1708,"children":1710},{"className":1709},[],[1711],{"type":45,"value":543},{"type":45,"value":1713},") plus every non-root concept you reference (blocks, parameters, instances, anchors, separators, keystrokes, shortcut changes, preference pages, persistent properties, etc.).",{"type":39,"tag":119,"props":1715,"children":1716},{},[1717,1718,1723,1724,1734,1736,1742,1743,1749,1750,1756,1757,1763,1764,1770,1771,1777,1778,1784,1785,1790,1791,1797,1798,1804,1805,1811,1812,1818,1819,1825,1826,1832,1833,1839,1840,1846,1847,1853,1854,1860,1861,1867,1869,1875,1877,1883,1885,1891,1892,1898,1900,1906,1907,1913,1915,1920,1922,1927,1929,1935,1937,1942,1944,1949,1950,1955,1956,1961,1962,1967,1969,1974],{"type":45,"value":1518},{"type":39,"tag":62,"props":1719,"children":1721},{"className":1720},[],[1722],{"type":45,"value":728},{"type":45,"value":1525},{"type":39,"tag":54,"props":1725,"children":1726},{},[1727,1729],{"type":45,"value":1728},"declaring or modifying an ",{"type":39,"tag":62,"props":1730,"children":1732},{"className":1731},[],[1733],{"type":45,"value":720},{"type":45,"value":1735}," — all fields (",{"type":39,"tag":62,"props":1737,"children":1739},{"className":1738},[],[1740],{"type":45,"value":1741},"name",{"type":45,"value":189},{"type":39,"tag":62,"props":1744,"children":1746},{"className":1745},[],[1747],{"type":45,"value":1748},"caption",{"type":45,"value":189},{"type":39,"tag":62,"props":1751,"children":1753},{"className":1752},[],[1754],{"type":45,"value":1755},"description",{"type":45,"value":189},{"type":39,"tag":62,"props":1758,"children":1760},{"className":1759},[],[1761],{"type":45,"value":1762},"mnemonic",{"type":45,"value":189},{"type":39,"tag":62,"props":1765,"children":1767},{"className":1766},[],[1768],{"type":45,"value":1769},"ID",{"type":45,"value":189},{"type":39,"tag":62,"props":1772,"children":1774},{"className":1773},[],[1775],{"type":45,"value":1776},"overrides",{"type":45,"value":189},{"type":39,"tag":62,"props":1779,"children":1781},{"className":1780},[],[1782],{"type":45,"value":1783},"isAlwaysVisible",{"type":45,"value":189},{"type":39,"tag":62,"props":1786,"children":1788},{"className":1787},[],[1789],{"type":45,"value":339},{"type":45,"value":189},{"type":39,"tag":62,"props":1792,"children":1794},{"className":1793},[],[1795],{"type":45,"value":1796},"outsideCommandExecution",{"type":45,"value":189},{"type":39,"tag":62,"props":1799,"children":1801},{"className":1800},[],[1802],{"type":45,"value":1803},"updateInBackground",{"type":45,"value":189},{"type":39,"tag":62,"props":1806,"children":1808},{"className":1807},[],[1809],{"type":45,"value":1810},"fillActionContext",{"type":45,"value":189},{"type":39,"tag":62,"props":1813,"children":1815},{"className":1814},[],[1816],{"type":45,"value":1817},"nativeLanguage",{"type":45,"value":189},{"type":39,"tag":62,"props":1820,"children":1822},{"className":1821},[],[1823],{"type":45,"value":1824},"updateBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":1827,"children":1829},{"className":1828},[],[1830],{"type":45,"value":1831},"executeFunction",{"type":45,"value":189},{"type":39,"tag":62,"props":1834,"children":1836},{"className":1835},[],[1837],{"type":45,"value":1838},"icon",{"type":45,"value":189},{"type":39,"tag":62,"props":1841,"children":1843},{"className":1842},[],[1844],{"type":45,"value":1845},"parameter",{"type":45,"value":189},{"type":39,"tag":62,"props":1848,"children":1850},{"className":1849},[],[1851],{"type":45,"value":1852},"constructionParameter",{"type":45,"value":189},{"type":39,"tag":62,"props":1855,"children":1857},{"className":1856},[],[1858],{"type":45,"value":1859},"methodDeclaration",{"type":45,"value":189},{"type":39,"tag":62,"props":1862,"children":1864},{"className":1863},[],[1865],{"type":45,"value":1866},"places",{"type":45,"value":1868},"), the two parameter kinds (",{"type":39,"tag":62,"props":1870,"children":1872},{"className":1871},[],[1873],{"type":45,"value":1874},"ActionDataParameterDeclaration",{"type":45,"value":1876}," simple-from-DataKey vs ",{"type":39,"tag":62,"props":1878,"children":1880},{"className":1879},[],[1881],{"type":45,"value":1882},"ActionParameterDeclaration",{"type":45,"value":1884}," complex-typed), ",{"type":39,"tag":62,"props":1886,"children":1888},{"className":1887},[],[1889],{"type":45,"value":1890},"RequiredCondition",{"type":45,"value":1562},{"type":39,"tag":62,"props":1893,"children":1895},{"className":1894},[],[1896],{"type":45,"value":1897},"isOptional",{"type":45,"value":1899},", how to refer to parameters inside bodies (",{"type":39,"tag":62,"props":1901,"children":1903},{"className":1902},[],[1904],{"type":45,"value":1905},"ActionParameterReferenceOperation",{"type":45,"value":212},{"type":39,"tag":62,"props":1908,"children":1910},{"className":1909},[],[1911],{"type":45,"value":1912},"ActionDataParameterReferenceOperation",{"type":45,"value":1914},"), the ",{"type":39,"tag":62,"props":1916,"children":1918},{"className":1917},[],[1919],{"type":45,"value":976},{"type":45,"value":1921}," blueprint with typical ",{"type":39,"tag":62,"props":1923,"children":1925},{"className":1924},[],[1926],{"type":45,"value":736},{"type":45,"value":1928}," + ",{"type":39,"tag":62,"props":1930,"children":1932},{"className":1931},[],[1933],{"type":45,"value":1934},"MPSCommonDataKeys.NODE",{"type":45,"value":1936},", and the ",{"type":39,"tag":62,"props":1938,"children":1940},{"className":1939},[],[1941],{"type":45,"value":339},{"type":45,"value":1943}," table (",{"type":39,"tag":62,"props":1945,"children":1947},{"className":1946},[],[1948],{"type":45,"value":348},{"type":45,"value":212},{"type":39,"tag":62,"props":1951,"children":1953},{"className":1952},[],[1954],{"type":45,"value":356},{"type":45,"value":212},{"type":39,"tag":62,"props":1957,"children":1959},{"className":1958},[],[1960],{"type":45,"value":364},{"type":45,"value":212},{"type":39,"tag":62,"props":1963,"children":1965},{"className":1964},[],[1966],{"type":45,"value":379},{"type":45,"value":1968},") with the dialog-from-",{"type":39,"tag":62,"props":1970,"children":1972},{"className":1971},[],[1973],{"type":45,"value":364},{"type":45,"value":1975}," deadlock warning.",{"type":39,"tag":119,"props":1977,"children":1978},{},[1979,1980,1985,1986,1991,1992,1997,1999,2004,2005,2010,2011,2016,2017,2023,2024,2030,2031,2037,2038,2044,2045,2050,2051,2056,2057,2063,2065,2070,2072,2077,2079,2085,2087,2093,2095,2101,2103,2108,2109,2115,2117,2122,2124,2130,2131,2137,2139,2145,2146,2151,2153,2158,2159,2164,2165,2170,2172,2177],{"type":45,"value":1518},{"type":39,"tag":62,"props":1981,"children":1983},{"className":1982},[],[1984],{"type":45,"value":772},{"type":45,"value":1525},{"type":39,"tag":54,"props":1987,"children":1988},{},[1989],{"type":45,"value":1990},"assembling menus \u002F toolbars \u002F popups",{"type":45,"value":1390},{"type":39,"tag":62,"props":1993,"children":1995},{"className":1994},[],[1996],{"type":45,"value":765},{"type":45,"value":1998}," fields (",{"type":39,"tag":62,"props":2000,"children":2002},{"className":2001},[],[2003],{"type":45,"value":1741},{"type":45,"value":189},{"type":39,"tag":62,"props":2006,"children":2008},{"className":2007},[],[2009],{"type":45,"value":1748},{"type":45,"value":189},{"type":39,"tag":62,"props":2012,"children":2014},{"className":2013},[],[2015],{"type":45,"value":1762},{"type":45,"value":189},{"type":39,"tag":62,"props":2018,"children":2020},{"className":2019},[],[2021],{"type":45,"value":2022},"isPopup",{"type":45,"value":189},{"type":39,"tag":62,"props":2025,"children":2027},{"className":2026},[],[2028],{"type":45,"value":2029},"isInvisibleWhenDisabled",{"type":45,"value":189},{"type":39,"tag":62,"props":2032,"children":2034},{"className":2033},[],[2035],{"type":45,"value":2036},"isInternal",{"type":45,"value":189},{"type":39,"tag":62,"props":2039,"children":2041},{"className":2040},[],[2042],{"type":45,"value":2043},"isPluginXmlGroup",{"type":45,"value":189},{"type":39,"tag":62,"props":2046,"children":2048},{"className":2047},[],[2049],{"type":45,"value":1803},{"type":45,"value":189},{"type":39,"tag":62,"props":2052,"children":2054},{"className":2053},[],[2055],{"type":45,"value":803},{"type":45,"value":189},{"type":39,"tag":62,"props":2058,"children":2060},{"className":2059},[],[2061],{"type":45,"value":2062},"contents",{"type":45,"value":2064},"), the three ",{"type":39,"tag":62,"props":2066,"children":2068},{"className":2067},[],[2069],{"type":45,"value":2062},{"type":45,"value":2071}," variants (",{"type":39,"tag":62,"props":2073,"children":2075},{"className":2074},[],[2076],{"type":45,"value":780},{"type":45,"value":2078}," static \u002F ",{"type":39,"tag":62,"props":2080,"children":2082},{"className":2081},[],[2083],{"type":45,"value":2084},"BuildGroupBlock",{"type":45,"value":2086}," once \u002F ",{"type":39,"tag":62,"props":2088,"children":2090},{"className":2089},[],[2091],{"type":45,"value":2092},"UpdateGroupBlock",{"type":45,"value":2094}," every open), ",{"type":39,"tag":62,"props":2096,"children":2098},{"className":2097},[],[2099],{"type":45,"value":2100},"ActionGroupMember",{"type":45,"value":2102}," interface, ",{"type":39,"tag":62,"props":2104,"children":2106},{"className":2105},[],[2107],{"type":45,"value":787},{"type":45,"value":417},{"type":39,"tag":62,"props":2110,"children":2112},{"className":2111},[],[2113],{"type":45,"value":2114},"actualParameter",{"type":45,"value":2116}," for construction parameters, ",{"type":39,"tag":62,"props":2118,"children":2120},{"className":2119},[],[2121],{"type":45,"value":678},{"type":45,"value":2123}," (named slots), ",{"type":39,"tag":62,"props":2125,"children":2127},{"className":2126},[],[2128],{"type":45,"value":2129},"Separator",{"type":45,"value":189},{"type":39,"tag":62,"props":2132,"children":2134},{"className":2133},[],[2135],{"type":45,"value":2136},"InterfaceExtentionPoint",{"type":45,"value":2138}," (",{"type":39,"tag":62,"props":2140,"children":2142},{"className":2141},[],[2143],{"type":45,"value":2144},"bootstrap ->",{"type":45,"value":373},{"type":39,"tag":62,"props":2147,"children":2149},{"className":2148},[],[2150],{"type":45,"value":795},{"type":45,"value":2152}," to plug into ",{"type":39,"tag":62,"props":2154,"children":2156},{"className":2155},[],[2157],{"type":45,"value":282},{"type":45,"value":212},{"type":39,"tag":62,"props":2160,"children":2162},{"className":2161},[],[2163],{"type":45,"value":289},{"type":45,"value":212},{"type":39,"tag":62,"props":2166,"children":2168},{"className":2167},[],[2169],{"type":45,"value":296},{"type":45,"value":2171}," \u002F etc., and the ",{"type":39,"tag":62,"props":2173,"children":2175},{"className":2174},[],[2176],{"type":45,"value":1026},{"type":45,"value":2178}," blueprint.",{"type":39,"tag":119,"props":2180,"children":2181},{},[2182,2183,2188,2189,2194,2195,2200,2201,2206,2207,2212,2213,2219,2221,2227,2228,2234,2236,2241,2242,2248,2249,2255,2256,2262,2263,2269,2270,2276,2277,2282,2283,2289,2291,2297,2299,2304,2306,2312,2313,2319,2320,2325,2327,2332,2334,2339],{"type":45,"value":1518},{"type":39,"tag":62,"props":2184,"children":2186},{"className":2185},[],[2187],{"type":45,"value":873},{"type":45,"value":1525},{"type":39,"tag":54,"props":2190,"children":2191},{},[2192],{"type":45,"value":2193},"building a tool window",{"type":45,"value":1390},{"type":39,"tag":62,"props":2196,"children":2198},{"className":2197},[],[2199],{"type":45,"value":1062},{"type":45,"value":1998},{"type":39,"tag":62,"props":2202,"children":2204},{"className":2203},[],[2205],{"type":45,"value":1741},{"type":45,"value":189},{"type":39,"tag":62,"props":2208,"children":2210},{"className":2209},[],[2211],{"type":45,"value":1748},{"type":45,"value":189},{"type":39,"tag":62,"props":2214,"children":2216},{"className":2215},[],[2217],{"type":45,"value":2218},"position",{"type":45,"value":2220}," enum, ",{"type":39,"tag":62,"props":2222,"children":2224},{"className":2223},[],[2225],{"type":45,"value":2226},"isAvailableOnStartup",{"type":45,"value":189},{"type":39,"tag":62,"props":2229,"children":2231},{"className":2230},[],[2232],{"type":45,"value":2233},"number",{"type":45,"value":2235}," deprecated, ",{"type":39,"tag":62,"props":2237,"children":2239},{"className":2238},[],[2240],{"type":45,"value":1838},{"type":45,"value":2235},{"type":39,"tag":62,"props":2243,"children":2245},{"className":2244},[],[2246],{"type":45,"value":2247},"toolIcon",{"type":45,"value":189},{"type":39,"tag":62,"props":2250,"children":2252},{"className":2251},[],[2253],{"type":45,"value":2254},"getComponentBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2257,"children":2259},{"className":2258},[],[2260],{"type":45,"value":2261},"toolInitBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2264,"children":2266},{"className":2265},[],[2267],{"type":45,"value":2268},"toolDisposeBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2271,"children":2273},{"className":2272},[],[2274],{"type":45,"value":2275},"fieldDeclaration",{"type":45,"value":189},{"type":39,"tag":62,"props":2278,"children":2280},{"className":2279},[],[2281],{"type":45,"value":1859},{"type":45,"value":189},{"type":39,"tag":62,"props":2284,"children":2286},{"className":2285},[],[2287],{"type":45,"value":2288},"shortcut",{"type":45,"value":2290},"), the lifecycle (",{"type":39,"tag":62,"props":2292,"children":2294},{"className":2293},[],[2295],{"type":45,"value":2296},"BaseProjectTool",{"type":45,"value":2298},", init once, dispose on close, never call ",{"type":39,"tag":62,"props":2300,"children":2302},{"className":2301},[],[2303],{"type":45,"value":395},{"type":45,"value":2305}," from dispose), retrieval via ",{"type":39,"tag":62,"props":2307,"children":2309},{"className":2308},[],[2310],{"type":45,"value":2311},"project.tool\u003CMyTool>",{"type":45,"value":2138},{"type":39,"tag":62,"props":2314,"children":2316},{"className":2315},[],[2317],{"type":45,"value":2318},"GetToolInProjectOperation",{"type":45,"value":1914},{"type":39,"tag":62,"props":2321,"children":2323},{"className":2322},[],[2324],{"type":45,"value":1071},{"type":45,"value":2326}," blueprint, and ",{"type":39,"tag":62,"props":2328,"children":2330},{"className":2329},[],[2331],{"type":45,"value":1646},{"type":45,"value":2333}," differences (no ",{"type":39,"tag":62,"props":2335,"children":2337},{"className":2336},[],[2338],{"type":45,"value":2254},{"type":45,"value":2340},", tabs added from init).",{"type":39,"tag":119,"props":2342,"children":2343},{},[2344,2345,2350,2351,2356,2357,2362,2363,2368,2369,2375,2377,2383,2384,2389,2390,2396,2397,2403,2404,2410,2411,2417,2418,2424,2425,2431,2432,2438,2440,2446,2448,2453,2454,2460,2462,2468,2470,2476,2477,2483,2485,2491,2492,2498,2499,2504,2505,2510,2512,2518,2519,2525],{"type":45,"value":1518},{"type":39,"tag":62,"props":2346,"children":2348},{"className":2347},[],[2349],{"type":45,"value":828},{"type":45,"value":1525},{"type":39,"tag":54,"props":2352,"children":2353},{},[2354],{"type":45,"value":2355},"adding shortcuts",{"type":45,"value":1390},{"type":39,"tag":62,"props":2358,"children":2360},{"className":2359},[],[2361],{"type":45,"value":461},{"type":45,"value":1998},{"type":39,"tag":62,"props":2364,"children":2366},{"className":2365},[],[2367],{"type":45,"value":1741},{"type":45,"value":189},{"type":39,"tag":62,"props":2370,"children":2372},{"className":2371},[],[2373],{"type":45,"value":2374},"keymap",{"type":45,"value":2376}," enum: ",{"type":39,"tag":62,"props":2378,"children":2380},{"className":2379},[],[2381],{"type":45,"value":2382},"Default",{"type":45,"value":212},{"type":39,"tag":62,"props":2385,"children":2387},{"className":2386},[],[2388],{"type":45,"value":454},{"type":45,"value":212},{"type":39,"tag":62,"props":2391,"children":2393},{"className":2392},[],[2394],{"type":45,"value":2395},"Mac_OS_X_Plus",{"type":45,"value":212},{"type":39,"tag":62,"props":2398,"children":2400},{"className":2399},[],[2401],{"type":45,"value":2402},"XWin",{"type":45,"value":212},{"type":39,"tag":62,"props":2405,"children":2407},{"className":2406},[],[2408],{"type":45,"value":2409},"GNOME",{"type":45,"value":212},{"type":39,"tag":62,"props":2412,"children":2414},{"className":2413},[],[2415],{"type":45,"value":2416},"KDE",{"type":45,"value":189},{"type":39,"tag":62,"props":2419,"children":2421},{"className":2420},[],[2422],{"type":45,"value":2423},"isPluginXmlKeymap",{"type":45,"value":189},{"type":39,"tag":62,"props":2426,"children":2428},{"className":2427},[],[2429],{"type":45,"value":2430},"shortcutChange",{"type":45,"value":373},{"type":39,"tag":62,"props":2433,"children":2435},{"className":2434},[],[2436],{"type":45,"value":2437},"SimpleShortcutChange",{"type":45,"value":2439}," with action ref + ordered ",{"type":39,"tag":62,"props":2441,"children":2443},{"className":2442},[],[2444],{"type":45,"value":2445},"KeyMapKeystroke",{"type":45,"value":2447}," sequence (chords), ",{"type":39,"tag":62,"props":2449,"children":2451},{"className":2450},[],[2452],{"type":45,"value":2445},{"type":45,"value":1998},{"type":39,"tag":62,"props":2455,"children":2457},{"className":2456},[],[2458],{"type":45,"value":2459},"modifiers",{"type":45,"value":2461}," space-separated string, ",{"type":39,"tag":62,"props":2463,"children":2465},{"className":2464},[],[2466],{"type":45,"value":2467},"keycode",{"type":45,"value":2469}," Java-style like ",{"type":39,"tag":62,"props":2471,"children":2473},{"className":2472},[],[2474],{"type":45,"value":2475},"VK_F9",{"type":45,"value":189},{"type":39,"tag":62,"props":2478,"children":2480},{"className":2479},[],[2481],{"type":45,"value":2482},"change",{"type":45,"value":2484}," enum ",{"type":39,"tag":62,"props":2486,"children":2488},{"className":2487},[],[2489],{"type":45,"value":2490},"replace_all",{"type":45,"value":212},{"type":39,"tag":62,"props":2493,"children":2495},{"className":2494},[],[2496],{"type":45,"value":2497},"remove",{"type":45,"value":1914},{"type":39,"tag":62,"props":2500,"children":2502},{"className":2501},[],[2503],{"type":45,"value":2382},{"type":45,"value":433},{"type":39,"tag":62,"props":2506,"children":2508},{"className":2507},[],[2509],{"type":45,"value":439},{"type":45,"value":2511},"-on-Mac translation, blueprint for ",{"type":39,"tag":62,"props":2513,"children":2515},{"className":2514},[],[2516],{"type":45,"value":2517},"HelpKeymap",{"type":45,"value":417},{"type":39,"tag":62,"props":2520,"children":2522},{"className":2521},[],[2523],{"type":45,"value":2524},"Ctrl-F1",{"type":45,"value":405},{"type":39,"tag":119,"props":2527,"children":2528},{},[2529,2530,2535,2536,2541,2542,2547,2548,2553,2554,2560,2561,2567,2568,2574,2575,2581,2582,2588,2589,2594,2595,2601,2602,2607,2608,2614,2615,2621,2622,2628,2629,2635,2637,2643,2645,2651,2653,2659],{"type":45,"value":1518},{"type":39,"tag":62,"props":2531,"children":2533},{"className":2532},[],[2534],{"type":45,"value":881},{"type":45,"value":1525},{"type":39,"tag":54,"props":2537,"children":2538},{},[2539],{"type":45,"value":2540},"creating a Settings dialog page",{"type":45,"value":1390},{"type":39,"tag":62,"props":2543,"children":2545},{"className":2544},[],[2546],{"type":45,"value":1092},{"type":45,"value":1998},{"type":39,"tag":62,"props":2549,"children":2551},{"className":2550},[],[2552],{"type":45,"value":1741},{"type":45,"value":189},{"type":39,"tag":62,"props":2555,"children":2557},{"className":2556},[],[2558],{"type":45,"value":2559},"persistenPropertyDeclaration",{"type":45,"value":189},{"type":39,"tag":62,"props":2562,"children":2564},{"className":2563},[],[2565],{"type":45,"value":2566},"afterReadBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2569,"children":2571},{"className":2570},[],[2572],{"type":45,"value":2573},"beforeWriteBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2576,"children":2578},{"className":2577},[],[2579],{"type":45,"value":2580},"preferencePage",{"type":45,"value":373},{"type":39,"tag":62,"props":2583,"children":2585},{"className":2584},[],[2586],{"type":45,"value":2587},"PreferencePage",{"type":45,"value":1998},{"type":39,"tag":62,"props":2590,"children":2592},{"className":2591},[],[2593],{"type":45,"value":1741},{"type":45,"value":189},{"type":39,"tag":62,"props":2596,"children":2598},{"className":2597},[],[2599],{"type":45,"value":2600},"helpTopic",{"type":45,"value":189},{"type":39,"tag":62,"props":2603,"children":2605},{"className":2604},[],[2606],{"type":45,"value":1838},{"type":45,"value":189},{"type":39,"tag":62,"props":2609,"children":2611},{"className":2610},[],[2612],{"type":45,"value":2613},"component",{"type":45,"value":189},{"type":39,"tag":62,"props":2616,"children":2618},{"className":2617},[],[2619],{"type":45,"value":2620},"isModifiedBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2623,"children":2625},{"className":2624},[],[2626],{"type":45,"value":2627},"resetBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2630,"children":2632},{"className":2631},[],[2633],{"type":45,"value":2634},"commitBlock",{"type":45,"value":2636},"), how to retrieve from code (",{"type":39,"tag":62,"props":2638,"children":2640},{"className":2639},[],[2641],{"type":45,"value":2642},"project.preferenceComponent\u003CMyPrefs>",{"type":45,"value":2644},"), persistence to ",{"type":39,"tag":62,"props":2646,"children":2648},{"className":2647},[],[2649],{"type":45,"value":2650},"workspace.xml",{"type":45,"value":2652},", the ",{"type":39,"tag":62,"props":2654,"children":2656},{"className":2655},[],[2657],{"type":45,"value":2658},"MyPluginPrefs",{"type":45,"value":2660}," skeleton.",{"type":39,"tag":119,"props":2662,"children":2663},{},[2664,2665,2670,2671,2676,2678,2683,2684,2689,2690,2695,2697,2702,2703,2708,2709,2715,2716,2722,2723,2729,2730,2735,2736,2742,2744,2750,2751,2757,2758,2764,2765,2771,2772,2778,2779,2784,2786,2792,2794,2799],{"type":45,"value":1518},{"type":39,"tag":62,"props":2666,"children":2668},{"className":2667},[],[2669],{"type":45,"value":889},{"type":45,"value":1525},{"type":39,"tag":54,"props":2672,"children":2673},{},[2674],{"type":45,"value":2675},"adding tabs to a concept editor",{"type":45,"value":2677}," (e.g. the language-definition editor's ",{"type":39,"tag":62,"props":2679,"children":2681},{"className":2680},[],[2682],{"type":45,"value":1034},{"type":45,"value":1472},{"type":39,"tag":62,"props":2685,"children":2687},{"className":2686},[],[2688],{"type":45,"value":1229},{"type":45,"value":1472},{"type":39,"tag":62,"props":2691,"children":2693},{"className":2692},[],[2694],{"type":45,"value":1208},{"type":45,"value":2696}," tabs) — ",{"type":39,"tag":62,"props":2698,"children":2700},{"className":2699},[],[2701],{"type":45,"value":1192},{"type":45,"value":1998},{"type":39,"tag":62,"props":2704,"children":2706},{"className":2705},[],[2707],{"type":45,"value":1741},{"type":45,"value":189},{"type":39,"tag":62,"props":2710,"children":2712},{"className":2711},[],[2713],{"type":45,"value":2714},"shortcutChar",{"type":45,"value":189},{"type":39,"tag":62,"props":2717,"children":2719},{"className":2718},[],[2720],{"type":45,"value":2721},"commandOnCreate",{"type":45,"value":2235},{"type":39,"tag":62,"props":2724,"children":2726},{"className":2725},[],[2727],{"type":45,"value":2728},"baseNodeConcept",{"type":45,"value":189},{"type":39,"tag":62,"props":2731,"children":2733},{"className":2732},[],[2734],{"type":45,"value":1838},{"type":45,"value":189},{"type":39,"tag":62,"props":2737,"children":2739},{"className":2738},[],[2740],{"type":45,"value":2741},"order",{"type":45,"value":2743}," legacy, ",{"type":39,"tag":62,"props":2745,"children":2747},{"className":2746},[],[2748],{"type":45,"value":2749},"listenBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2752,"children":2754},{"className":2753},[],[2755],{"type":45,"value":2756},"baseNodeBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2759,"children":2761},{"className":2760},[],[2762],{"type":45,"value":2763},"isApplicableBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2766,"children":2768},{"className":2767},[],[2769],{"type":45,"value":2770},"nodesBlock",{"type":45,"value":189},{"type":39,"tag":62,"props":2773,"children":2775},{"className":2774},[],[2776],{"type":45,"value":2777},"createTabBlock",{"type":45,"value":373},{"type":39,"tag":62,"props":2780,"children":2782},{"className":2781},[],[2783],{"type":45,"value":1350},{"type":45,"value":2785}," root + ",{"type":39,"tag":62,"props":2787,"children":2789},{"className":2788},[],[2790],{"type":45,"value":2791},"EditorTabReference",{"type":45,"value":2793}," for left-to-right ordering, the ",{"type":39,"tag":62,"props":2795,"children":2797},{"className":2796},[],[2798],{"type":45,"value":1208},{"type":45,"value":2800}," tab blueprint.",{"type":39,"tag":119,"props":2802,"children":2803},{},[2804,2805,2811,2812,2817,2818,2823,2824,2829,2830,2836,2837,2842,2843,2848,2849,2854,2856,2862,2864,2869,2870,2875,2876,2881,2883,2888],{"type":45,"value":1518},{"type":39,"tag":62,"props":2806,"children":2808},{"className":2807},[],[2809],{"type":45,"value":2810},"references\u002Finterface-group.md",{"type":45,"value":1525},{"type":39,"tag":54,"props":2813,"children":2814},{},[2815],{"type":45,"value":2816},"targeting an external (IDEA \u002F platform) action group",{"type":45,"value":1390},{"type":39,"tag":62,"props":2819,"children":2821},{"className":2820},[],[2822],{"type":45,"value":1121},{"type":45,"value":1998},{"type":39,"tag":62,"props":2825,"children":2827},{"className":2826},[],[2828],{"type":45,"value":1741},{"type":45,"value":189},{"type":39,"tag":62,"props":2831,"children":2833},{"className":2832},[],[2834],{"type":45,"value":2835},"groupID",{"type":45,"value":189},{"type":39,"tag":62,"props":2838,"children":2840},{"className":2839},[],[2841],{"type":45,"value":2062},{"type":45,"value":189},{"type":39,"tag":62,"props":2844,"children":2846},{"className":2845},[],[2847],{"type":45,"value":803},{"type":45,"value":1914},{"type":39,"tag":62,"props":2850,"children":2852},{"className":2851},[],[2853],{"type":45,"value":2835},{"type":45,"value":2855}," expression pattern (",{"type":39,"tag":62,"props":2857,"children":2859},{"className":2858},[],[2860],{"type":45,"value":2861},"IdeActions.GROUP_FILE",{"type":45,"value":2863}," etc.), the ",{"type":39,"tag":62,"props":2865,"children":2867},{"className":2866},[],[2868],{"type":45,"value":1151},{"type":45,"value":2326},{"type":39,"tag":62,"props":2871,"children":2873},{"className":2872},[],[2874],{"type":45,"value":2136},{"type":45,"value":2138},{"type":39,"tag":62,"props":2877,"children":2879},{"className":2878},[],[2880],{"type":45,"value":2144},{"type":45,"value":2882},") for external extension-point ids inside an ",{"type":39,"tag":62,"props":2884,"children":2886},{"className":2885},[],[2887],{"type":45,"value":780},{"type":45,"value":405},{"type":39,"tag":119,"props":2890,"children":2891},{},[2892,2893,2899,2900,2905,2906,2911],{"type":45,"value":1518},{"type":39,"tag":62,"props":2894,"children":2896},{"className":2895},[],[2897],{"type":45,"value":2898},"references\u002Fnon-dumb-aware.md",{"type":45,"value":1525},{"type":39,"tag":54,"props":2901,"children":2902},{},[2903],{"type":45,"value":2904},"opting actions out of dumb mode",{"type":45,"value":1390},{"type":39,"tag":62,"props":2907,"children":2909},{"className":2908},[],[2910],{"type":45,"value":1677},{"type":45,"value":2912}," root, one per plugin model, listing actions that must not run while indexing is in progress.",{"type":39,"tag":119,"props":2914,"children":2915},{},[2916,2917,2923,2924,2929,2930,2935,2936,2942,2943,2949,2951,2957,2959,2965],{"type":45,"value":1518},{"type":39,"tag":62,"props":2918,"children":2920},{"className":2919},[],[2921],{"type":45,"value":2922},"references\u002Fidea-configuration-xml.md",{"type":45,"value":1525},{"type":39,"tag":54,"props":2925,"children":2926},{},[2927],{"type":45,"value":2928},"the higher-level concepts can't express something",{"type":45,"value":1390},{"type":39,"tag":62,"props":2931,"children":2933},{"className":2932},[],[2934],{"type":45,"value":1684},{"type":45,"value":2138},{"type":39,"tag":62,"props":2937,"children":2939},{"className":2938},[],[2940],{"type":45,"value":2941},"outputPath",{"type":45,"value":189},{"type":39,"tag":62,"props":2944,"children":2946},{"className":2945},[],[2947],{"type":45,"value":2948},"actions",{"type":45,"value":2950}," child of ",{"type":39,"tag":62,"props":2952,"children":2954},{"className":2953},[],[2955],{"type":45,"value":2956},"IdeaActionsDescriptor",{"type":45,"value":2958},") for emitting raw ",{"type":39,"tag":62,"props":2960,"children":2962},{"className":2961},[],[2963],{"type":45,"value":2964},"META-INF\u002FIdeaComponents.xml",{"type":45,"value":2966},". Use sparingly.",{"type":39,"tag":119,"props":2968,"children":2969},{},[2970,2971,2976,2977,2982,2983,2988,2990,2995,2997,3003,3004,3010,3012,3018,3019,3024,3026,3032,3033,3039,3040,3045,3047,3052,3054,3060,3062,3068],{"type":45,"value":1518},{"type":39,"tag":62,"props":2972,"children":2974},{"className":2973},[],[2975],{"type":45,"value":897},{"type":45,"value":1525},{"type":39,"tag":54,"props":2978,"children":2979},{},[2980],{"type":45,"value":2981},"needing bespoke application or project lifecycle hooks",{"type":45,"value":1390},{"type":39,"tag":62,"props":2984,"children":2986},{"className":2985},[],[2987],{"type":45,"value":1698},{"type":45,"value":2989}," (app scope) vs ",{"type":39,"tag":62,"props":2991,"children":2993},{"className":2992},[],[2994],{"type":45,"value":1705},{"type":45,"value":2996}," (project scope, ",{"type":39,"tag":62,"props":2998,"children":3000},{"className":2999},[],[3001],{"type":45,"value":3002},"initBlock",{"type":45,"value":1472},{"type":39,"tag":62,"props":3005,"children":3007},{"className":3006},[],[3008],{"type":45,"value":3009},"disposeBlock",{"type":45,"value":3011}," receive ",{"type":39,"tag":62,"props":3013,"children":3015},{"className":3014},[],[3016],{"type":45,"value":3017},"project",{"type":45,"value":373},{"type":39,"tag":62,"props":3020,"children":3022},{"className":3021},[],[3023],{"type":45,"value":2275},{"type":45,"value":3025}," for private state, retrieval via ",{"type":39,"tag":62,"props":3027,"children":3029},{"className":3028},[],[3030],{"type":45,"value":3031},"application plugin\u003CName>",{"type":45,"value":212},{"type":39,"tag":62,"props":3034,"children":3036},{"className":3035},[],[3037],{"type":45,"value":3038},"project plugin\u003CName>",{"type":45,"value":2652},{"type":39,"tag":62,"props":3041,"children":3043},{"className":3042},[],[3044],{"type":45,"value":1545},{"type":45,"value":3046}," skeleton, when to add ",{"type":39,"tag":62,"props":3048,"children":3050},{"className":3049},[],[3051],{"type":45,"value":543},{"type":45,"value":3053}," (model not following ",{"type":39,"tag":62,"props":3055,"children":3057},{"className":3056},[],[3058],{"type":45,"value":3059},"\u003Csolution>.plugin",{"type":45,"value":3061}," convention; ",{"type":39,"tag":62,"props":3063,"children":3065},{"className":3064},[],[3066],{"type":45,"value":3067},"needInitConfig",{"type":45,"value":3069}," UI toggle).",{"type":39,"tag":119,"props":3071,"children":3072},{},[3073,3074,3080,3081,3086,3088,3093,3095,3101,3103,3108,3110,3116,3118,3124,3126,3132,3134,3139,3141,3146,3148,3153,3154,3159,3161,3167],{"type":45,"value":1518},{"type":39,"tag":62,"props":3075,"children":3077},{"className":3076},[],[3078],{"type":45,"value":3079},"references\u002Fcommon-failures.md",{"type":45,"value":1525},{"type":39,"tag":54,"props":3082,"children":3083},{},[3084],{"type":45,"value":3085},"a plugin feature misbehaves",{"type":45,"value":3087}," — \"Group X not found\" (missing ",{"type":39,"tag":62,"props":3089,"children":3091},{"className":3090},[],[3092],{"type":45,"value":274},{"type":45,"value":3094}," dep); concept-ref-vs-node-ref confusion on ",{"type":39,"tag":62,"props":3096,"children":3098},{"className":3097},[],[3099],{"type":45,"value":3100},"modifiedGroup",{"type":45,"value":3102},"; action doesn't appear (modifier missing \u002F required param unresolved \u002F ",{"type":39,"tag":62,"props":3104,"children":3106},{"className":3105},[],[3107],{"type":45,"value":1783},{"type":45,"value":3109}," not set); deadlock when opening dialog from execute (",{"type":39,"tag":62,"props":3111,"children":3113},{"className":3112},[],[3114],{"type":45,"value":3115},"requiredAccess = command",{"type":45,"value":3117}," holds write lock — compute inputs first, then ",{"type":39,"tag":62,"props":3119,"children":3121},{"className":3120},[],[3122],{"type":45,"value":3123},"project.modelAccess.executeCommand { ... }",{"type":45,"value":3125},"); ",{"type":39,"tag":62,"props":3127,"children":3129},{"className":3128},[],[3130],{"type":45,"value":3131},"TabbedTool",{"type":45,"value":3133}," missing ",{"type":39,"tag":62,"props":3135,"children":3137},{"className":3136},[],[3138],{"type":45,"value":2254},{"type":45,"value":3140}," (by design); ctrl shortcut works on Win but not Mac (",{"type":39,"tag":62,"props":3142,"children":3144},{"className":3143},[],[3145],{"type":45,"value":2382},{"type":45,"value":3147}," translates to ",{"type":39,"tag":62,"props":3149,"children":3151},{"className":3150},[],[3152],{"type":45,"value":439},{"type":45,"value":3125},{"type":39,"tag":62,"props":3155,"children":3157},{"className":3156},[],[3158],{"type":45,"value":1852},{"type":45,"value":3160}," without ",{"type":39,"tag":62,"props":3162,"children":3164},{"className":3163},[],[3165],{"type":45,"value":3166},"toString()",{"type":45,"value":3168}," causes generated-ID collisions; IDE doesn't see edits (rebuild + Reload All).",{"items":3170,"total":3292},[3171,3183,3191,3200,3211,3221,3234,3242,3251,3261,3269,3282],{"slug":3172,"name":3172,"fn":3173,"description":3174,"org":3175,"tags":3176,"stars":19,"repoUrl":20,"updatedAt":3182},"mps-aspect-accessories","configure JetBrains MPS module dependencies","Wire MPS module and model dependencies, used languages, used devkits, extended languages, runtime solutions, accessory models, and language\u002Fdependency versions. Use when adding\u002Fremoving module dependencies, importing languages or devkits into a model, declaring runtime solutions, or shipping accessory content visible to consumers without explicit import.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3177,3178,3181],{"name":13,"slug":14,"type":15},{"name":3179,"slug":3180,"type":15},"Configuration","configuration",{"name":17,"slug":18,"type":15},"2026-07-17T06:06:57.311661",{"slug":1388,"name":1388,"fn":3184,"description":3185,"org":3186,"tags":3187,"stars":19,"repoUrl":20,"updatedAt":3190},"define and edit MPS node factories","Use when defining or editing MPS node factories (the \"actions\" aspect) — `NodeFactories` roots, per-concept `NodeFactory` setup functions that initialize a freshly created node and optionally copy data from a replaced `sampleNode`, plus the actions aspect's `CopyPasteHandlers` and `PasteWrappers` roots. Reach for this skill when a substitution, side transform, completion replacement, or `add new initialized(...)` should preserve fields from the node it is replacing, or when defaults set in a constructor are not enough.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3188,3189],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-07-17T06:04:48.066901",{"slug":3192,"name":3192,"fn":3193,"description":3194,"org":3195,"tags":3196,"stars":19,"repoUrl":20,"updatedAt":3199},"mps-aspect-behavior","define and edit MPS concept behavior","Use when defining or editing MPS `ConceptBehavior` — per-concept methods (non-virtual \u002F virtual \u002F abstract \u002F static \u002F virtual static), constructors, virtual dispatch (MRO), super and interface-default calls (`super\u003CInterface>.method`), overriding methods from `lang.core.behavior` interfaces such as `ScopeProvider.getScope` \u002F `INamedConcept.getName` \u002F `BaseConcept.getPresentation`, calling sibling methods (`LocalBehaviorMethodCall`) and behavior methods from other aspects via `node.method(...)`. Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fbehavior.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3197,3198],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-07-13T06:45:21.757084",{"slug":3201,"name":3201,"fn":3202,"description":3203,"org":3204,"tags":3205,"stars":19,"repoUrl":20,"updatedAt":3210},"mps-aspect-constraints","define JetBrains MPS language constraints","Use when defining or editing MPS language constraints — property validators \u002F setters \u002F getters, referent search scopes (imperative or inherited via `ScopeProvider.getScope`), `referentSetHandler` side effects, default-scope blocks, `canBeChild` \u002F `canBeParent` \u002F `canBeAncestor` \u002F `canBeRoot` placement rules, `defaultConcreteConcept` for abstract concepts, `set \u003Cread-only>` and `{name}` aliasing, and scope helpers (`SimpleRoleScope`, `ListScope`, `CompositeScope`, `HidingByNameScope`). Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fconstraints.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3206,3207],{"name":13,"slug":14,"type":15},{"name":3208,"slug":3209,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":3212,"name":3212,"fn":3213,"description":3214,"org":3215,"tags":3216,"stars":19,"repoUrl":20,"updatedAt":3220},"mps-aspect-dataflow","define and debug MPS dataflow builders","Use when defining or debugging MPS dataflow builders for a concept — control\u002Fdata flow declarations that drive reachability analysis and variable-use checking. Covers DataFlowBuilderDeclaration, BuilderBlock, emit instructions (code for, jump, ifjump, label, read, write, ret, mayBeUnreachable), positions (AfterPosition, BeforePosition, LabelPosition), the jetbrains.mps.lang.dataFlow language, the NodeParameter implicit, BL+smodel usage inside builder bodies, and IBuilderMode for advanced analyses such as nullable\u002Fnon-null tracking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3217],{"name":3218,"slug":3219,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":3222,"name":3222,"fn":3223,"description":3224,"org":3225,"tags":3226,"stars":19,"repoUrl":20,"updatedAt":3233},"mps-aspect-editor","define MPS editor layouts","Use when creating or changing MPS editor definitions — the overall workflow from scaffolding a `ConceptEditorDeclaration` through componentizing reusable `EditorComponentDeclaration`s, refining cell models and cell layouts, applying style sheets and indent-layout style items, wiring smart references, leveraging inheritance via super-concepts and interfaces, inspecting (`print_node_json`, `show_node_representation`) and validating (`check_root_node_problems`). Covers `jetbrains.mps.lang.editor` cell models (`CellModel_RefNode`\u002F`CellModel_RefNodeList`\u002F`CellModel_RefCell`\u002F`CellModel_Property`\u002F`CellModel_Constant`), layout choices, and JSON blueprints for common editor shapes. For the non-layout side (action maps, keymaps, transformation\u002Fsubstitute menus) use `mps-aspect-editor-menus-and-keymaps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3227,3230],{"name":3228,"slug":3229,"type":15},"Design","design",{"name":3231,"slug":3232,"type":15},"UI Components","ui-components","2026-07-23T05:41:56.638151",{"slug":1425,"name":1425,"fn":3235,"description":3236,"org":3237,"tags":3238,"stars":19,"repoUrl":20,"updatedAt":3241},"author MPS editor menus and keymaps","Use when authoring the **non-layout** parts of the MPS editor aspect — what happens when the user types, presses a key, triggers completion, pastes, or invokes a context action. Covers action maps (`CellActionMapDeclaration`), cell keymaps (`CellKeyMapDeclaration`), transformation menus (`TransformationMenu_Default` \u002F `_Named` \u002F `_Contribution`), substitute menus (`SubstituteMenu_Default` \u002F `SubstituteMenu` \u002F contributions), side transforms (LEFT\u002FRIGHT), legacy cell menus, paste wrappers and copy-paste handlers (in the actions language), completion styling, reference presentation, two-step deletion, and the editor selection API. Trigger terms: `actionMap`, `keyMap`, `delete_action_id`, `transformationMenu`, `substituteMenu`, `Ctrl+Space`, `Ctrl+Alt+B`, side transform, paste wrapper, completion styling, `PasteWrappers`, `CopyPasteHandlers`. For the **layout** side (cells, layouts, style sheets) use `mps-aspect-editor` instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3239,3240],{"name":17,"slug":18,"type":15},{"name":3231,"slug":3232,"type":15},"2026-07-23T05:41:49.666535",{"slug":3243,"name":3243,"fn":3244,"description":3245,"org":3246,"tags":3247,"stars":19,"repoUrl":20,"updatedAt":3250},"mps-aspect-generation-plan","modify MPS generation plans","Use when defining or modifying an MPS generation plan — explicit ordering of generators, checkpoints for cross-model reference resolution, forks for parallel branches, IncludePlan composition, conditional PlanContribution activation, ParameterEquals\u002FConceptListSelector fork selectors, and InitModelAttributes for targetFacet routing. Apply when working with @genplan models, the jetbrains.mps.lang.generator.plan language, attaching plans via DevKits or the Custom generation facet, or debugging cross-model mapping label resolution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3248,3249],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-07-13T06:44:59.507855",{"slug":3252,"name":3252,"fn":3253,"description":3254,"org":3255,"tags":3256,"stars":19,"repoUrl":20,"updatedAt":3260},"mps-aspect-generator","define JetBrains MPS generator rules","Use when defining or modifying MPS generators — author a generator module, add or edit root\u002Freduction\u002Fweaving\u002Fpattern mapping rules, attach template macros ($COPY_SRC, $LOOP, $IF, $PROPERTY, $REF, $SWITCH, $MAP_SRC, $WEAVE, $INSERT, $LABEL, $TRACE, $VAR), wire mapping labels, build template switches, write pre\u002Fpost mapping scripts, navigate `genContext`, or debug \"rule didn't fire\", missing references, empty output, infinite reduction loops, and generated-Java compile failures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3257,3258,3259],{"name":13,"slug":14,"type":15},{"name":3208,"slug":3209,"type":15},{"name":17,"slug":18,"type":15},"2026-07-17T06:06:58.042999",{"slug":1406,"name":1406,"fn":3262,"description":3263,"org":3264,"tags":3265,"stars":19,"repoUrl":20,"updatedAt":3268},"define and edit MPS intentions","Use when defining or editing MPS intentions (the Alt+Enter context-action aspect) — adding `IntentionDeclaration` roots, parameterized or surround-with variants, description\u002FisApplicable\u002Fexecute blocks, child-filter functions, factory-initialized AST splicing, or debugging why an intention is not offered. Lives in the language's `intentions` model and uses `jetbrains.mps.lang.intentions`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3266,3267],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-07-23T05:41:48.692899",{"slug":3270,"name":3270,"fn":3271,"description":3272,"org":3273,"tags":3274,"stars":19,"repoUrl":20,"updatedAt":3281},"mps-aspect-migrations","author and debug MPS migration scripts","Use when authoring or debugging MPS migration scripts that upgrade user models after a language definition changes — covers jetbrains.mps.lang.migration (MigrationScript class-based, PureMigrationScript declarative, MoveConcept\u002FMoveContainmentLink\u002FMoveReferenceLink\u002FMoveProperty, ordering via OrderDependency, data exchange via putData\u002FgetData, RefactoringLog, ConceptMigrationReference) and jetbrains.mps.lang.script Enhancement Scripts (MigrationScript with MigrationScriptPart_Instance, ExtractInterfaceMigration, FactoryMigrationScriptPart, CommentMigrationScriptPart) — when a model needs version-gated upgrade, concept rename or removal, link or property rename, instance-level transformation, or composition of migration steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3275,3278],{"name":3276,"slug":3277,"type":15},"Debugging","debugging",{"name":3279,"slug":3280,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":3283,"name":3283,"fn":3284,"description":3285,"org":3286,"tags":3287,"stars":19,"repoUrl":20,"updatedAt":3291},"mps-aspect-structure-concepts","define concepts in MPS structure aspect","Define concepts, interface concepts, enumerations, and constrained data types in an MPS language's `structure` aspect. Covers smart-reference detection, alias rules, cardinality, INamedConcept usage, bulk creation, and the full `mps_mcp_alter_structure` \u002F `mps_mcp_query_structure` reference. Use when authoring or modifying a language's structure model.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3288],{"name":3289,"slug":3290,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188,{"items":3294,"total":3330},[3295,3301,3306,3311,3316,3320,3325],{"slug":3172,"name":3172,"fn":3173,"description":3174,"org":3296,"tags":3297,"stars":19,"repoUrl":20,"updatedAt":3182},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3298,3299,3300],{"name":13,"slug":14,"type":15},{"name":3179,"slug":3180,"type":15},{"name":17,"slug":18,"type":15},{"slug":1388,"name":1388,"fn":3184,"description":3185,"org":3302,"tags":3303,"stars":19,"repoUrl":20,"updatedAt":3190},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3304,3305],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":3192,"name":3192,"fn":3193,"description":3194,"org":3307,"tags":3308,"stars":19,"repoUrl":20,"updatedAt":3199},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3309,3310],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":3201,"name":3201,"fn":3202,"description":3203,"org":3312,"tags":3313,"stars":19,"repoUrl":20,"updatedAt":3210},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3314,3315],{"name":13,"slug":14,"type":15},{"name":3208,"slug":3209,"type":15},{"slug":3212,"name":3212,"fn":3213,"description":3214,"org":3317,"tags":3318,"stars":19,"repoUrl":20,"updatedAt":3220},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3319],{"name":3218,"slug":3219,"type":15},{"slug":3222,"name":3222,"fn":3223,"description":3224,"org":3321,"tags":3322,"stars":19,"repoUrl":20,"updatedAt":3233},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3323,3324],{"name":3228,"slug":3229,"type":15},{"name":3231,"slug":3232,"type":15},{"slug":1425,"name":1425,"fn":3235,"description":3236,"org":3326,"tags":3327,"stars":19,"repoUrl":20,"updatedAt":3241},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3328,3329],{"name":17,"slug":18,"type":15},{"name":3231,"slug":3232,"type":15},31]