82cfb4587b
* chore: small cleanup helper * chore: adding interfaces for icon variants * feat: You can now switch between Material Theme icons * chore: helpers small fix * chore(helpers): small fix helpers * refactor: refactoring fixIcons command, ready for new prop autoFix * refactor: accentsSetter command, ready for autoFix prop * chore: added new exports file for all commands * refactor: main theme file, ready for autoFix prop * chore: added listener also when changing iconTheme * feat: autoApplyIcons added as option and toggleApplyIcons as command * chore: added check for autoApplyIcons flag. Removed listen icon change * feat: Notification shows up when the window needs reload * chore: Update CTA's * chore: Make consistent indent guides and add support to editorIndentGuide.activeBackground Close #188 * chore: fix check on CTA ok * chore: split up configurationChange and changelog (added to commands) * chore: small change settings method * feat: Now the theme will auto fix if needed on change icons theme
28 lines
654 B
TypeScript
28 lines
654 B
TypeScript
import * as path from 'path';
|
|
import * as vscode from 'vscode';
|
|
|
|
import {PATHS} from './../../consts/paths';
|
|
|
|
const previewFile = (): void => {
|
|
const uri = vscode.Uri.file(path.join(PATHS.VSIX_DIR, './CHANGELOG.md'));
|
|
vscode.commands.executeCommand('markdown.showPreview', uri);
|
|
};
|
|
|
|
export default (): void => {
|
|
const extname: string = 'vscode.markdown';
|
|
const md = vscode.extensions.getExtension<any>(extname);
|
|
|
|
if (md === undefined) {
|
|
console.warn(`Ext not found ${ extname }`);
|
|
return;
|
|
}
|
|
|
|
if (md.isActive) {
|
|
return previewFile();
|
|
}
|
|
|
|
md.activate()
|
|
.then(() => previewFile(),
|
|
reason => console.warn(reason)
|
|
);
|
|
};
|