To install using Antibody, just add this in your ~/.zshrc
:
# your .zshrc file
antibody bundle mtxr/zsh-change-case
Install zsh-change-case
by cloning the repository:
$ git clone https://github.com/mtxr/zsh-change-case.git ${HOME}/.zsh-change-case
After cloning, just laod it to your ~/.zshrc
adding this line:
# your .zshrc file
. ${HOME}/.zsh-change-case
I recomend you to use the following bindkeys (inspired by VSCode and Sublime Text):
- Ctrl+K + Ctrl+U to uppercase
- Ctrl+K + Ctrl+L to lowercase
bindkey '^K^U' _mtxr-to-upper # Ctrl+K + Ctrl+U
bindkey '^K^L' _mtxr-to-lower # Ctrl+K + Ctrl+L
In case of trouble, you probably need to unbind Ctrl+K. Just add this before the bindings you will use:
bindkey -r '^K'