GithubHelp home page GithubHelp logo

progmamun / vim Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 3 KB

Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient. It is included as "vi" with most UNIX systems and with Apple OS X.

vim

vim's Introduction

vim-notes

About_Vim

  • Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient. It is included as "vi" with most UNIX systems and with Apple OS X. Vim is a free and open-source, screen-based text editor program. It is an improved clone of Bill Joy's vi. Vim's author, Bram Moolenaar, derived Vim from a port of the Stevie editor for Amiga and released a version to the public in 1991. Vimlogosvg

Global

  • :h[elp] keyword -open help for keyword
  • :sav[eas] file -save file as
  • :clo[se] -close current pane
  • :ter[minal] -open a terminal window
  • K -open man page for word under the cursor

Cut and Paste

  • yy -yank (copy) a line
  • 2yy -yank (copy) 2 lines
  • yw -yank(copy) the characters of the word from the cursor position to the start of the next word.
  • yiw -yank(copy) word under the cursor
  • yaw -yank(copy) word under the cursor and the space after or before it
  • y$ or Y -yank(copy) to end of line
  • p -put (paste) the clipboard after cursor
  • P -put(paste) before cursor
  • gp -put(paste) the clipboard after cursor and leave cursor after the new text
  • gP -put(paste) before cursor and leave cursor after the new text
  • dd -delete(cut) lines
  • 2dd -delete(cut) 2 lines
  • dw -delete(cut) the characters of the word from the cursor position to the start of the next word
  • diw -delete (cut) word under the cursor and the space after or before it
  • daw -delete(cut) word under the cursor and the space after or before it
  • d$ or D -delete (cut) to the end of the line
  • x- delete (cut) character

vim's People

Contributors

progmamun avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.