Created
April 5, 2012 03:14
-
-
Save gabamnml/2307690 to your computer and use it in GitHub Desktop.
List of commands for Vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Split window on open file | |
:split filetoopen.py or vertical :vsplit sistema.py | |
// For navigate on windows intances | |
Ctrl+w+Arrows or Ctrl+ww | |
// Show numbers on lines | |
:set number | |
// Search & replace | |
/keyword or reverse search ?keyword | |
have to replace | |
:s/keyword/keywordreplace/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment