Skip to content

Commit

Permalink
Better namespacing to avoid conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
CFiggers committed Sep 4, 2023
1 parent be3c57c commit d226ad2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/paredit/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ export function activate(context: ExtensionContext) {

context.subscriptions.push(
statusBar,
commands.registerCommand('paredit.togglemode', () => {
commands.registerCommand('hy.paredit.togglemode', () => {
let keyMap = workspace.getConfiguration().get('hy.paredit.defaultKeyMap');
keyMap = String(keyMap).trim().toLowerCase();
if (keyMap == 'original') {
Expand Down
2 changes: 1 addition & 1 deletion src/paredit/statusbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class StatusBar {
this._toggleBarItem = window.createStatusBarItem(StatusBarAlignment.Right);
this._toggleBarItem.text = '(λ)';
this._toggleBarItem.tooltip = '';
this._toggleBarItem.command = 'paredit.togglemode';
this._toggleBarItem.command = 'hy.paredit.togglemode';
this._visible = false;
this.keyMap = keymap;

Expand Down

0 comments on commit d226ad2

Please sign in to comment.