SlideShare a Scribd company logo
1 of 23
VIM
The editor that can and will
fulfill your every desire.
Basic Navigational
commands
• k= up
• j= down
• l= right
• h= left
• w= move forward by word
• b= move backward by word
Basic Navigational
Commands
• ^f = page down
• ^b = page up
• “^” = beginning of line
• $ = end of line
VIM Modes
• Command Mode
• Insertion Mode
• Sed Mode
Command Mode
• Certain keys perform certain
actions.
• Ie. hjkl are all used in command
mode.
• To enter command mode
simply press escape.
Insertion Mode
• In Insert mode, anything you
type is simply text in your file.
• To enter insertion mode
• i= insert
• a= append
• O = open new line
• Among others…
Sed Mode
• In Command mode type “:” to
enter Sed Mode.
• In sed mode any SED command
can be applied to your text.
• Ie. %s/t/ /g will substitute all
tabs with 4 spaces in your text
file.
Copy & Paste
• To copy paste you “yank” the
lines
• y[x]y will yank x number of lines
• To cut you delete the lines
• d[x]d will delete x number of lines
and store them in the buffer
• To delete lines simply cut them.
Copy and Paste
• To Paste use the P command
• p= insert line after current
position.
• P= insert line before current
position.
• Note: you can cut/paste in sed
mode as well as command mode.
Replacing Text
• r=replace current character
• R= enters insertion mode in
Replace mode
MOST IMPORTANT CMD
• The most important command
for any newbie.
• U/u= undo
• It might just save your life….or
your code.
Searching for text.
• /Pattern will search for pattern
specified.
• /?Pattern will search for pattern
specified backwards.
• n= find next occurrence
• N = find prev occurrence
Open-Close-Save, etc.
• To Save a file:
• Sed Mode:
• w= writes changes
• x= writes and quits
• Cmd Mode:
• ZZ= writes and quits
• To Close a file:
• q= closes and quits program.
Open-Close-Save, etc.
• To override any command
• Ie. To exit without saving, to force
write on a read-only file, etc.
• Append ! To any command
• q!= quiets w/o saving
• w!= writes read-only
Coding uses.
• Assuming u’ve run ctags on your
program
• ]] advances to next function
• [[ advances to previous function
• :!make compiles program
• :!pgm-name runs program
• ALL within VIM.
Tips & Tricks
• :r !my_cmd
• Runs my_cmd and inserts output in
current session.
• :g/.*/m0
• File line reversal (line 1 = $, line $=
line1)
• :g/^/m0 – same as above
• :1,$s’^M”g
• Remoes dos r from text file, ie. Converts
to unix format
Tips n Tricks
• set number
• Display line numbering, useful for
sed use
• Set nonumber to disable
• set ts=4
• Sets tabspace to any number of
spaces desired.
Tips n Tricks
• :line-num will take u directly to
that line.
• Ie. Compiler error line 157
• Vim file 157 or….
• :157 while in vi
Folding
• set foldenable
• Move cursor over the magic
char pres %z, followed by zf
• zo opens folder
• zc fold close
Macros
• Press q to enable recording
mode, followed by the bound
key.
• Press q again to get out of
macro mode.
• Then call the macro using
%<bindkey>
Customized startup
• Create a .exrc (or .vimrc) file in
your $HOME dir to start vim the
way you like it.
• Setting tabspaces, behavior,
colors scheme, etc.
URLS of note.
• www.vim.org
• Scripts, themes, macros, and
goodies as well as tutorials
• Source file.vim
to load a script/macro.
• www.oreilly.com
• Some excellent e-books as well as
hardcover books on sed and vim

More Related Content

Viewers also liked

รายงานฉบับสมบูรณ์ โครงการพัฒนาฐานข้อมูลพื้นที่เสี่ยงภัยแล้ง
รายงานฉบับสมบูรณ์ โครงการพัฒนาฐานข้อมูลพื้นที่เสี่ยงภัยแล้งรายงานฉบับสมบูรณ์ โครงการพัฒนาฐานข้อมูลพื้นที่เสี่ยงภัยแล้ง
รายงานฉบับสมบูรณ์ โครงการพัฒนาฐานข้อมูลพื้นที่เสี่ยงภัยแล้งPichamon Sudecha
 
Applications of HCI Modeling
Applications of HCI ModelingApplications of HCI Modeling
Applications of HCI ModelingZaher Hinbarji
 
ORÍGENES DE LA LUZ Y LAS TINIEBLAS
ORÍGENES DE LA LUZ Y LAS TINIEBLASORÍGENES DE LA LUZ Y LAS TINIEBLAS
ORÍGENES DE LA LUZ Y LAS TINIEBLASCarlos Sialer Horna
 
Instalaciones Hidrosanitarias- Agua caliente
Instalaciones Hidrosanitarias- Agua calienteInstalaciones Hidrosanitarias- Agua caliente
Instalaciones Hidrosanitarias- Agua calienteOscar Velazquez Tomas
 
MyGFT - um Módulo de Integração entre MySQL e Google Fusion Tables
MyGFT - um Módulo de Integração entre MySQL e Google Fusion TablesMyGFT - um Módulo de Integração entre MySQL e Google Fusion Tables
MyGFT - um Módulo de Integração entre MySQL e Google Fusion TablesAlexandre Savaris
 

Viewers also liked (6)

Abdulrahman Shakboua15
Abdulrahman Shakboua15Abdulrahman Shakboua15
Abdulrahman Shakboua15
 
รายงานฉบับสมบูรณ์ โครงการพัฒนาฐานข้อมูลพื้นที่เสี่ยงภัยแล้ง
รายงานฉบับสมบูรณ์ โครงการพัฒนาฐานข้อมูลพื้นที่เสี่ยงภัยแล้งรายงานฉบับสมบูรณ์ โครงการพัฒนาฐานข้อมูลพื้นที่เสี่ยงภัยแล้ง
รายงานฉบับสมบูรณ์ โครงการพัฒนาฐานข้อมูลพื้นที่เสี่ยงภัยแล้ง
 
Applications of HCI Modeling
Applications of HCI ModelingApplications of HCI Modeling
Applications of HCI Modeling
 
ORÍGENES DE LA LUZ Y LAS TINIEBLAS
ORÍGENES DE LA LUZ Y LAS TINIEBLASORÍGENES DE LA LUZ Y LAS TINIEBLAS
ORÍGENES DE LA LUZ Y LAS TINIEBLAS
 
Instalaciones Hidrosanitarias- Agua caliente
Instalaciones Hidrosanitarias- Agua calienteInstalaciones Hidrosanitarias- Agua caliente
Instalaciones Hidrosanitarias- Agua caliente
 
MyGFT - um Módulo de Integração entre MySQL e Google Fusion Tables
MyGFT - um Módulo de Integração entre MySQL e Google Fusion TablesMyGFT - um Módulo de Integração entre MySQL e Google Fusion Tables
MyGFT - um Módulo de Integração entre MySQL e Google Fusion Tables
 

Similar to Vim (20)

Vim Basics
Vim BasicsVim Basics
Vim Basics
 
Vi Editor
Vi EditorVi Editor
Vi Editor
 
Using vi
Using viUsing vi
Using vi
 
Presentacion vim
Presentacion vimPresentacion vim
Presentacion vim
 
Linux text editors Vim nano
Linux text editors Vim nano Linux text editors Vim nano
Linux text editors Vim nano
 
Linux text editors
Linux text editorsLinux text editors
Linux text editors
 
07 vi text_editor
07 vi text_editor07 vi text_editor
07 vi text_editor
 
Vim survival guide
Vim survival guideVim survival guide
Vim survival guide
 
VI editor in unix
VI editor in unix VI editor in unix
VI editor in unix
 
lectuer 21-22.pptx
lectuer 21-22.pptxlectuer 21-22.pptx
lectuer 21-22.pptx
 
Tuffarsi in vim
Tuffarsi in vimTuffarsi in vim
Tuffarsi in vim
 
What is Vim?
What is Vim?What is Vim?
What is Vim?
 
Linux basic1&amp;2
Linux basic1&amp;2Linux basic1&amp;2
Linux basic1&amp;2
 
Lpt lopsa
Lpt lopsaLpt lopsa
Lpt lopsa
 
Vi editor Linux Editors
Vi editor Linux EditorsVi editor Linux Editors
Vi editor Linux Editors
 
Text editor In RHEL
Text editor In RHELText editor In RHEL
Text editor In RHEL
 
Unleash your inner console cowboy
Unleash your inner console cowboyUnleash your inner console cowboy
Unleash your inner console cowboy
 
Coding In Vim
Coding In VimCoding In Vim
Coding In Vim
 
PPT4-Windows CLI.pptx
PPT4-Windows CLI.pptxPPT4-Windows CLI.pptx
PPT4-Windows CLI.pptx
 
Unit 5 vim an advanced text editor
Unit 5 vim an advanced text editorUnit 5 vim an advanced text editor
Unit 5 vim an advanced text editor
 

Recently uploaded

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 

Recently uploaded (20)

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 

Vim

  • 1. VIM The editor that can and will fulfill your every desire.
  • 2.
  • 3. Basic Navigational commands • k= up • j= down • l= right • h= left • w= move forward by word • b= move backward by word
  • 4. Basic Navigational Commands • ^f = page down • ^b = page up • “^” = beginning of line • $ = end of line
  • 5. VIM Modes • Command Mode • Insertion Mode • Sed Mode
  • 6. Command Mode • Certain keys perform certain actions. • Ie. hjkl are all used in command mode. • To enter command mode simply press escape.
  • 7. Insertion Mode • In Insert mode, anything you type is simply text in your file. • To enter insertion mode • i= insert • a= append • O = open new line • Among others…
  • 8. Sed Mode • In Command mode type “:” to enter Sed Mode. • In sed mode any SED command can be applied to your text. • Ie. %s/t/ /g will substitute all tabs with 4 spaces in your text file.
  • 9. Copy & Paste • To copy paste you “yank” the lines • y[x]y will yank x number of lines • To cut you delete the lines • d[x]d will delete x number of lines and store them in the buffer • To delete lines simply cut them.
  • 10. Copy and Paste • To Paste use the P command • p= insert line after current position. • P= insert line before current position. • Note: you can cut/paste in sed mode as well as command mode.
  • 11. Replacing Text • r=replace current character • R= enters insertion mode in Replace mode
  • 12. MOST IMPORTANT CMD • The most important command for any newbie. • U/u= undo • It might just save your life….or your code.
  • 13. Searching for text. • /Pattern will search for pattern specified. • /?Pattern will search for pattern specified backwards. • n= find next occurrence • N = find prev occurrence
  • 14. Open-Close-Save, etc. • To Save a file: • Sed Mode: • w= writes changes • x= writes and quits • Cmd Mode: • ZZ= writes and quits • To Close a file: • q= closes and quits program.
  • 15. Open-Close-Save, etc. • To override any command • Ie. To exit without saving, to force write on a read-only file, etc. • Append ! To any command • q!= quiets w/o saving • w!= writes read-only
  • 16. Coding uses. • Assuming u’ve run ctags on your program • ]] advances to next function • [[ advances to previous function • :!make compiles program • :!pgm-name runs program • ALL within VIM.
  • 17. Tips & Tricks • :r !my_cmd • Runs my_cmd and inserts output in current session. • :g/.*/m0 • File line reversal (line 1 = $, line $= line1) • :g/^/m0 – same as above • :1,$s’^M”g • Remoes dos r from text file, ie. Converts to unix format
  • 18. Tips n Tricks • set number • Display line numbering, useful for sed use • Set nonumber to disable • set ts=4 • Sets tabspace to any number of spaces desired.
  • 19. Tips n Tricks • :line-num will take u directly to that line. • Ie. Compiler error line 157 • Vim file 157 or…. • :157 while in vi
  • 20. Folding • set foldenable • Move cursor over the magic char pres %z, followed by zf • zo opens folder • zc fold close
  • 21. Macros • Press q to enable recording mode, followed by the bound key. • Press q again to get out of macro mode. • Then call the macro using %<bindkey>
  • 22. Customized startup • Create a .exrc (or .vimrc) file in your $HOME dir to start vim the way you like it. • Setting tabspaces, behavior, colors scheme, etc.
  • 23. URLS of note. • www.vim.org • Scripts, themes, macros, and goodies as well as tutorials • Source file.vim to load a script/macro. • www.oreilly.com • Some excellent e-books as well as hardcover books on sed and vim