File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11export * from 'packages/obsidian/src/ObsidianAPI' ;
22export * from 'packages/core/src/config/APIConfigs' ;
3+ export { Mountable } from 'packages/core/src/utils/Mountable' ;
4+ export { FieldMountable } from 'packages/core/src/fields/FieldMountable' ;
Original file line number Diff line number Diff line change @@ -254,23 +254,23 @@ export default class MetaBindPlugin extends Plugin implements IPlugin {
254254 addCommands ( ) : void {
255255 this . addCommand ( {
256256 id : 'open-docs' ,
257- name : 'Open Meta Bind Docs' ,
257+ name : 'Open Docs' ,
258258 callback : ( ) => {
259259 window . open ( 'https://mprojectscode.github.io/obsidian-meta-bind-plugin-docs/' , '_blank' ) ;
260260 } ,
261261 } ) ;
262262
263263 this . addCommand ( {
264264 id : 'open-playground' ,
265- name : 'Open Meta Bind Playground' ,
265+ name : 'Open Playground' ,
266266 callback : ( ) => {
267267 void this . activateView ( MB_PLAYGROUND_VIEW_TYPE ) ;
268268 } ,
269269 } ) ;
270270
271271 this . addCommand ( {
272272 id : 'open-help' ,
273- name : 'Open Meta Bind Help' ,
273+ name : 'Open Help' ,
274274 callback : ( ) => {
275275 void this . activateView ( MB_PLAYGROUND_VIEW_TYPE ) ;
276276 } ,
Original file line number Diff line number Diff line change @@ -63,8 +63,6 @@ export class MetaBindSettingTab extends PluginSettingTab {
6363 } ) ;
6464 } ) ;
6565
66- containerEl . createEl ( 'h2' , { text : 'General Settings' } ) ;
67-
6866 new Setting ( containerEl )
6967 . setName ( 'Enable Syntax Highlighting' )
7068 . setDesc ( `Enable syntax highlighting for meta bind syntax. RESTART REQUIRED.` )
You can’t perform that action at this time.
0 commit comments