All Projects β†’ spikespaz β†’ Vscode Smoothtype

spikespaz / Vscode Smoothtype

Licence: mit
VS Code extension to add cursor transitions while typing, similar to MS Office and the Windows 10 Mail app.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vscode Smoothtype

Theme Bear
🐻 A VSCode dark theme 🐻
Stars: ✭ 27 (-50%)
Mutual labels:  vscode, vscode-extension, visual-studio-code, vscode-theme
Awesome Vscode
🎨 A curated list of delightful VS Code packages and resources.
Stars: ✭ 19,659 (+36305.56%)
Mutual labels:  vscode, vscode-extension, visual-studio-code, vscode-theme
Vscode Project Manager
Project Manager Extension for Visual Studio Code
Stars: ✭ 1,022 (+1792.59%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
Marp Vscode
Marp for VS Code: Create slide deck written in Marp Markdown on VS Code
Stars: ✭ 442 (+718.52%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
Vscode Peacock
Subtly change the color of your Visual Studio Code workspace. Ideal when you have multiple VS Code instances, use VS Live Share, or use VS Code's Remote features, and you want to quickly identify your editor.
Stars: ✭ 690 (+1177.78%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
Vscode Restclient
REST Client Extension for Visual Studio Code
Stars: ✭ 3,289 (+5990.74%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
VSCode-Anywhere
VSCode with preconfigured tools for your programming languages : binaries, settings, extensions and documentations
Stars: ✭ 26 (-51.85%)
Mutual labels:  vscode, visual-studio-code, vscode-extension
Vscode Markdown Pdf
Markdown converter for Visual Studio Code
Stars: ✭ 571 (+957.41%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
vscode-less
πŸ”Œ Less intellisense for Variables and Mixins in all Less files.
Stars: ✭ 21 (-61.11%)
Mutual labels:  vscode, visual-studio-code, vscode-extension
Vscode Material Icon Theme
Available on the VSCode Marketplace
Stars: ✭ 773 (+1331.48%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Vscode Git Graph
View a Git Graph of your repository in Visual Studio Code, and easily perform Git actions from the graph.
Stars: ✭ 767 (+1320.37%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
Vscode Bookmarks
Bookmarks Extension for Visual Studio Code
Stars: ✭ 804 (+1388.89%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
Vscode Hack
Hack language & HHVM debugger support for Visual Studio Code
Stars: ✭ 45 (-16.67%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
Vscode Stylelint
A Visual Studio Code extension to lint CSS/SCSS/Less with stylelint
Stars: ✭ 260 (+381.48%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
Without Guns For Vs Code
Visual Studio Code extension that teaches you mindful programming
Stars: ✭ 14 (-74.07%)
Mutual labels:  vscode, vscode-extension, visual-studio-code
Shades Of Purple Vscode
πŸ¦„ Shades of Purple β€” A professional theme with hand-picked & bold shades of purple to go along with your VSCode. Reviewed by several designers and 75+ theme versions released to keep it updated. One of the top rated best VSCode themes on VS Code Marketplace. Download β†’
Stars: ✭ 486 (+800%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Code Blue
A carefully concocted dark theme made of subtle blues and bright hues that’s easy on the eyes for focused coding.
Stars: ✭ 215 (+298.15%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Vscode One Monokai
🎨 Vscode One Monokai theme.
Stars: ✭ 214 (+296.3%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Nord Visual Studio Code
An arctic, north-bluish clean and elegant Visual Studio Code theme.
Stars: ✭ 749 (+1287.04%)
Mutual labels:  vscode, visual-studio-code, vscode-theme
Vscode Intelephense
PHP intellisense for Visual Studio Code
Stars: ✭ 872 (+1514.81%)
Mutual labels:  vscode, vscode-extension, visual-studio-code

SmoothType for Visual Studio Code

DEPRECATION NOTICE

For all intents and purposes, this project is deprecated and archived. There will be no further development, and support is not guaranteed.

Please use the new editor.cursorSmoothCaretAnimation option in your user settings; the primary and only feature of this extension has been cored. The only thing that VSC cannot do is change the animation duration, this extension can.


This extension adds a smooth typing animation, similar to MS Office and the Windows 10 Mail app.

Downloads Rating

Get it from the Visual Studio Marketplace.

Note: Please scroll down and read the section labeled Important.


If you find this software useful and would like to show your appreciation, please consider making a small donation!

Donate!

Preview

Preview #1 GIF

Commands

  • SmoothType: Enable Animation
  • SmoothType: Disable Animation
  • SmoothType: Reload Animation

Uninstalling

When you uninstall the extension, you must run the SmoothType: Disable Animation command from the command palette (Ctrl+Shift+P) to revert changes in VS Code first.

Additionally, if you're using the extension for fixing VS Code's title bar as mentioned in the Important section, you must also run Fix Checksums: Restore after SmoothType: Disable Animation and before uninstalling either extension.

Configuration

{
  // Duration in milliseconds for the cursor to travel from one character position (or line) to the next.
  "smoothtype.duration": 80,
  // Ask before restarting after a command is successfully run.
  "smoothtype.autoReload": false
}

After changing smoothtype.duration, you must run SmoothType: Enable Animation.

Important

Because Visual Studio Code does not have an API for modifying the editor CSS, this extension modifies the core index file that is loaded by the Electron browser. After enabling Smooth Typing, the editor may complain that it is corrupt, and ask you to reinstall. This is perfectly normal, and perfectly safe. Just click the cog on the top of the notification and elect to not be shown this message again.

The editor may also append [Unsupported] to the end of the window title. This is also fine.

If you would like to remove [Unsupported] from the title bar, I would recommend JΓΌrg Lehni's Fix VSCode Checksums extension.

In the future I may implement the same functionality as that extension into SmoothType itself.

If you're on Linux where it is problematic to run VS Code as superuser, I have forked the extension to fix this issue. My pull request remains unmerged, but the functionality is improved.

It isn't on the Marketplace, but to use this extension just run the following commands.

$ cd ~
$ git clone https://github.com/spikespaz-forks/vscode-fix-checksums
$ cd vscode-fix-checksums/
$ npm install
$ npm install -g vsce
$ vsce package
$ code --install-extension vscode-fix-checksums-1.1.0.vsix

The last command may have a different filename, but there will be only one VSIX package in the directory.

After running those commands, run Reload Window and Fix Checksums: Apply in VS Code.

After every update, the extension must either be reloaded or enabled again.

You also have to restart Visual Studio Code after every reload or change.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].