rhenescu

Results 7 comments of rhenescu

Also in xed (zoomed in 200%): ![image](https://github.com/be5invis/Iosevka/assets/6264315/e67e48fa-ff2b-4dae-9a42-be813b8f2037) --- * 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: ![image](https://github.com/tamasfe/taplo/assets/6264315/8c71dbf5-219e-40ad-a2af-b5be4f122361)

@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: ![image](https://github.com/tamasfe/taplo/assets/6264315/000ef6be-7364-4628-a1b5-cf508ec8b2ef) 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: ![image](https://user-images.githubusercontent.com/6264315/214705404-daa429a3-bbf1-4d85-bdc7-4df7dbe27b4e.png) 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?...