From 30d09cf446bdf556aa5e59205ea2cc98bc839355 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 18 Sep 2013 16:53:46 +0000 Subject: Convert more posts to markdown. --- _posts/2008-06-15-rtgi-recrute.md | 14 ++++++++++++ _posts/2008-06-15-rtgi-recrute.textile | 14 ------------ ...008-06-17-vim-function-for-creating-new-task.md | 22 ++++++++++++++++++ ...6-17-vim-function-for-creating-new-task.textile | 26 ---------------------- 4 files changed, 36 insertions(+), 40 deletions(-) create mode 100644 _posts/2008-06-15-rtgi-recrute.md delete mode 100644 _posts/2008-06-15-rtgi-recrute.textile create mode 100644 _posts/2008-06-17-vim-function-for-creating-new-task.md delete mode 100644 _posts/2008-06-17-vim-function-for-creating-new-task.textile diff --git a/_posts/2008-06-15-rtgi-recrute.md b/_posts/2008-06-15-rtgi-recrute.md new file mode 100644 index 0000000..3092fd1 --- /dev/null +++ b/_posts/2008-06-15-rtgi-recrute.md @@ -0,0 +1,14 @@ +--- +layout: post +title: RTGI recrute +summary: In which RTGI is hiring. +--- + +[RTGI](http://rtgi.fr) recrute pour 2 postes differents. Le premier, pour un poste "d'écologue", le second pour un poste développeur. + +Vous pouvez voir differents travaux realises par RTGI ici: + +* [blogopole](http://www.blogopole.fr/) +* [segoland](http://www.visualcomplexity.com/vc/project.cfm?id=473) +* [blogopole bis](http://www.visualcomplexity.com/vc/project.cfm?id=400) +* [PW08](http://www.visualcomplexity.com/vc/project.cfm?id=542) \ No newline at end of file diff --git a/_posts/2008-06-15-rtgi-recrute.textile b/_posts/2008-06-15-rtgi-recrute.textile deleted file mode 100644 index b31b798..0000000 --- a/_posts/2008-06-15-rtgi-recrute.textile +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: post -category: linkfluence -title: RTGI recrute ---- - -RTGI recrute pour 2 postes differents. Le premier, pour un poste "d'écologue", le second pour un poste développeur. La description des annonces est disponible ici - -Vous pouvez voir differents travaux realises par RTGI ici: - - * "blogopole":http://www.blogopole.fr/ - * "segoland":http://www.visualcomplexity.com/vc/project.cfm?id=473 - * "blogopole bis":http://www.visualcomplexity.com/vc/project.cfm?id=400 - * "pw08":http://www.visualcomplexity.com/vc/project.cfm?id=542 diff --git a/_posts/2008-06-17-vim-function-for-creating-new-task.md b/_posts/2008-06-17-vim-function-for-creating-new-task.md new file mode 100644 index 0000000..f549cf5 --- /dev/null +++ b/_posts/2008-06-17-vim-function-for-creating-new-task.md @@ -0,0 +1,22 @@ +--- +layout: post +title: Vim function for creating new task +summary: In which I add a few functions for my vim wiki. +--- + +I've added a new function to my .vimrc for creating quickly a new task: + +``` +function! CreateTask() + let context = input("Enter context: ") + exe ":set noautoindent" + exe "normal 0" + exe "normal o \- [@".context."] " + exe ":set autoindent" + exe ":startinsert" +endfunction +``` + +and then this mapping: `map ct :call CreateTask()` + +Now, I've just to hit **,n**, type my context, a new line will be inserted and I just have to create my task. diff --git a/_posts/2008-06-17-vim-function-for-creating-new-task.textile b/_posts/2008-06-17-vim-function-for-creating-new-task.textile deleted file mode 100644 index 81d2420..0000000 --- a/_posts/2008-06-17-vim-function-for-creating-new-task.textile +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: post -category: app -title: Vim function for creating new task ---- - -I've added a new function to my .vimrc for creating quickly a new task: - -{% highlight vim %} -function! CreateTask() - let context = input("Enter context: ") - exe ":set noautoindent" - exe "normal 0" - exe "normal o \- [@".context."] " - exe ":set autoindent" - exe ":startinsert" -endfunction -{% endhighlight %} - -and then this mapping: - -{% highlight vim %} -map ct :call CreateTask() -{% endhighlight %} - -Now, I've just to hit *,n*, type my context, a new line will be inserted and I just have to create my task. -- cgit v1.2.3