X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/cb452b5b04a3b73b283280634214cafca1cfaeda..d6d5dc43533a68afecbcfbf6c93a4fce937d19ae:/vim/ultisnips/rospy.snippets diff --git a/vim/ultisnips/rospy.snippets b/vim/ultisnips/rospy.snippets new file mode 100644 index 0000000..e303186 --- /dev/null +++ b/vim/ultisnips/rospy.snippets @@ -0,0 +1,19 @@ +snippet debug "Log Debug" b +rospy.logdebug(${0:"message"}) +endsnippet + +snippet info "Log Info" b +rospy.loginfo(${0:"message"}) +endsnippet + +snippet warn "Log Warning" b +rospy.logwarn(${0:"message"}) +endsnippet + +snippet err "Log Error" b +rospy.logerr(${0:"message"}) +endsnippet + +snippet fatal "Log Fatal" b +rospy.logfatal(${0:"message"}) +endsnippet