fenuks
fenuks
This adds support for XDG Base Specification on Unix systems (MacOS not included). This fixes https://github.com/GothenburgBitFactory/timewarrior/issues/207. I'll update documentation when final shape of changes will be agreed upon. For now:...
Using minimal vimrc ```viml call plug#begin('~/.config/nvim/plugged') Plug 'jiangmiao/auto-pairs' let g:AutoPairs = {'“':'”'} call plug#end() ``` while trying to insert `–` (alt+-), I get an error: ``` E115: Missing quote: 'â...
Demo shows that join lines supports range. https://rust-analyzer.github.io/manual.html#join-lines Trying to run `'
fceux currently uses ~/.fceux to store its data. Adding support for XDG was already mentioned in an old [TODO file](https://github.com/TASEmulators/fceux/blob/master/attic/TODO-SDL-2.1.6.md#xdg-standardization-of-config), therefore I won't explain what XDG is for. Said file...
**What?** Seeing which lines in currently opened buffer are covered by tests. Many IDEs provide that. Below are few examples: - [Intellij](https://resources.jetbrains.com/help/img/idea/2021.2/coverage-report-overview.png) - [Gitlab code review](https://docs.gitlab.com/ee/user/project/merge_requests/img/test_coverage_visualization_v12_9.png) - [Visual Studio](https://docs.microsoft.com/en-us/visualstudio/test/media/codecoverage1.png?view=vs-2019) **Why?**...
Hello, original XVim has provided action list. It seems a little outdated, though. It would be great if XVim2 would have up-to-date list. Also, currently link in features list to...
This: ``` for(y=0; ydata[0]+y*pFrame->linesize[0], 1, width*3, pFile); ``` can be done with this: ``` fwrite(pFrame->data[0], 1, width*height*3, pFile); ``` which is easier to understand, at least for me, since I'm...
Ultrastar uses `~/.WorldParty` to store its data on Unix platforms. In order to declutter home directory, decouple configuration from other kinds of data, and allow users to configure where files...
I have project with git submodule, that contains common definitions. When I run ```sh optic diff src/openapi.yml --base c27e8b3 ``` I get an error ```sh { stack: 'ResolverError: Command failed:...
It appears that this application is licenced under Apache 2.0, yes? I'm asking because I'd love to see it packaged for F-Droid, and it only accepts fully open source applications.