rhenescu
rhenescu
Also in xed (zoomed in 200%):  --- * Your font version: 28.0.0+ * Your font variant: Iosevka Term Curly, size 14 * Your operating system (name and version): Linux...
Full project, for reproduction: [App.zip](https://github.com/tamasfe/taplo/files/12706819/App.zip) Screenshot: 
@thejcannon thank you for your reply! Can you please share what your settings look like? I gave it a try with: ```json { "evenBetterToml.schema.associations": { "^.*\\.app\\.toml$": "file://./src/schema/app.schema.json" } } ```...
Looks like it works without the dot that indicates the current directory:  The hyperlink in `.vscode/settings.json` is not working, but I guess I can live with that. Unless this...
@g0di, add this to your `~/.bashrc` and restart Git Bash: ```sh pyenv() { command pyenv "$@" || return $? if [ "${1-}" = 'shell' ]; then if [ "${2-}" =...
Add this to your settings.json: ```json "[vhdl]": { "files.encoding": "utf8" } ``` or search for `@lang:vhdl encoding` in Settings (UI) and change it there:  This will override the plugin's...
Got a false positive when using sed to replace `'\''` with `'` in a string: ``` printf '%s' "$s" | sed 's#'\''\\'\'''\''#'\''#g' ^-- SC1003: Want to escape a single quote?...