-
Updated
Feb 27, 2021 - Python
Command line interface
Before there were graphical user interfaces, command-line interfaces were used to issue commands to a computer. Programs that handle the user interface are called command language interpreters, often known as a shell. A CLI may give a user more control over the computer and programs they wish to execute.
Here are 21,514 public repositories matching this topic...
ng update on windows fails when cli version wants to preinstall | loader.js | Cannot find module
-
Updated
Feb 18, 2021 - Rust
Hi, I've found the following cheatsheet :
In the README you explain that there must be an edit button in the page and a github button to access the sheet but as you can see it doesn't appear here.
Thx ;)
Describe the bug
Creating a Gist using the gh
command-line interface does not preserve the
contents of binary files.
~ $ gh --version
gh version 1.5.0 (2021-01-21)
https://github.com/cli/cli/releases/tag/v1.5.0
Steps to reproduce the behavior
Create a Gist with a binary file using gh gist create /path/to/binary-file
.
I have successfully reproduced this behavio
GenMarkdownTreeCustom has a way to a header (filePrepender
arg), however there is not a first class way to add a footer.
Is your feature request related to a problem? Please describe.
Currently the git log in the pane only shows <short commit> <message>
, I'd like that to be configurable as the log commit message in the full sized panel shows
Describe the solution you'd like
I'd like to have the git log message in the pane be configurable in the same way that the branchLogCmd
is configurable
**Des
-
Updated
Feb 28, 2021 - JavaScript
It's always a good idea to work on documentation. I think it would also be good to restructure the README:
- Add a quick link section at the top of the readme (see https://github.com/sharkdp/bat)
- Extend the tutorial (rename "How to use"?)
- Move the "Parallel command execution" section inside the "How to use" section). See also: #605
- Move "Installation" section below the
-
Updated
Feb 23, 2021 - JavaScript
-
Updated
Feb 2, 2021 - TypeScript
-
Updated
Feb 28, 2021 - JavaScript
-
Updated
Feb 26, 2021 - Go
-
Updated
Jan 29, 2021 - JavaScript
-
Updated
Feb 25, 2021
-
Updated
Feb 28, 2021 - C
-
Updated
Feb 28, 2021 - TypeScript
...this boilerplate is awesome, thank you for sharing it guys
-
Updated
Feb 28, 2021 - C
What about adding sort option to choice?
Sometimes it's better to have choices in original order (e.g. python sorts russian words in wrong order)
https://github.com/pallets/click/blob/f537a208591088499b388b06b2aca4efd5445119/click/_bashcomplete.py#L265
Currently, each argument to fx treated as an anonymous function. Here is an example:
fx 'groupBy("commit.author.name")' 'mapValues(size)' toPairs 'sortBy(1)' reverse 'take(10)' fromPairs
But this requires a lot of '
quotes. My idea is to split the argument by whitespaces
. So next will be possible to write:
fx 'groupBy("commit.author.name") mapValues(size) toPairs so