Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions rosidl_cli/colcon.pkg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"hooks": [
"share/rosidl_cli/environment/rosidl-argcomplete.bash",
"share/rosidl_cli/environment/rosidl-argcomplete.zsh"
]
}
9 changes: 7 additions & 2 deletions rosidl_cli/completion/rosidl-argcomplete.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

autoload -U +X compinit && compinit
autoload -U +X bashcompinit && bashcompinit
if ! type compdef > /dev/null 2>&1; then
autoload -U +X compinit && compinit
fi

if ! type complete > /dev/null 2>&1; then
autoload -U +X bashcompinit && bashcompinit
fi

# Get this scripts directory
__rosidl_cli_completion_dir=${0:a:h}
Expand Down