- But actually VS Codium
- Installation
- Built-in Browser
- Multiple workspaces
- Multiple Windows, one workspace
- Searching
- Python
- Cursors, navigating, selection
- Important keyboard shortcuts
- LaTeX
- Settings sync
- Misc extensions of interest
- Networked VS Code
- Editing prose
- Visualize weird stuff
- Various config one needs
- Bonus tips/gotchas
A code editor.
VS Code is something more powerful than a text editor, and less heavy than a classic IDE. It is Microsoft’s in-house competitor to the code editor Atom, with a similar technology stack, but somewhat cleaner and faster, last I checked. Also Atom might have been famous in this niche but now that Microsoft owns Atom and VS Code it is likely that Atom will gradually bitrot then evaporate into nothing.
I am not clear on the relationship between VS Code and the older, flabbier Visual Studio. Some shared branding without any particular shared code? I don’t care enough to ever find out.1
Anyway, VS Code is OK, it turns out.
But actually VS Codium
VS Codium is the pure community distribution of VS Code. Despite the editor being mostly open, Microsoft inserts some creepy code into the packaged version which VS Codium excludes. Why and how you should migrate from Visual Studio Code to VSCodium.
There are some things that might not work everywhere; does GitHub Copilot work in vs codium? 🤷♂️
Installation
# Ubuntu-esque
wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg \
| sudo apt-key add -
echo 'deb https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/debs/ vscodium main' \
| sudo tee --append /etc/apt/sources.list.d/vscodium.list
sudo apt update && sudo apt install codium
# Windows
choco install vscodium
# Mac
brew install --cask vscodium
This should work more or less identically to Microsoft’s version, except that Microsoft will know less stuff about you.
xdg-mime default code-insiders.desktop text/plain # X
sudo update-alternatives --set editor (which code-insiders) #everywhere
Just download that from the download page
Running Visual Studio Code on Linux mentions auto-update workflows, e.g. the following one for ubuntu:
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
sudo install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/
sudo sh -c 'echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list'
rm -f packages.microsoft.gpg
sudo apt update
sudo apt install code # or code-insiders
On pop os there is already a packaged version of VS Code which you can install from the Pop!shop app.
Built-in Browser
Simple Browser: Show
runs a minimalist local browser.
A full-blown dev server with sophisticated integration is available in the Live Server Extension.
Multiple workspaces
I use extension to colorize the windows differently to avoid confusion.
Multiple Windows, one workspace
This sorta works. tl;dr Use the command Duplicate workspace in new window to edit the same worksspace from multiple windows
Searching
NB: some of this section is probably outdated.
Almost obvious but to get maximum value you have to learn a couple of extra things.
Multiline search expressions
require you to type ⇧-⏎
/Shift-Enter
.
That’s for vanilla string matching.
For regex matching if I want to match
multiline search I need to explicitly add newline characters to your character classes, i.e. [\s\S\r]+
.
NB I think this has changed now?
To replace regex groups you do the usual thing - $1
is the first group etc and
$$
is a dollar sign.
Putting this together, if you wished to replace latex equation bracket syntax with latex
dollar syntax, you would replace
\\\[ *([\s\S\r]+?) *\\\]
with
$$$$$1$$$$
🤢
VS code does ordinary javascript regex. If I want fancy lookaround or backref I can enable the setting search.usePCRE2.
Multi cursors
interact with search usefully.
General multiple cursors are made by Alt+Click
/ Option+click
.
There are many keyboard shortcuts to use them to automate menial chores.
Python
See VS Code Python.
Important keyboard shortcuts
Tab switching is not obvious.
There are a lot of tweaks you could do, but short story:
Ctrl PageDown
(Windows/Linux) or ⌘ ⌥ →
(Mac).
Pane/editor switch is not obvious either: ⌘ 1
, ⌘ 2
work.
Snippets
Roll your own snippets.
You invoke them using Ctrl space <prefix> tab
, where you get to define <prefix>
.
There is an example at vs code for prose.
LaTeX
See VS Code for LaTeX.
Settings sync
VS code supports a built in settings sync which works pretty well.
Misc extensions of interest
emoji and unicode
Insert Unicode is a handy tool for inserting arbitrary unicode by searching in various elaborate ways, including full emoji support. Alternatively, Unicode Latex converts from LaTeX character macros to unicode.
Automatic coding
Eerily handy. Naively supported by GitHub Copilot, with GitHub Copilotextension.
Having your knowledge run through someone else’s language model obviously opens up all kinds of security and privacy attack profiles.
Networked VS Code
See networked VS Code.
Editing prose
See VS Code for prose.
Visualize weird stuff
A visual watch window that lets you visualize your data structures while debugging.p
vs code data preview is a tabular data visualiser/analyser for vs code.
Various config one needs
You config is in a JSON file, which is quaintly retro but does mean that 3rd party config is at least not purely abysmal. The location is the following:
- Windows
%APPDATA%\Code\User\settings.json
- Mac
~/Library/Application Support/Code/User/settings.json
- Linux
~/.config/Code/User/settings.json
But you can coordinate across OSes by using settings sync.
Hover/tooltip/hint/autocompletion things are too intrusive
There are a lot of features which huddle under the opaque umbrella of intellisense, because they let someone in marketing get too near the product. But they all need tweaking, so I have to work out which is which. First, which is hover, which is hints etc?
The thing that appears when I mouse over a character is hover
.
It possibly does something useful in statically-typed languages, but often ends up just being annoying in, e.g. javascript/python.
Also, I don't generally mouse over things I am curious about.
To clam it for all languages, perhaps
"editor.hover.delay": 3000,
so it activates after 3 seconds instead of RIGHT NOW LOOK AT ME OH SORRY WERE YOU TRYING TO READ SOMETHING ON THE SCREEN WOULDNT YOU PREFER TO READ THE DOCSTRING FOR THE PRINT STATEMENT
Possibly also
"editor.hover.sticky": false,
Suggestions are the next annoyance. See the docs for IntelliSense in Visual Studio Code. Because instead of letting you finish a line it wants to insert some wacky argument? Disable that.
"editor.acceptSuggestionOnEnter": false,
"editor.acceptSuggestionOnCommitCharacter": false,
We can still invoke the suggestions box with Ctrl-Space
.
There is also a more minimal mode for suggestions, Inline quick suggestions, which I find less annoying.
IntelliSense can be toned down by language for e.g. markdown.
How about bracket closing? (🥶) I am offended by every implementation of bracket closing I have yet seen, so I put this in my config:
"editor.autoClosingBrackets": false,
Much better.
Alternatively, I might want to use AI-assisted IntelliSense which is possibly less needy? :
Also annoying, parameter hints.
"editor.inlayHints.enabled": "offUnlessPressed",
"editor.parameterHints.enabled": false
Which language is that file?
Want to associate file types to certain languages? Here are some extensions I need for literate coding.
"files.associations": {
"*.jsx": "javascript",
"*.rst": "restructuredtext",
"*.Rmd": "markdown",
"*.Rpres": "markdown",
"*.Rnw": "latex",
"*.jmd": "markdown"
},
Bonus tips/gotchas
Horizontal scrolling despite wordwrap
There is a bug built in to VS Code which causes the browser scroll horizontally to see a whole bunch of nothing on the RHS of the screen. AFAIU this is an attempt to let me see ghost text from temporary inline annotations. I fixed it by disabling line blame in gitlens but I believe other add-ons can cause the problem. Beware inline text stuff.
git editor
I found it convenient to set code as editor for command-line git commits:
git config --global core.editor "code-insiders --wait" # insiders
Launching VS code from command line
At one point I wanted to launch the command line for fish shell on macOS and needed to do this:
set -U fish_user_yaths \
"/Applications/Visual Studio Code.app/Contents/Resources/app/bin" \
$fish_user_paths
VS code seems to do it by magic atm.
Fish shell
If I use fish shell on macOS, I must launch VS code from the command line, otherwise paths are all broken.
“Flabby” in the sense of being busy with features I don’t want, not in the sense of wasting hard disk space or RAM. As a javascript desktop app, VS Code is a gigantic memory waster, like all the other javascript apps.↩︎
No comments yet. Why not leave one?