The Wayback Machine - http://web.archive.org/web/20201118055801/https://github.com/topics/terminal?l=rust
Skip to content
#

Terminal

terminal logo

Terminal is a serial computer interface for text entry and display. Instruction given to perform a task are called commands. Current computers (GUI based) uses terminal emulators such as Unix shell, BASH shell, command prompt.

Here are 250 public repositories matching this topic...

bat
sharkdp
sharkdp commented Oct 3, 2020

With all the recent news about Hacktoberfest I thought it would be a good idea to point out good beginner issues that would be actually helpful for bat. In the past years, I have actually experienced Hacktoberfest as a really great event - both as a contributor as well as a maintainer.

As of recently, bat has a set of syntax highlighting regress

blueray453
blueray453 commented Oct 22, 2020

Describe the bug you encountered:

Though the folder has few files without extension, but the following command returns nothing.

$ fd -t f -e ''

Describe what you expected to happen:

I expected to have a output ~similar to the output of find . -type f ! -name "*.*"

What version of fd are you using?
fd 8.1.1

Which operating system / distribution are you on?

spotify-tui
hyperfine
sharkdp
sharkdp commented Nov 5, 2020

If running a benchmark with --ignore-failure, it might be interesting to know if some of the commands actually failed.

For example, consider a long running compile-time benchmark:

hyperfine \
  --runs 3 \
  --ignore-failure \
  --parameter-list git_tag "v0.1,v0.2,v0.3,v0.4,v0.4.1,v0.5" \
  --prepare "git checkout --force {git_tag}; make clean" \
  --export-json "compile_time.j
j-tai
j-tai commented Jul 23, 2020

First: is this a bug report? A suggestion? Or asking for help? Bug report/suggestion

Problem description

For a &mut ProgressBar, there are no methods to set its min and max values. The only methods to change their values (min(self, usize), max(self, usize)) take ownership of the ProgressBar, which is not possible if you have a reference.

Workaround: to gain ownership, create a

diskonaut
You can’t perform that action at this time.