We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db0137d commit 9b4e8e8Copy full SHA for 9b4e8e8
autoload/cargo.vim
@@ -100,6 +100,22 @@ function! cargo#bench(args)
100
call cargo#cmd("bench " . a:args)
101
endfunction
102
103
+function! cargo#update(args)
104
+ call cargo#cmd("update " . a:args)
105
+endfunction
106
+
107
+function! cargo#search(args)
108
+ call cargo#cmd("search " . a:args)
109
110
111
+function! cargo#publish(args)
112
+ call cargo#cmd("publish " . a:args)
113
114
115
+function! cargo#install(args)
116
+ call cargo#cmd("install " . a:args)
117
118
119
function! cargo#runtarget(args)
120
let l:filename = expand('%:p')
121
let l:read_manifest = system('cargo read-manifest')
0 commit comments