2016年3月15日 星期二

[開發紀錄]Vim的Hello World

vim使用
至上次安裝好後,還沒有寫一個程式來測試一下,按照慣例來個Hello World吧

輸入vim就可進入
$vim 檔名.c           創立某個檔名的c file
i可以開始編輯

程式碼部份
#include<stdio.h>
int main(){
        printf("Hello World\n");
        return 0;
}
執行指令
$ gcc hello.c -o hello
$ ./hello
顯示結果
 Hello World

存檔離開 :wq

離開vim的操作都是要按ESC
vim is a modal editor. Hit the ESC key to get into Normal (command) mode then type :q and press Enter.
To quit without saving any changes, type :q! and press Enter.
 原文:How do I quit from Vi?
VIM命令退出



第九章、vim 程式編輯器 

完整參考資料:康乃爾大學教材第一章

沒有留言:

張貼留言

ADGuard