Zsh is a shell designed for interactive use, although it is also a powerful scripting language.
0
votes
1answer
10 views
how to include aliases in zsh autocomplete?
Folks,
I use a set of aliases and it is annoying to have zsh ask me if I have misspelt it and offering me suggesting me alternatives.
I read some earlier posts about git autocomplete, but what I am ...
1
vote
2answers
46 views
git cat-file -p master^{tree} errors out in zsh
In gitscm.org documentation, under git objects chapter, it uses the command below, but trying it out gives me "zsh: no matches found: master^{tree}". Any idea what's incorrect?
git cat-file -p ...
0
votes
2answers
38 views
zsh prompt uses variables names (despite unsetting AUTO_NAME_DIRS)
I have assigned a directory to a variable in my .zshrc file like so:
export DOTFILES=$HOME/.dotfiles
Now my zsh prompt reads ~DOTFILES when I am in the .dotfiles directory. I did some research (in ...
0
votes
0answers
15 views
How to enable sudo autocompletion for sudo in zsh [closed]
Zsh autocompletion is fantastic. But it didn't work when it comes to sudo. I Googled and added the following line in my .zshrc file. However, it still didn't work.
zstyle ':completion:*:sudo::' ...
0
votes
2answers
27 views
Source a file in zsh when entering a directory
Is there a way to source a particular file to set up the environment when entering a particular directory? Sort of like what rvm does, but more general.
0
votes
2answers
26 views
zsh - read user input with default value - empty input not empty?
I wrote a function that asks for user input like this:
function is_confirmed {
read -rs -k 1 ans
if [[ "${ans}" == "n" || "${ans}" == "N" ]]; then
printf "No\n"
return 1
...
0
votes
1answer
24 views
How can I use sed to output the current and previous directory while including a tilde if $HOME is one directory further?
Currently my zsh prompt utilizes $'%2~ %%' to output the current and previous directory before just displaying % as my input prompt. For example, if I'm in /Users/david/Documents/Code/project, my ...
0
votes
1answer
16 views
How can I change icicle-search-context-regexp variable in Emacs3 icicles
I'd like to use icicle-comint-search in shell-mode, but it used to be failed with error message like this
byte-code: No search contexts for `\^\[\^#\$%>
]\*\[#\$%>] \*\\S-\.\*'
Of course my ...
1
vote
1answer
25 views
how to patch git completion that is missing the difftool command
My system's git autocompletion is pretty good, but lacks completion of at least git difftool and git diffmerge. I mean that if I type git diff<TAB> on my prompt what I get is the following:
$ g ...
0
votes
3answers
32 views
Zsh / Shell - how to assign something to a variable quietly?
I'm having trouble assigning a value quietly ( no console output ) to a variable.
I want to assign npm list -gto a variable but without any console output, so I did this:
npm_list=$(npm list -g ...
0
votes
0answers
18 views
Emacs, Zsh and Ansi-Term — weird chars [migrated]
My issue is illustrated in the follow images:
This is the visual representation I get in my iTerm of my Zsh shell, with the same font as used in Emacs:
This my my Emacs output using ansi-term:
...
0
votes
1answer
20 views
Simple dotfiles install in zsh
How do I symlink all dotfiles on a dir to my home dir using zsh? i.e. I have a dir with .gitconfig in it, and I'd like to symlink it to ~/.gitconfig.
Thanks!
1
vote
0answers
17 views
How to make zsh completion like bash [migrated]
I am using zsh. It is a nice shell, especially for the auto completion function. But, when I press tab, it always auto fill with the first completion option. For example, there are two files in my ...
1
vote
3answers
32 views
How to read input, save it to a dynamically-named variable and check if given input was empty
Consider a generic ask() function that asks the user a question, reads the input and saves it in a variable named according to one of the function's arguments.
ask() {
local question="$1"
...
0
votes
1answer
14 views
Why does zsh lose autocomplete for file paths when I'm in a flag and how can I get it back?
The program that I am trying to run takes the form program_name --arg=/some/path/goes/here, but zsh cannot perform tab completion on that path when it is in the argument flag. I end up having to type ...
0
votes
0answers
27 views
How to use Zsh with msysGit
msysGit comes with an explorer shell extension showing Git Bash Here in the context menu of a folder which opens a Bash prompt in the selected folder.
How can I use Zsh instead of Bash as the shell ...
0
votes
1answer
27 views
How to use an alias or function in zsh to check for a socket and run the appropriate command?
I have an interesting problem when using Zeus with Rails. My shell script writing is lacking to say the least.
Ok, so zeus boots a rails app in under a second and makes tests etc. much faster. ...
0
votes
1answer
31 views
why is 'nocorrect' being ignored by ZSH?
I have a script that invokes a new shell and runs a generated command. This is what a typical command looks like:
exec nocorrect vim file:///rails_app/app/controllers/cow_controller.rb +214
I ...
1
vote
1answer
38 views
Blank lines in zsh loop
Running a loop in zsh like the one below gives blank lines in the output (ignore the triviality of this loop; it's just an example. A more realistic example might be running mysql -s -e "show ...
0
votes
1answer
29 views
! character to invoke the search in zsh
There is a very nice feature that I love in ZSH. When you type the ! character followed by a word + TAB key, it makes the shell to pull up the last command beginning with the word followed by the ! ...
2
votes
3answers
71 views
How to split a string and extract the all-uppercase part in bash?
Consider the following example variables in bash:
PET="cat/DOG/hamster"
FOOD="soup/soup/PIZZA"
SUBJECT="MATH/physics/biology"
How can I split any of those strings by a slash, extract the part ...
0
votes
1answer
39 views
zsh: How to backspace through to the previous line?
When I type a multiline command like
$ for i in 1 2 3; do
for> echo $i
for> done
1
2
3
and then recall the command with up-arrow, backspacing stops at the start of the last line (i.e. after ...
1
vote
2answers
36 views
What makes Ctrl+q work in zsh
I'm a zsh user who started off with a plain oh-my-zsh configuration and now I try to learn zsh by importing the parts I care about from oh-my-zsh into my own .zshrc and then completely remove ...
0
votes
2answers
30 views
Rename a file in a directory without retyping the directory name
Say we have a file test.txt in my_directory that I want to rename to yeah.txt.
Is there a way with zsh (or even just bash, just to know) to avoid retyping my_directory?
I find the following a bit ...
0
votes
1answer
54 views
zsh: Heroku toolbelt not found anymore
I recently switched to zsh, pretty happy about that. Except that the heroku toolbelt doesn't work anymore ...
Here is what I have when I type heroku -v :
...
0
votes
0answers
48 views
Zsh and environment variable : how to track changes? [closed]
How can I control or trace the mutations made on my zsh environment ?
Here is the problem :
When I edit a brew formula, it uses vim as an editor.
Which makes sense as I have
~ ❯❯❯ env
EDITOR=vim
...
0
votes
0answers
8 views
bind ctrl+insert in zsh? [migrated]
What key combo do I use to bind ctrl+insert in my zshrc? I tried entering quoted-insert mode (ctrl+V) but pressing ctrl+insert does not output anything.
1
vote
1answer
45 views
How does one enable system paste in vim using zsh shell in Ubuntu? [closed]
I've recently changed shell from bash to zsh and I'm having a problem in vim, in that my system paste no longer works. Before changing shell, I was able to paste from my system clipboard using =+p but ...
2
votes
0answers
317 views
using zsh shell to install ruby-2.0.0-195 doesn't work
sorry this is my first time to post my question here. I am currently using zsh shell and I keep having trouble with installing ruby. While I run rvm install ruby-2.0.0-p195, it shows the error message ...
0
votes
2answers
48 views
Zsh trouble when using echo with color/formatting characters
I'm just switch to zsh and now adapting the alias in which was printing some text (in color) along with a command.
I have been trying to use the $fg array var, but there is a side effect, all the ...
1
vote
2answers
45 views
getting the pid of a process in zsh
I am coding on a Red Hat Machine and I want to get the process id of a process in the interactive mode as well as the in a script.
In bash 'pidof' works but not in zsh.
What would be the equivalent ...
0
votes
1answer
82 views
ZSH – Change color in tty [closed]
I use zsh in tty (so without X) and I would like to know if it is possible to change the colors. Not the prompt colors, but by example the "htop" colors, or the colors of directory and file with ls ...
0
votes
1answer
30 views
dotfiles errors | /Users/marif/.aliases:79: bad option: -t
I am pretty new to OSX but everything is almost settled down, I had configured Z and ZSH earlier and lately come to know about paulirish dot files from https://github.com/paulirish/dotfiles and ...
0
votes
3answers
43 views
Make stdin and stderr visible
is there a way to make stdin and stderr visible in unix bash/zsh/whatever?
Maybe turn the stderr output to red or something like that.
It is always a pain if you are figuring out why you can't parse ...
1
vote
1answer
42 views
How to make select operator behave similar to the bash in zsh
I'm trying to use next code in zsh:
select var in $list; do
if [ x"$var" != x"" ]; then
echo $var
return
fi
done
In bash that would result to something like this:
First
Second
Third
...
0
votes
0answers
17 views
How can I reverse the history numbering?
I am a unix addict, and many of the machines I use (at home and at work) are now quickly passing the 10,000 command mark. I like to keep all of the commands I issue readily available which is why I ...
1
vote
2answers
43 views
How to convert ZSH ls timestamps to %Y-%m-%d?
Anyone know how to convert zsh ls timestamps to %Y-%m-%d?
From this (zsh):
host1% ls -lrt | tail -1
-rw-r----- 1 user group 4802 Mar 21 15:41 get.csv
To this (bash):
user@host1:/home/user> ls ...
1
vote
4answers
98 views
$SGE_TASK_ID not getting set with qsub array grid job
With a very simple zsh script:
#!/bin/zsh
nums=(1 2 3)
num=$nums[$SGE_TASK_ID]
$SGE_TASK_ID is the sun-grid engine task id. I'm using qsub to submit an array of jobs.
I am following what is ...
2
votes
3answers
46 views
How to compare contents of two directoriers in bash?
Lets say there are two dirs
/path1 and /path2
for example
/path1/bin
/path1/lib
/path1/...
/path2/bin
/path2/lib
/path2/...
And one needs to know if they are identical by contents (names of ...
0
votes
1answer
24 views
Close socket opened by zsocket in zsh
I've done:
% zmodload zsh/net/socket
% zsocket -d 20 MY_SOCKET
# used the socket a bit
Now how do I close the socket's FD? (FD 20 here.)
0
votes
0answers
46 views
bash/zsh: which files get loaded at login?
Today when I checked my $PATH variable in Z shell (on OS X 10.8.3), I got the following result (I broke the lines for clarity):
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:
...
2
votes
1answer
43 views
Zsh escape backslash
I noticed a while ago already that in zsh, you can get a \ by typing \\ like in bash.
> echo \\
\
But, there's a strange phenomenon with 4 backlashes in zsh.
bash$ echo \\\\
\\
zsh> echo ...
0
votes
0answers
23 views
ZSH cloudapp command not working
I've installed cloudapp_api multiple times with:
sudo gem install cloudapp_api
I just get this tho when running cloudapp wat.jpeg
"You need to install cloudapp_api: gem install cloudapp_api"
I ...
3
votes
2answers
70 views
zsh - show if git branch have unpushed commitments
Actually Im using a slightly modified version of the oh my zsh theme blinks. It show a SSH statement just for optical difference to my local terminal.
Also it show the branch and a little star if ...
0
votes
0answers
54 views
ZSH tab completion menu [closed]
I've just started using ZSH on OS X with oh-my-zsh and am having an issue with tab completion.
it seems to work okay but OS X always plays an alert beep on the first tab if it doesn't find an exact ...
0
votes
1answer
67 views
Oh My ZSH & Vim Insert Cursor
Currently using Oh My ZSH, however, when using Vim in INSERT mode, at the end of a line, when using arrows to navigate, the insert mode ends when you hit the end of the line, making it impossible to ...
1
vote
2answers
34 views
How to read 1 symbol in zsh?
I need to get exactly one character from console and not print it.
I've tried to use read -en 1 as I did using bash. But this doesn't work at all.
And vared doesn't seem to have such option.
How to ...
2
votes
1answer
45 views
zsh: show completion group names
I'm writing some zsh completions and am stuck on how to have multiple groups of completions.
I added the group name with the -J parameter docs.
compadd -J group1 "$@" completion1 completion2
compadd ...
1
vote
2answers
122 views
replace strings in zsh command line
I use zsh and emacs keybindings. Some time I need to execute the same command with different input. The input ususally have common substrings. Is there an easy way to replace parts of previous command ...
1
vote
2answers
69 views
Remove current directory from variable containing path
I have a variable which contains the current directory including several parents. For example:
$ pwd
/Users/simont/repositories
$ echo $current
~/repositories
I can strip everything except the ...


