Chuyển đến nội dung chính

Using Vim Editor

The Vim is a tool editor text. It is used as the most popular and powerful tool. In the context of Vim, it can operate in two modes: command mode and insert mode. The editor always starts in command mode. In the command mode, we can move through the text, search, replace, mark blocks and switch the editor to insert mode. The first, we will install Vim.
On ubuntu
sudo apt-get install vim
On CentOS
sudo yum install vim

We use command vi file_name to open file in the Vim editor. We will start with some basic commands.

Basic commands


  • h to move the cursor to the left
  • l to move it to the right
  • k to move it to the up
  • j to move it to the down
  • G to move it to the begin of last line
  • gg to move it to the begin of first line
  • :n to move it to line n of the file

Basic operations



  • n dd will delete n lines starting from the current cursor position.
  • u will undo.
  • ctr + r will redo.
  • n dw will delete n words starting from the current cursor position to right.
  • n db will delete n words starting from the current cursor position to left.
  • x will delete character on which the cursor is positioned.
  • :w save file.
  • :q will exit the editor.
  • :q! will force the exit when user want unsaved changes.
  • :wq will save and exit
  • :w new_file will save the text to new_file
  • /string_for_search will search the string up-down in the file, position of cursor on the first match.
  • / will perform the same search again, moving the cursor to the next match.
  • ?string will search the string down-up.
  • :1,$s/old_text/new_text/g will replace old_text with new_text throughout the file.
  • yy will copy a block of text.
  • n p will paste it n times.
  • a will change to append text to file.
  • i will change to insert mode.
  • esc will change to command mode.

Scrolling



  • ctr + f will scroll down one screen.
  • ctr + b will scroll up on screen.

Split screen



  • :vsplit file_name will vertical split screen and load another file
  • :split file_name will horizontal split screen and load another file
  • ctr + w will move cursor to next screen.



When we opened file with the Vim editor, the file is opened with not set number line. To set number line please enter :set nu. To set default open file with set number line, we can edit /etc/vim/vimrc and append  set number to this file.  To redefine tab as 4 spaces use :set tabstop=4 or append set tabstop=4 into /etc/vim/vimrc


Nhận xét

Bài đăng phổ biến từ blog này

Load balancing howto: LVS + ldirector + heartbeat 2

Problem A high capacity load balancing solution is needed to address current and future needs to provide highly available and scalable services. Solution Linux Virtual Server (LVS) provides the means of building scalable and high performing virtual cluster server. Heartbeat 2 can be used to feather increase the availability of the virtual services. Limitations Iptables redirection to avoid ARP problems with direct routing load balancing is not covered. Heartbeat 2 SSH STONITH is used without quorumd or pingd. Very limited "tiereaker" capability. Concepts LVS hides real servers behind a virtual IP and load balances the incoming request across all cluster nodes based on a scheduling algorithm. It implements transport-layer load balancing inside the Linux kernel, also called Layer-4 switching. There are 3 types of LVS load balancing: Network Address Translation (NAT) Incoming requests arrive at the virtual IP and are forwarded to the real servers by changing the

Làm thế nào để có thể nhúng source code vào bài viết trên Blogger?

Nói nhảm Là một developer mình luôn luôn muốn chia sẻ những gì mình học được tới mọi người. Và một trong những cách đó là ngồi viết nhảm nhí trên blog :). Hôm nay chợt nảy ra ý định muốn tạo các bài hướng dẫn các sử dụng ReatJs từ cơ bản tới không còn cơ bản nữa. Nhưng chợt nhận ra mình không có khả năng viết lách lắm :) Nói hơi nhảm xíu nhé mọi người. Nhưng nếu ai ủng hộ mình viết một series hướng dẫn lập trình web sử dụng ReactJs thì comment bên dưới nhé. Còn bây giờ quay lại chủ đề chính của mình trong bài viết này là làm sao có thể nhúng đoạn code đẹp trai này vào bất cứ blog nào hỗ trợ soạn HTML. Javascript 1 console.log( "Bạn rất đẹp trai" ); Python 1 print ( "Bạn còn đẹp trai hơn" ) và có rất nhiều ngôn ngữ khác nữa. Wow nghề viết lách lại không đơn giản :) Nói thật Mình có hỏi bạn bè đồng nghiệp và rồi hỏi anh Google thân thuộc thì hiện tại tìm được hai giải pháp có thể giúp anh em code tung trời và trình bày đẹp trai trên bài viết của mình. Cách t

Thủa sơ khai của React - Pure React

Pure React Chúng ta hãy cùng bắt đầu học Reactjs với cách viết Pure React. Nói không với các bước compile, không với Webpack, Parcel, JSX mà chỉ có Javascript thuần tuý thôi. Vì mình biết nếu bây giờ nhảy thẳng vào các khái niệm đó, các bạn sẽ choáng ngợp bởi có quá nhiều khái niệm, và cũng không hiểu rằng tại sao họ lại dùng những thư viện đó và dùng nó khi nào nữa :) Nào hãy cùng tạo một project tên là adopt-me  mình lấy tên như này bởi mình muốn sử dụng API của trang Petfinder.com  cho các bài hướng dẫn sau về xử lý kết quả trả về từ API. Và cũng vì lý do nhân văn là các bạn nên nhận nuôi một con thú cưng nhé hihi. Mình khuyến khích các bạn lập trình sử dụng hệ điều hành Linux hoặc MacOs nó rất tiện cho bạn sử dụng dòng lệnh và thao tác nhanh chóng như dân lập trình Pro. Chúng ta bắt đầu tạo một thư mục adopt-me , dưới thư mục chúng ta tạo một thư mục src lưu code và tạo một file index.html trong thư mục đó. Cách đơn giản là bạn mở terminal lên và gõ câu lệnh. mkdir -p adopt-me/