David Gonçalves

Results 16 issues of David Gonçalves

I run the following command for converting an M4A audio file to an MKV video file, using a single image for the entire video duration: ```sh ffpb -loop 1 -framerate...

With GNU Readline I can press tab to view the files and autocomplete. How can I achieve this with replxx?

question
information

Hello, I tried adding HoF for a GitLab repository and it is not working as can be seen in this picture: https://imgur.com/Fs6HzFr.png The repository in question is this: https://gitlab.com/MangaD/hf-workshop

Allow setting color and background color, as well as resetting color, for standard error output.

There is a problem with the `setConsoleTitle` function. It uses `const char *` as string parameter for the print function when compiling with C++. This seems to be a problem...

On line 577 change: `unsigned int len = str_.size();` to: `unsigned int len = static_cast(str_.size());` On line 580 change: `unsigned int len = strlen(str);` to: `unsigned int len = (unsigned...

I can't seem to be able to activate the menu using the ALT key. Whenever I press it, nothing happens. I have set the titlebar settings as follows: ```js const...

bug

### Preflight Checklist * [x] I have read the [contribution documentation](https://github.com/electron-userland/electron-forge/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [code of conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project follows, as appropriate....

enhancement
help wanted
request/publisher

I get the following warning on my app: `(electron) 'setName function' is deprecated and will be removed. Please use 'name property' instead.` and: ```sh $ grep -rnw '.' -e 'setName'...

Is it possible to auto-complete file names on the file system? This is possible with readline and libedit.