Questions tagged [oh-my-zsh]
oh-my-zsh is an addon to zsh that adds additional functions, autocomplete helpers and themes.
290 questions
1 vote
1 answer
91 views
Why doesn’t zsh autocomplete .java source files when using java MyFile.java?
Since Java 10 as I recall, we can run Java source files directly from the command line: bash $ java Math.java The JVM compiles and executes the file automatically. However, in zsh, tab autocompletion ...
0 votes
1 answer
71 views
local zsh history on up-arrow, global zsh-history on ctrl-R
I am looking for a very specific behavior in my Zsh terminals. I have multiple terminal windows open at the same time. On each terminal window, if I hit the up arrow, I'd like for it to go up through ...
1 vote
1 answer
130 views
Zsh: completion not working for self-defined function based on git
In my .zshrc file I have written a function based on git log: lg() { git log \ --abbrev=12 \ --graph \ --oneline \ --color=always \ --format="%C(cyan)%h %C(blue)%ar %C(...
0 votes
0 answers
908 views
How to debug/analyze a slow zsh prompt (oh-my-zsh)?
I'm using oh-my-zsh, and it used to work well until yesterday. Today, the prompt itself is incredibly slow: When I type a character it can take over a second until it appears on the screen (and the ...
0 votes
2 answers
260 views
Fedora SSH client sends RST after 3-way-handshake
I have a client running Fedora 38 and OpenSSH_9.0p1, OpenSSL 3.0.9 30 May 2023. The server is an old Buffalo NAS running Debian 11.8 Bulleye, it has OpenSSH_8.4p1 Debian-5+deb11u3 and OpenSSL 1.1.1w ...
0 votes
1 answer
318 views
OpenFOAM powerlevel10k integration error
I am trying to learn linux to become familiar with opensource CFD tool OpenFOAM. I did everything according to the installation guide and everything went fine. In Bash I had to add the line source /...
-1 votes
1 answer
2k views
How to Add Space or Padding to Terminal Output?
I don't really know what would be responsible for this. I would bet on my terminal emulator itself (mine is Kitty), but it might be a Zsh (or Oh My Zsh) or Powerlevel10k responsibility. Anyways, what ...
0 votes
1 answer
352 views
Using grep with ps and column width specification
I'm trying to limit the column width of the command column when running a ps command, but also trying to pipe that output into a grep command. However, this is not working. This runs fine: ps -eo pid,...