Compare commits
No commits in common. "4ac2c06595bdd9be91f3cf97afeb6dae3dde2bfb" and "8bc2b5efe5ff20285b79e58a8d5733bbd3b58804" have entirely different histories.
4ac2c06595
...
8bc2b5efe5
5
init.zsh
5
init.zsh
@ -318,6 +318,11 @@ fi
|
|||||||
# Platform specific stuff
|
# Platform specific stuff
|
||||||
[ -f /usr/bin/pacman ] && source "${ZSH_CONFIG_DIR}/arch.zsh"
|
[ -f /usr/bin/pacman ] && source "${ZSH_CONFIG_DIR}/arch.zsh"
|
||||||
|
|
||||||
|
# Ros2 instll on arch
|
||||||
|
if [[ -v ZSH_ROS2_ROOT ]]; then
|
||||||
|
source "${ZSH_CONFIG_DIR}/lazy-ros2.zsh"
|
||||||
|
fi
|
||||||
|
|
||||||
# FZF Integration
|
# FZF Integration
|
||||||
load_plugin fzf-tab
|
load_plugin fzf-tab
|
||||||
# Disable sort when completing `git checkout`
|
# Disable sort when completing `git checkout`
|
||||||
|
37
lazy-ros2.zsh
Normal file
37
lazy-ros2.zsh
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# Lazy-load ros2 stuff
|
||||||
|
|
||||||
|
(( ${+ZSH_ROS2_ROOT} )) || return
|
||||||
|
|
||||||
|
# Define as a function so it can be overridden for speed
|
||||||
|
function zsh-load-ros2() {
|
||||||
|
source "${ZSH_ROS2_ROOT}/setup.zsh"
|
||||||
|
}
|
||||||
|
|
||||||
|
local defined=()
|
||||||
|
|
||||||
|
local file
|
||||||
|
for file in "${ZSH_ROS2_ROOT}/bin/"*; do
|
||||||
|
local base="${file:t}"
|
||||||
|
hash -- "${base}" 2>/dev/null && continue
|
||||||
|
defined+=("${base}")
|
||||||
|
done
|
||||||
|
|
||||||
|
local undef_args=() def
|
||||||
|
for def in ${defined}; do
|
||||||
|
undef_args+=("${(q)def}")
|
||||||
|
done
|
||||||
|
|
||||||
|
local exec
|
||||||
|
for exec in ${defined}; do
|
||||||
|
eval "
|
||||||
|
function \${(q)exec} {
|
||||||
|
printf 'Setting up ros2 with \"%s\"...\n\n' \\
|
||||||
|
\"\${(q)ZSH_ROS2_ROOT%/}/setup.zsh\"
|
||||||
|
unfunction ${undef_args}
|
||||||
|
zsh-load-ros2 ||
|
||||||
|
{ echo 'Failed to load ros2 libraries!'; return }
|
||||||
|
(( \${#} == 0 )) && ${(q)exec} || ${(q)exec} \"\${@}\"
|
||||||
|
}"
|
||||||
|
done
|
||||||
|
|
||||||
|
unset exec def file defined undef_args
|
@ -1 +1 @@
|
|||||||
Subproject commit e61c9c14d6978191762e9586a0c882114e49221d
|
Subproject commit 0adf2f053ece56262ad8a173678add97c8ca4042
|
Loading…
x
Reference in New Issue
Block a user