Adam Uhlíř

Results 120 issues of Adam Uhlíř

Another feature which I think would be highly appreciated is exporting the Markdown file into PDF files. Myself I was writing some exam essays on MD Notes and to submit...

enhancement

Hey there! I am using md-notes for note taking in school and sometimes I would really like to include photo of a slide. The drag&drop images into note is nice...

enhancement

This PR adds new constructor for `Command` called `NewWithEscaping` that escapes the Command pattern for regex characters `[],(),...` which allows then passing commands with these characters. I have opted for...

This is breaking PR that replaces the `MustCompile` call with `Compile` and proper error handling and returning. Btw. it also includes the previous PR as I was building on top...

**Is your feature request related to a problem or a nice-to-have?? Please describe.** During development of new features, there is usually only a small subset of tests failing. With big...

feature

We will need support for the upcoming [`ipfs dag stat` command](https://github.com/ipfs/go-ipfs/pull/7553/) that is coming to go-ipfs in 0.7.0. Since we use only the client library, it would be sufficient to...

status/ready
kind/feature

This PR tackles #1937. Yet I am not so sure if it is actually needed. Since how Keystore works (eq. has stored metadata in `/info`), it could be easier to...

status/in-progress

When trying to subscribe to listener's added / removed on the `Emittery.Typed` class, TypeScript (v. 3.9.5) complains that: ``` src/utils.ts:68:13 - error TS2769: No overload matches this call. Overload 1...

If I have the following snippet ```ts emitter.on(Emittery.listenerAdded, () => { console.log('Count: ', emitter.listenerCount('helloEvent')) }) emitter.on('helloEvent', () => {}) emitter.on('helloEvent', () => {}) ``` Then I get printed: ``` Count:...

bug
help wanted

Currently, there is the `emit()`/`emitSerial()` that allows the emitter (emitting side) to specify if the event's processing should be awaited or not (eq. serial processing or not). I would like...