Yochem van Rosmalen

Results 26 issues of Yochem van Rosmalen

### Describe the feature I don't like tools that clutter up my $HOME dir. `vls` does. I've started to move the vls files to the user config and cache directory,...

Feature Request

### Describe the bug I'm currently working on a `pathlib` library for `v`: #16782. I wanted to implement a wrapper function around `os.open`, and raise a custom error if it...

Bug

While editing [a html file](https://github.com/yochem/yochem.github.io/blob/main/layouts/_default/baseof.html) I noticed that `gcc` inserts `//` as commentstring (independent of cursor location), even though `:echo &commentstring` prints ``. I also have treesitter installed. Any idea...

### Description I have set an environment variable using LaunchAgent (`launchctl setenv XDG_CONFIG_HOME /Users/yochem/Library/Config`) on startup. It sets `XDG_CONFIG_HOME` to a location so my shell (fish in my case) knows...

bug
other
terminal
needs refinement

**Is your feature request related to a problem? Please describe.** `stdpath('data')` seems the wrong directory for history files. The base directory sepc introduced `$XDG_STATE_HOME` for this, and it is adopted...

enhancement

Because of the transparent background, the favicon is hard to see in browser tabs in dark mode: (It's between stackoverflow and the X).

Dear @stsewd, Again thanks for this TS parser, I really like it. I was working on providing text objects for `V` (https://github.com/nvim-treesitter/nvim-treesitter-textobjects/pull/404), and wanted to implement `@comment.inner`, to delete the...

Hi! Would you be interested in adding in YAML support? I changed some minor things to support both JSON and YAML (yaml uses `block_mapping_pair` instead of `pair`). Let me know...

Closes #285. Support the [XDG base directory specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) by moving the following files: `$HOME/.vimgolf/config.yaml` → `{$XDG_CONFIG_HOME OR $HOME/.config}/vimgolf/config.yaml` `$HOME/.vimgolf/put/*` → `{$XDG_CACHE_HOME OR $HOME/.cache}/vimgolf/*` It will automatically do this when the...

I think this will do: ```cson 'Switch': 'prefix': 'switch' 'body': """ switch (${1:var}) { case ${2:label}: ${3://statements} break; case ${4:label}: ${5://statements} break; } """ ```