1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-02-13 05:59:46 +08:00

Compare commits

..

2 Commits

Author SHA1 Message Date
alps2006
5c22c5812e
feat(vi-mode): allow replacing on visual mode (#12006) 2023-10-24 14:00:26 +02:00
家鳖大帝
b7904ae548
fix(firewalld): remove (default) from the end of zone string (#11998) 2023-10-24 13:33:04 +02:00
2 changed files with 3 additions and 2 deletions

View File

@ -9,7 +9,7 @@ function fwl () {
zones=("${(@f)$(sudo firewall-cmd --get-active-zones | grep -v 'interfaces\|sources')}")
for i in $zones; do
sudo firewall-cmd --zone $i --list-all
sudo firewall-cmd --zone ${i/ \(default\)} --list-all
done
echo 'Direct Rules:'

View File

@ -154,7 +154,8 @@ wrap_clipboard_widgets copy \
vi-delete vi-delete-char vi-backward-delete-char
wrap_clipboard_widgets paste \
vi-put-{before,after}
vi-put-{before,after} \
put-replace-selection
unfunction wrap_clipboard_widgets