Linux Vim編譯器的使用方法

2021-10-02 09:56:04 字數 341 閱讀 9712

直接在linux系統下輸入vi 【檔名】指令即可進入。

如:vi a.txt

此狀態下敲擊鍵盤動作會被vim識別為命令,而非輸入字元。

i在游標左側輸入正文

i在游標所在行的行首輸入正文

a在游標右側輸入正文

a在游標所在行的行尾輸入正文

o在游標所在行的下一行增添新行,游標位於新行的行首

o在游標所在行的上一行增添新行,游標位於新行的行首

說明:1. 游標的位置由雙下劃線(═)標明。

當前行指游標所在的那一行。

編輯文字模式!!!!

在鍵盤輸入:進入底層模式,組合其他字元可以儲存退出vim。

GCC編譯器的使用

看下面的例子 test.c include main char str i like linux i advices you jion in the linux world printf s n str exit 0 使用gcc編譯 輸入gcc c test.c得到目標檔案test.o。c命令表示對...

GCC編譯器的使用

看下面的例子 test.c include main char str i like linux i advices you jion in the linux world printf s n str exit 0 使用gcc編譯 輸入gcc c test.c得到目標檔案test.o。c命令表示對...

GCC編譯器的使用

看下面的例子 test.c include main char str i like linux i advices you jion in the linux world printf s n str exit 0 使用gcc編譯 輸入gcc c test.c得到目標檔案test.o。c命令表示對...