vim-sim 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -28
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -474,34 +474,6 @@ const session = new Session();
474
474
  // Use in your web application
475
475
  ```
476
476
 
477
- ## Comparison with Other Vim Implementations
478
-
479
- | Feature | vim-sim | CodeMirror Vim | Monaco Vim |
480
- |---------|---------|----------------|------------|
481
- | Standalone | | ❌ (requires CodeMirror) | ❌ (requires Monaco) |
482
- | Node.js API | | ❌ | ❌ |
483
- | Undo Tree | | ❌ | ❌ |
484
- | Full Text Objects | | Partial | Partial |
485
- | Macros | | | ❌ |
486
- | Marks & Jumps | | Partial | Partial |
487
- | Spell Checking | | ❌ | ❌ |
488
- | TypeScript | | Partial | |
489
-
490
- ## Contributing
491
-
492
- Contributions are welcome! Please read our [contributing guidelines](CONTRIBUTING.md) first.
493
-
494
- ## License
495
-
496
- MIT © Cole Foster
497
-
498
- ## Documentation
499
-
500
- For more detailed documentation, see:
501
- - [API Documentation](docs/API.md)
502
- - [Test Analysis](docs/TEST-ANALYSIS-SUMMARY.md)
503
- - [Feature Documentation](docs/FINAL-SUMMARY.md)
504
-
505
477
  ## Acknowledgments
506
478
 
507
479
  This project implements Vim's behavior as closely as possible to the original Vim editor by Bram Moolenaar.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vim-sim",
3
- "version": "1.0.6",
4
- "description": "A complete Vim editor simulation engine for Node.js with 85%+ test coverage. Implements motions, operators, visual mode, text objects, macros, marks, undo/redo tree, spell checking, and more.",
3
+ "version": "1.0.7",
4
+ "description": "A complete Vim editor simulation engine for Node.js. Implements motions, operators, visual mode, text objects, macros, marks, undo/redo tree, spell checking, and more. \n\rCheck out my demo here: vim.colefoster.ca",
5
5
  "keywords": [
6
6
  "vim",
7
7
  "editor",