Skip to content

Commit b3696bd

Browse files
committed
minor changes
1 parent 4f65133 commit b3696bd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
export * from 'packages/obsidian/src/ObsidianAPI';
22
export * from 'packages/core/src/config/APIConfigs';
3+
export { Mountable } from 'packages/core/src/utils/Mountable';
4+
export { FieldMountable } from 'packages/core/src/fields/FieldMountable';

packages/obsidian/src/main.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
},

packages/obsidian/src/settings/SettingsTab.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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.`)

0 commit comments

Comments
 (0)