good text editor for linux

Read about good text editor for linux, The latest news, videos, and discussion topics about good text editor for linux from alibabacloud.com

The text editor for Linux operations

operation: W Save current document: W file name the currently edited content is saved in another new file: Wq Save current file and exit Vim editing environment: Q Quit VIM editing environment: q! Force exit if not saved: wq! Force Save exit(2) Open and read file class operations: E file name opens and edits a new file: e! Discard the edited content of the current file: R file name reads the contents of a new file to the end of the file that is currently being edited(3) file content substitutio

The use of the Linux command's must kill stunt vi text editor

: 5l, 8l-delete TextX Delete one character after the cursor position#x to delete the # characters after the cursor positionX Delete one of the preceding characters in the position where the cursor is located#X Remove the # characters in front of the cursor positionDD deletes the cursor in the row#dd Delete the # line from the line where the cursor is located-CopyYW copy the character at the end of the cursor to the buffer#yw copy # words to BufferYY copy cursor line to buffer#yy copy down # line

Linux Learning Summary (13) Text editor vim

Tags: vim linux text editorVim is an upgraded version of VI, which is displayed according to the text attributes, with the following details:General mode:1. Cursor Positioning:Move left and right one character, H LMove one character up or down, K JLeft and right down, around on both sides, down in the middle so rememberCursor positioned at the beginning of shift+

[state-Embedded notes] [006] [Linux text Editor]

Common text editors in Linux are VI and EmacsVIM has 3 working modes: command line mode, insert mode, bottom row mode1. Type I into insert mode2. Type [ESC] to return to the command line mode3. Type: Enter the bottom row mode, then type Wq save to exitCommand-line modeYY: Copy[N]yy: Copy n rowsP: PasteDD: Delete[N]DD: Delete n rows/string: Finding StringsGG: Move to file headerG: Move to end of fileU: UndoB

Linux Vim Text Editor

not have any action on the character, you can exit directly: q! When using VIM to open a file and manipulate the characters, discard all operations to exit: Wq Save Exit: wq! Force-Save exit, take effect for Superuser and file owner9.vim ManualVimtutor Vim's Handbook: Q Exit VimtutorVim is a powerful editing software, today can only be explained to you these commonly used, I hope everyone in the future work slowly discover new features, skilled use of vim editing software. I also hope that with

Linux Basics (iv): text editor vim

cursor at the end of the line : n1,n2d: Delete the specified range of rows 4. Copy and Cut commands YY: Copy when moving forward Nyy: Copy the current row following n rows DD: cut when moving forward NDD: Cuts the current row following n rows P, p: Paste 5. Replace and Cancel commands6. Search and Replace commands Set IC and set Noic %s: full-text replacement %s/dd/sam/g Start l

Use VI Editor to delete copy or move multiple lines of text under Linux

First, delete multiple linesSingle-row deletion,: 1 (line number to be deleted) dMulti-line Delete,: 1,10dDdDelete the cursor in the rowNddDelete n rows starting at the current lineDwDeletes a character starting with the current characterNdwDeletes n characters starting with the current characterd$, DDeletes a line of characters starting with the current characterDDelete to the beginning of the next sentenceDDelete to the beginning of the next paragraphD EnterDelete 2 rowsSecond, duplicate multi

Linux Text editor Vim/vi detailed introduction

II: Text Editor Vim/vi (Wake up call Vi late upgrade vim) Vim/vi is a powerful full-screen text editor, the most commonly used text editor on Linux/unix, which is to create, edit, and d

Linux uses text editor VI common commands

not save direct exitOpen a new file or read into other file contentsIn the current VI editor, you can edit a new file by executing the last line command in the form ": E New file ".In the current VI editor, the last line in the form of ": R other file " reads the contents of the other file and copies it to the current cursor location.In the current VI editor, ex

[Study notes] basic Linux operations (6) --- Vi text editor

Course connection: Vi text editor vi and vim introduction vi is a text editing tool on the command line interface. it has functions such as text editing, text processing, and code development. Course connection: Vi text editorVi

Linux Text editor vim

Brief introductionVi:visual Interface, Text editorText encoding: ASCII, UnicodeType of text editing:Line Editor: SEDFull Screen Editor: Nano, VIVim-vi improvedUseVim: A patterned editorBasic mode:(1) Edit mode, Command mode(2) Input mode(3) Last-line mode: Built-in command line interfaceOpen File:# vim [OPTION] ... FIL

[Study Notes] basic Linux operations (6) --- Vi Text Editor

Course connection: Vi Text Editor Vi and vim Vi is a text editing tool on the command line interface. It provides text editing, text processing, code development, and other functions. Vim is the strong version of vi (Code highlighting) Run vim to start the vim

Linux instruction Detailed vi interactive text editor

VI is the abbreviation for ' Visual interface ' and is an interactive text editor with a pure character interface as standard under Linux. You can perform many text operations, such as output, delete, find, replace, block operations, and so on, and you can customize them to suit your needs. All of its operations need t

[Study Notes] basic Linux operations (6) --- Vi Text Editor

Course connection: Vi Text EditorVi and vim Vi is a text editing tool on the command line interface. It provides text editing, text processing, code development, and other functions. Vim is the strong version of vi (Code highlighting) Run vim to start the vim editor. Vim

Linux vi vim text editor

Vim is a reinforced version of VI, it is recommended to use VIM.Vim has three different modes:Command mode (normal mode)After Vim starts, it enters command mode by default, and any mode can be returned to command mode by ESC. Command mode can be done by typing different commands to complete the selection, copy, paste, undo and so on.Insert ModeType the i key in the command mode to enter insert mode, edit the text content in insert mode, and use ESC to

Linux Learning 5 Text editor vim

replacements/string searching for a specified string: Set IC ignores caseN Find the next:%s/old/new/g full text overrides specified character: n1,n2s/old/new/g within the specified range ....___ Usage Tips: r! commandImport command Execution results: MapDefining shortcut keys, triggering commands: Map ^p i#: Map ^b 0x//Delete first character: ABreplacement, eg,: AB mymail [email protected]: n1,n2s/^Front is the range, ^ represents the beginning of th

Linux-vim Text Editor

Vim operation modeCOMMAMD Mode-Command modesInsert mode-Input modesLast line mode-bottomI,o: Enter input modeEXC: Enter the bottom row modeIn command mode DD: Delete the current line where the cursor is located "Other reference vim common"H,J,K,L: Move cursor up or downCTRL+F: Page DOWN frontCTRL+B: Page Up backCtrl+d: Turn down half PAGE DownCtrl+u: Turn up half page upVim + 1.txt: Move the cursor to the last line.Vim +/root 1. txt: Navigates to the place where Root first appearsVim a b C: n-Sw

Linux under VI Editor BACKSPACE cannot delete text correctly

The main reason is that the Vim.tiny version is installed, not the full version of Vim. Two ways:1. Directly in the terminal Input command sudo apt-get install VIM, follow the steps of the installation of Vim can be. 2. Modify the/etc/vim/vimrc.tiny file, set the set compatible to a set nocompatible, add set backspace=2 This is because sometimes the system will default vim-compatible VI, so use the VI command. This article is from the "lake and Laughter" blog, please make sure to keep this sourc

Linux command explanation-text editor

about two windows open fileInsert mode Input I: Insert before cursor I: Insert a at the beginning of the cursor: Insert a: At the end of the line insert O: Insert a new line under the cursor o: Insert a line on the cursor press ESC to enter command modeEdit mode Press Colon to enter edit mode from command mode and press ENTER to enter command mode again. Eg:setnu When exiting VI: Command mode, press ZZ to exit: Q Set line number: Set Nu Cancel line number: Set Nonu config file: Home dir

Linux Learning Commands (1)------VI text Editor

This article is your own study notes, welcome reprint, but please specify the source: http://blog.csdn.net/jesson20121020The most powerful text editor under Linux is Vi/vim, and its commands, if used flexibly, are more efficient than other text editors when writing programs or editing text.Vi/vim There are no menus, on

Total Pages: 15 1 .... 3 4 5 6 7 .... 15 Go to: Go

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.