Dheepak Krishnamurthy
Dheepak Krishnamurthy
If I have the current markdown file: ```markdown +++ title = "Test" category = "blog" date = Date("2014-12-12") +++ # Heading 1 without link content # [Heading 2 with link](https://github.com)...
Hi, thanks for making Franklin.jl! It is genuinely one of the best static site generators for writing scientific and mathematical content. I'm interested in converting my blog to use Franklin.jl....
I'm getting a panic for this line: https://github.com/crossterm-rs/crossterm/blob/5b19aa6d6a74438c6db4bfad4be220b400ab53da/src/event/read.rs#L38 https://github.com/kdheepak/taskwarrior-tui/runs/6213145550?check_suite_focus=true#step:8:319 When trying to call this: ``` let mut reader = crossterm::event::EventStream::new(); ``` Do you think `new()` should return a `Result` type...
- Type: - [x] Bug - [ ] Enhancement - [ ] Feature Request - [ ] Question - `zplug --version`: 2.4.2 - `zsh --version`: zsh 5.5 (x86_64-apple-darwin16.7.0) - `uname...
This might not be recommended, but I wanted to document this in case others came across the same. If I redefine the `cat` function, `zplug update` fails. - Type: -...
**Is your feature request related to a problem? Please describe.** I'd like to download a pre-built release for macos using the same script I use for downloading it for linux...
In trying to wrap a C library in nim, there are a few different ways one can do it: 1) Compile the C library, compile nim files and link statically....
For example, the following does not work: ``` // libraryname.h const libraryname_time libraryname_time_zero = 0.0; ``` if one decides to use the following to import the header file: ``` cImport(srcDir/"libraryname.h",...
[The specification](https://microsoft.github.io/language-server-protocol/specification) allows `InsertTextFormat` to be plain text or a snippet. ``` /** * Defines whether the insert text in a completion item should be interpreted as * plain text...
Vim has support for writing compiler plugins: It would be nice to run tests and get the stacktrace populated in the quickfix list. I imagine this is not straightforward but...