Raspberry Pi Pico support for VS Code

Pico-Go provides code auto-completion and allows you to communicate with your Raspberry Pi Pico board using the built-in REPL console. Run a single file on your board, sync your entire project or directly type and execute commands. This software is originally a derivative product of Pymakr by Pycom Ltd under the terms of its GNU GPL Version 3+ license but it has now received significant rewrites. Non-RP2040 boards are not supported but may still work. Works with macOS, Linux, and […]

Read more

Open recent VS Code folders and files using Ulauncher

💻Open recent VS Code folders and files using Ulauncher. Quickly open recently-opened VS Code project directories and files. Install Requirements Ulauncher 5 Python >= 3 fuzzywuzzy module. Install this using pip: pip install fuzzywuzzy Steps Ulauncher > Preferences > Extensions > Add extension Paste the following URL: https://github.com/plibither8/ulauncher-vscode-recent This extension should now be set up and work. Usage Default keyword to trigger this extension is code. This can be changed in the preferences. License MIT GitHub https://github.com/plibither8/ulauncher-vscode-recent    

Read more

Create VSCode Extensions with python

vscode-ext This package allows you to create vscode extensions with python. Installation Stable version: pip install vscode-ext Working version: pip install git+https://github.com/CodeWithSwastik/vscode-ext Why use this? Why should you use this for building VScode extensions when you can use typescript? Here are some reasons: vscode-ext builds the package.json for you! No need to switch between your extension.py and package.json in order to add commands. It also handles adding Activity Bars, Keybinds and Views. vscode-ext provides a more pythonic way of creating […]

Read more