Skip to content

Commit f24884d

Browse files
committed
feat:
- works in production now since it loads before vscode-neovim.
1 parent 46e812b commit f24884d

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"version": "0.0.20",
66
"private": true,
77
"packageManager": "[email protected]+sha512.cdf928fca20832cd59ec53826492b7dc25dc524d4370b6b4adbf65803d32efaa6c1c88147c0ae4e8d579a6c9eec715757b50d4fa35eea179d868eada4ed043af",
8-
"description": "Enhance your VS Code Neovim experience with dynamic UI theming based on Neovim modes",
8+
"description": "Changes UI according to the current Neovim mode",
99
"author": "wrath <[email protected]>",
1010
"license": "MIT",
1111
"homepage": "https://github.com/wrath-codes/nvim_ui_plus#readme",

src/index.ts

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,6 @@ import { logger } from './utils'
77
const { activate, deactivate } = defineExtension(async () => {
88
logger.info('nvim-ui-plus extension activated')
99

10-
// // Check if neovim extension is installed
11-
// const vscode_nvim_ext = extensions.getExtension('asvetliakov.vscode-neovim')
12-
// if (!vscode_nvim_ext) {
13-
// logger.error('vscode-neovim is not installed')
14-
// window.showErrorMessage('vscode-neovim is not installed. Please install it to use this extension.')
15-
// return
16-
// }
17-
18-
// // Use the whenReady method which returns a promise that resolves when the extension is activated
19-
// try {
20-
// // Wait for the extension to be activated by VSCode
21-
// await vscode_nvim_ext.activate()
22-
// logger.info('vscode-neovim extension is active')
23-
// }
24-
// catch (err) {
25-
// logger.error('Failed to wait for vscode-neovim extension:', err)
26-
// window.showErrorMessage('Failed to connect to vscode-neovim extension')
27-
// return
28-
// }
29-
3010
// Set up the mode manager
3111
const modeManager = setupNeovimModeManager()
3212
useDisposable({ dispose: modeManager })

0 commit comments

Comments
 (0)