Ruby學習筆記二協助產生Vim添加代碼頭的代碼_ruby專題

來源:互聯網
上載者:User

指令碼語言真是太強了。

我的目的是把我的預設代碼頭功能加到Vim裡面。

/*******************************************************************************  COPYRIGHT NOTICE*  Copyright (c) 2014 All rights reserved*  ----Stay Hungry Stay Foolish----**  @author  : Shen*  @name   :*  @file   : G:\My Source Code\DefaultCode.cpp*  @date   : 2014/06/14 02:44*  @algorithm :******************************************************************************///#pragma GCC optimize ("O2")//#pragma comment(linker, "/STACK:1024000000,1024000000")#include <bits/stdc++.h>#include <cmath>#include <cstdio>#include <string>#include <cstring>#include <iomanip>#include <iostream>#include <algorithm>using namespace std;template<class T>inline bool updateMin(T& a, T b){ return a > b ? a = b, 1: 0; }template<class T>inline bool updateMax(T& a, T b){ return a < b ? a = b, 1: 0; }/*//STL#include <map>#include <vector>#include <list>#include <stack>#include <deque>#include <queue>*//*//Computational Geometry#include <complex>#define x real()#define y imag()typedef complex<double> point;*/typedef long long int64;void solve(){}int main(){ return 0;}

用Ruby10行就搞定了字串的處理。簡直爽爆了。

def load( path ) File.foreach(path) do |line|  line["\n"] = ""  str = "let l = l + 1 | call setline(l, \'#{line}\')"  File.open("s.txt", "a") do |f|   f << "#{str}\n"  end endendload("DefaultCode.cpp")

最後人工把頭尾一加,搞定了。

"F4 添加檔案頭map <F4> :call TitleDet()<cr>function AddTitle()let l = 0let l = l + 1 | call setline(l, '/******************************************************************************')let l = l + 1 | call setline(l, '*  COPYRIGHT NOTICE')let l = l + 1 | call setline(l, '*  Copyright (c) 2014 All rights reserved')let l = l + 1 | call setline(l, '*  ----Stay Hungry Stay Foolish----')let l = l + 1 | call setline(l, '*')let l = l + 1 | call setline(l, '*  @author  : Shen')let l = l + 1 | call setline(l, '*  @name   :')let l = l + 1 | call setline(l, '*  @file   : '.expand("%:p:h")."\\".expand("%:t"))let l = l + 1 | call setline(l, '*  @date   : '.strftime("%Y/%m/%d %H:%M"))let l = l + 1 | call setline(l, '*  @algorithm :')let l = l + 1 | call setline(l, '******************************************************************************/')let l = l + 1 | call setline(l, '')let l = l + 1 | call setline(l, '//#pragma GCC optimize ("O2")')let l = l + 1 | call setline(l, '//#pragma comment(linker, "/STACK:1024000000,1024000000")')let l = l + 1 | call setline(l, '')let l = l + 1 | call setline(l, '#include <bits/stdc++.h>')let l = l + 1 | call setline(l, '#include <cmath>')let l = l + 1 | call setline(l, '#include <cstdio>')let l = l + 1 | call setline(l, '#include <string>')let l = l + 1 | call setline(l, '#include <cstring>')let l = l + 1 | call setline(l, '#include <iomanip>')let l = l + 1 | call setline(l, '#include <iostream>')let l = l + 1 | call setline(l, '#include <algorithm>')let l = l + 1 | call setline(l, 'using namespace std;')let l = l + 1 | call setline(l, 'template<class T>inline bool updateMin(T& a, T b){ return a > b ? a = b, 1: 0; }')let l = l + 1 | call setline(l, 'template<class T>inline bool updateMax(T& a, T b){ return a < b ? a = b, 1: 0; }')let l = l + 1 | call setline(l, '')let l = l + 1 | call setline(l, '/*//STL')let l = l + 1 | call setline(l, '#include <map>')let l = l + 1 | call setline(l, '#include <vector>')let l = l + 1 | call setline(l, '#include <list>')let l = l + 1 | call setline(l, '#include <stack>')let l = l + 1 | call setline(l, '#include <deque>')let l = l + 1 | call setline(l, '#include <queue>')let l = l + 1 | call setline(l, '*/')let l = l + 1 | call setline(l, '')let l = l + 1 | call setline(l, '/*//Computational Geometry')let l = l + 1 | call setline(l, '#include <complex>')let l = l + 1 | call setline(l, '#define x real()')let l = l + 1 | call setline(l, '#define y imag()')let l = l + 1 | call setline(l, 'typedef complex<double> point;')let l = l + 1 | call setline(l, '*/')let l = l + 1 | call setline(l, '')let l = l + 1 | call setline(l, 'typedef long long int64;')let l = l + 1 | call setline(l, '')let l = l + 1 | call setline(l, 'void solve()')let l = l + 1 | call setline(l, '{')let l = l + 1 | call setline(l, ' ')let l = l + 1 | call setline(l, '}')let l = l + 1 | call setline(l, '')let l = l + 1 | call setline(l, 'int main()')let l = l + 1 | call setline(l, '{')let l = l + 1 | call setline(l, ' ')let l = l + 1 | call setline(l, ' return 0;')let l = l + 1 | call setline(l, '}')endfunction"更新最近修改時間和檔案名稱function UpdateTitle() call setline(8, '*  @file   : '.expand("%:p:h")."\\".expand("%:t")) call setline(9, '*  @date   : '.strftime("%Y/%m/%d %H:%M"))endfunction"判斷前10行代碼裡面,是否有COPYRIGHT NOTICE這個單詞,"如果沒有的話,代表沒有添加過作者資訊,需要新添加;"如果有的話,那麼只需要更新即可function TitleDet() let n = 2 "預設為添加  let line = getline(n)  let str = '^*  COPYRIGHT NOTICE$'  if line =~ str   call UpdateTitle()   return  endif call AddTitle()endfunction

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.