Vim: Difference between revisions
From DWIKI
m (→Delete) |
mNo edit summary |
||
Line 35: | Line 35: | ||
===Delete up to word=== | ===Delete up to word=== | ||
d/<word> | d/<word> | ||
== Delete until end of file == | |||
dG | |||
==folding== | ==folding== | ||
Line 48: | Line 53: | ||
Commands are entered by hitting the Esc button then ":" and the setting, function, command etc. | Commands are entered by hitting the Esc button then ":" and the setting, function, command etc. | ||
== Undo undo == | == Undo undo == |
Revision as of 08:28, 9 June 2023
Links
- http://www.vim.org/ - vim homepage
- http://vimdoc.sourceforge.net/ - the online source for Vim documentation
- Learn vim playing
- Cheat sheet
Documentation
Cheatsheets
Editing xml files
Create tag pairs
Plugins
Cheatsheet
Select
Line
y
Select until end of line
y$
Delete
Delete empty lines
:g/^$/d
Delete rest of line
D
Delete up to word
d/<word>
Delete until end of file
dG
folding
open fold
zo, zO
unfold all
zR
FAQ
What is this $VIMRUNTIME
:echo $VIMRUNTIME
Commands are entered by hitting the Esc button then ":" and the setting, function, command etc.
Undo undo
ctrl-r
Indentation
:set filetype=xml
- http://psy.swan.ac.uk/staff/carter/Unix/vim_indent.htm
- http://www.chovy.com/web-development/fix-indentation-and-tabs-in-vim/
Enable/Disable line numbering
set nu!
Save as root
:w !sudo tee %
Importing the output of ls -l into the current buffer
r !ls -l
syntax highlighting on dark background
:set background=dark
Sort lines 50 to 76 ussing the unix sort command
50,76 !sort
Change syntax colours
find syncolor.vim
End highlighting search results
<f9> <esc>:nohlsearch<cr>
show tabs
:set list and :set nolist
modelines in code
http://vim.wikia.com/wiki/Modeline_magic
In ~/.vimrc you need
set modeline
En then near top or bottom of your code something like
# vim: ts=4:sw=4:sts=0
Mind the spaces!
replace tabs with spaces
:%s/^\t\+/ g
disable mouse
set mouse=