Ruby學(xué)習(xí)筆記二幫助生成Vim添加代碼頭的代碼
腳本語言真是太強(qiáng)了。
我的目的是把我的默認(rèn)代碼頭功能加到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行就搞定了字符串的處理。簡(jiǎn)直爽爆了。
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
end
end
load("DefaultCode.cpp")
最后人工把頭尾一加,搞定了。
"F4 添加文件頭
map <F4> :call TitleDet()<cr>
function AddTitle()
let l = 0
let 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
"更新最近修改時(shí)間和文件名
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這個(gè)單詞,
"如果沒有的話,代表沒有添加過作者信息,需要新添加;
"如果有的話,那么只需要更新即可
function TitleDet()
let n = 2
"默認(rèn)為添加
let line = getline(n)
let str = '^* COPYRIGHT NOTICE$'
if line =~ str
call UpdateTitle()
return
endif
call AddTitle()
endfunction
- Windows下利用Gvim寫PHP產(chǎn)生中文亂碼問題解決方法
- 在vim中添加perl注釋時(shí)無法對(duì)齊問題的解決方法
- VIM中設(shè)置php自動(dòng)縮進(jìn)為4個(gè)空格的方法詳解
- Vim命令高級(jí)用法
- ruby開發(fā)vim插件小結(jié)
- PHP語法自動(dòng)檢查的Vim插件
- 使用python開發(fā)vim插件及心得分享
- Python 自動(dòng)補(bǔ)全(vim)
- 使用Python編寫vim插件的簡(jiǎn)單示例
- 搭建Vim為自定義的PHP開發(fā)工具的一些技巧
- PHP工程師VIM配置分享
- 手把手教你將Vim改裝成一個(gè)IDE編程環(huán)境(圖文) 吳垠
相關(guān)文章
Ruby使用C++擴(kuò)展實(shí)例(含C++擴(kuò)展代碼示例)
這篇文章主要介紹了Ruby使用C++擴(kuò)展實(shí)例,含C++擴(kuò)展實(shí)現(xiàn)代碼,本文可作為Ruby中使用C++擴(kuò)展的入門教程,需要的朋友可以參考下2014-09-09
ruby實(shí)現(xiàn)網(wǎng)頁(yè)圖片抓取
本文給大家分享的是個(gè)人使用ruby編寫的抓取網(wǎng)頁(yè)圖片的代碼,十分的簡(jiǎn)單實(shí)用,有需要的小伙伴可以參考下。2015-06-06
淺談Ruby on Rails下的rake與數(shù)據(jù)庫(kù)數(shù)據(jù)遷移操作
Rails中的Migration相對(duì)來說更適合做數(shù)據(jù)庫(kù)的對(duì)象集合操作,而自動(dòng)化的rake則是一個(gè)較好的選擇,下面來淺談Ruby on Rails下的rake與數(shù)據(jù)庫(kù)數(shù)據(jù)遷移操作,需要的朋友可以參考下2016-06-06
Ruby環(huán)境下安裝使用bundler來管理多版本的gem
這篇文章主要介紹了Ruby環(huán)境下安裝使用bundler來管理多版本的gem的方法,舉了Ruby On Rails中的應(yīng)用實(shí)例來進(jìn)行演示,需要的朋友可以參考下2016-06-06
Ruby與Ruby on Rails框架環(huán)境搭建的簡(jiǎn)明教程
這篇文章主要介紹了Ruby與Ruby on Rails框架環(huán)境搭建的簡(jiǎn)明教程,包括RubyGems的升級(jí)與OpenSSL的支持等配置,需要的朋友可以參考下2016-05-05
Ruby中實(shí)現(xiàn)統(tǒng)計(jì)文件行數(shù)、單詞數(shù)和字符數(shù)
這篇文章主要介紹了Ruby中實(shí)現(xiàn)統(tǒng)計(jì)文件行數(shù)、單詞數(shù)和字符數(shù),本文是自定義的一個(gè)函數(shù),需要的朋友可以參考下2015-01-01
在阿里云 (aliyun) 服務(wù)器上搭建Ruby On Rails環(huán)境
最近總是在配置阿里云的服務(wù)器,遇到不少問題,現(xiàn)小結(jié)一下,供大家參考~~2014-06-06

