[فيم] واحدة من ال أكثر قوّيّة و [كمّند لين] شعبيّة [تإكست ديتور] حوالي. هو كان في البداية فقط يتوفّر ل [لينوإكس] و [أونيإكس] مناص, غير أنّ كان بعد ذلك [بورتد] إلى [ويندووس] أيضا. القارن نظيفة وبسيطة, ويستعمل أنت إدماج المفاتيح أن ينجز مهام مثل [كب-بست], بحث واستبدلت, محات حزمة الخطوط, وكثير أكثر.
[فيم] يأتي [بر-ينستلّد] مع كثير توزيعات من [لينوإكس] وعلى ماك [أس]. [إين كس] أنت لا تتلقّى هو أو أردت أن يركّب هو على آخر منصة أنت يستطيع حصلت المركبة من?هنا. ل [ويندووس] مستعملات يحتاج أنت أن يذهب?هنا?وجلبت الإطلاق متأخّرة من [فيم]. جلبت ال [زيب فيل] لصيغتك [ويندووس] واستخرجت هو. بعد ذلك ركضت المركبة. الشيء وحيد مختلفة بين [لينوإكس]/ماك صيغة من [فيم] [ويندووس] صيغة أنّ [ويندووس] يركض صيغة في ه خاصّة نافذة [غرفيكل]. [لت'س] أخذت نظرة قريبة في إستعماله.
قبل أن يحصل نحن إلى الإستعمال حقيقيّة من [فيم] تركتني بإيجاز فسّرت إلى أنت الاثنان أساليب أنّ [فيم] أشواط في - أمر و ملحقة أسلوب. في ال أمر أسلوب يعطي أنت تعليمات إلى [فيم] أن يأخذ بعض عمل, مثل مفتاح للشطب خطّ, أو يبحث لكلمة. عندما أنت في ال ملحقة يذهب أسلوب ماذا أنت تطبع داخل بما أنّ نص داخل الوثيقة أنت يكون تحرّر. عندما أنت إطلاق [فيم] أنت في ال أمر أسلوب. إلى مفتاح إلى ملحقة أسلوب ضرب ال `[إي]' مفتاح على لوحت مفاتيحك. أنت سترى إشعار في القعر يسارا من شاشتك مثل هذا:
- ملحقة -
هذا يعني أنت يستطيع الآن بدأت يحرّر المبرد. إلى مفتاح [بك تو] ال أمر ضرب أسلوب فقط ال [إسكب كي]. أنت ستجد أنّ ال "- ملحقة -" سيختفي إشعار في القعر. أنت الآن في ال أمر أسلوب ويستطيع أمرت [فيم] أن يمحو خطّ, أو أن ينقذ المبرد, أو ماذا أنت يمكن أردت أن يتمّ مع الوثيقة.
أن يفتح موجودة مبرد أو [ا] أن يخلق [نو ون] مع [فيم] إستعمال الإعراب تالي:
# [فيم] helloworld.txt
إن أنت فتحت مبرد موجودة أنت سوفت رأيت محتوىه, أو [بلنك بج] إن أنت خلقت [نو ون]. الآن قبل أن يباشر نحن مع يستعمل [فيم], [لت'س] رأيت كيف أن يخرج [فيم]. This is important because, unlike your standard graphical text editor, you cannot close the window to shut the application. To exit Vim and return to the command line you need to enter the following key combination:
ESC :q ENTER
In plain English the above command goes something like this, “Escape key, then a colon, followed immediately by a ‘q’, and then the Enter key to finish”. The “q” here stands for “quit”. What Vim does here is that it exits without saving any changes you may have made to the file. To save the file and quit add the ‘w’ or “write” option:
ESC :wq ENTER
You can also use the ‘w’ option without the ‘q’, if you just want to save the file while editing it and not quit Vim.
Now that we know how to get in an out of Vim let’s see how to use it. Let’s create a new document with Vim and begin writing:
# vim newdocument.txt
Now hit ‘i’ on your keyboard to get into the insert mode. Write a few lines of text in the file. Once you are done hit the Escape key to go into the command mode, and then “:wq” to save and exit the file. Now let’s see if the file was written correctly. Windows users can open the document we created using Notepad. If you are using Linux or a Mac run the following command to check out the contents of the file:
# cat newdocument.txt
You should see the contents of the file you just created. Now open the same file using Vim and let’s see what more Vim do do. Let’s delete a few words and lines. While in command mode navigate you cursor to he beginning of a word and hit the key combination “dw” followed by Enter. This should delete the word. Now let’s delete a whole line. Pick a line you want to delete and take the cursor to any location in that line and hit the key combination “dd” followed by Enter. Line deleted.
Sometimes you make a mistake that you want to undo, say you want to bring back the line you just deleted. To undo your last action go to the command mode and hit the key “u”. You can continue hitting “u” to undo more changes.
These commands will get you started with Vim. Practice what you learned here. I will return with more cool stuff such as finding and replacing words, searching a text, and more.
A quick recap of the commands you learned here:
1. Save file - “:w”
2. Quit file without saving - “:q”
3. Save and quit file - “:wq”
4. Go into insert mode - “i”
5. Go into command mode - ESC
6. Delete word - “dw”
7. Delete line - “dd”
8. Undo change - “u”






























{ 1 comment… read it below or add one }
Come on ! Is there someone who still use vi (& its clones) ? There’s hundred of editors out there who can ease much more the work for a writer…!!!
Yeah, I know you can do more with Vi than any other editor, but believe me you still have to memorize a bunch of keyboard keys…
Leave a Comment