免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3259 | 回复: 5
打印 上一主题 下一主题

洒家,闲来无事改写了vimssh插件,支持gvim自动上传代码到test机器 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-08-07 22:07 |只看该作者 |倒序浏览
gvim写代码功能强,很顺手,能自动上传到test机器,岂不是美哉?
请看附件

论坛徽章:
0
2 [报告]
发表于 2011-08-07 22:12 |只看该作者
vimssh插件



command -nargs=* Func :call TFunc(<f-args>)   
function! TFunc(...)   
     "这里是用来传当前正在编辑的文件   
     let s:localFuncDir = "D:/hr/www/"   
     let s:remoteFuncDir = "/home/test/"   
    if a:0 == 0   
         let s:localFuncDirLen = strlen(s:localFuncDir)   
         let s:localDir = getcwd()   
         let s:localDir = substitute(s:localDir , "\\ , "/" , "g")   
         let s:workDir = strpart(s:localDir , s:localFuncDirLen)   
         let s:filename = bufname("%")   
         let s:remoteDir = s:remoteFuncDir . s:workDir   
         let s:scpCmd = "pscp -pw pwdpath " . s:localDir . "/" . s:filename . " andrew@192.168.1.1:" . s:remoteDir . "/" . s:filename   
         echo s:scpCmd   
         echo system(s:scpCmd)   
         echo system("D:/hr/www/ " .s:workDir . "/". s:filename)   
    else   
     "这里是用来上传手动指定的多个文件或目录   
         let index = 1   
        while index <= a:0   
             let s:scpCmd = "pscp   -pw pwdpath "   
            if(isdirectory(s:localFuncDir . a:{index}))   
                 let s:scpCmd .= "-r "   
                if(strridx(a:{index} , "/"))   
                     let s:scpCmd .= s:localFuncDir . a:{index} . " andrew@192.168.1.1:" . s:remoteFuncDir . strpart(a:{index} , 0 , strridx(a:{index} , "/"))   
                else   
                     let s:scpCmd .= s:localFuncDir . a:{index} . " andrew@192.168.1.1:" . s:remoteFuncDir   
                 endif   
            else   
                 let s:scpCmd .= s:localFuncDir . a:{index} . "andrew@192.168.1.1:" . s:remoteFuncDir . a:{index}   
             endif   
             echo s:scpCmd   
             echo system(s:scpCmd)   
             echo system("D:/hr/www/ " . a:{index})   
             let index = index +1   
         endwhile   
     endif   
endfunction














二   辅助上传bat
@echo off  
echo cd /home/test;./rsync_test %1 > d:\aa\cc   
putty -pw pwdpath -m d:\aa\cc andrew@192.168.1.1

论坛徽章:
0
3 [报告]
发表于 2011-08-07 22:13 |只看该作者
vimssh插件



command -nargs=* Func :call TFunc(<f-args>)   
function! TFunc(...)   
     "这里是用来传当前正在编辑的文件   
     let s:localFuncDir = "D:/hr/www/"   
     let s:remoteFuncDir = "/home/test/"   
    if a:0 == 0   
         let s:localFuncDirLen = strlen(s:localFuncDir)   
         let s:localDir = getcwd()   
         let s:localDir = substitute(s:localDir , "\\ , "/" , "g")   
         let s:workDir = strpart(s:localDir , s:localFuncDirLen)   
         let s:filename = bufname("%")   
         let s:remoteDir = s:remoteFuncDir . s:workDir   
         let s:scpCmd = "pscp -pw pwdpath " . s:localDir . "/" . s:filename . " andrew@192.168.1.1:" . s:remoteDir . "/" . s:filename   
         echo s:scpCmd   
         echo system(s:scpCmd)   
         echo system("D:/hr/www/ " .s:workDir . "/". s:filename)   
    else   
     "这里是用来上传手动指定的多个文件或目录   
         let index = 1   
        while index <= a:0   
             let s:scpCmd = "pscp   -pw pwdpath "   
            if(isdirectory(s:localFuncDir . a:{index}))   
                 let s:scpCmd .= "-r "   
                if(strridx(a:{index} , "/"))   
                     let s:scpCmd .= s:localFuncDir . a:{index} . " andrew@192.168.1.1:" . s:remoteFuncDir . strpart(a:{index} , 0 , strridx(a:{index} , "/"))   
                else   
                     let s:scpCmd .= s:localFuncDir . a:{index} . " andrew@192.168.1.1:" . s:remoteFuncDir   
                 endif   
            else   
                 let s:scpCmd .= s:localFuncDir . a:{index} . "andrew@192.168.1.1:" . s:remoteFuncDir . a:{index}   
             endif   
             echo s:scpCmd   
             echo system(s:scpCmd)   
             echo system("D:/hr/www/ " . a:{index})   
             let index = index +1   
         endwhile   
     endif   
endfunction














二   辅助上传bat
@echo off  
echo cd /home/test;./rsync_test %1 > d:\aa\cc   
putty -pw pwdpath -m d:\aa\cc andrew@192.168.1.1

论坛徽章:
1
摩羯座
日期:2013-10-23 12:41:02
4 [报告]
发表于 2011-08-08 09:15 |只看该作者
有空测试一下,看看效果

论坛徽章:
0
5 [报告]
发表于 2011-08-08 11:35 |只看该作者
不错

论坛徽章:
0
6 [报告]
发表于 2011-08-31 16:38 |只看该作者
俺的插件
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP