Outlookに他人の予定表を表示させる方法を追加
vim
- :sp, :vsp
- :q 閉じる
- :tabnew, gt タブ移動
- :行番号
:set syntax off => ファイル種類別強調表示をやめる
復活するには set syntax=ON (できない)
:set => syntax
:set # display all options
:set all
:set {option} # set the option true
:set no {option}
:set {option}=val, +=val
:set number, ;set nonumber
- autoindent
- cdpath
- cindent
- columns
- diff
- display
- encoding
- filetype
- guioptions
- imcmdline
- keymap
- number
- shell
- shiftwidth
- showmode
- syntax
- tabstop
- term
- viminfo
- write
exteral commands
: shell
: !{command with shell}
vim -g # GUI
vim -R # read only
:e file # edit another file
:e # reload current file
:pwd
:cd path
:cd - # go back to previous dir
:files
arg
:args # list all args
:all # display all files in list
:wn # save current edit next
:wn file # save current buffer to the file
:n # edit next
:N # edit previous
:last, :first
save,quit
:w # save
:w file # save current to the file
:w! # overwrite
:w >> file # append the current buffer to the file
:q # quit
:q! # quit without updating
:wq # save and quit
:x, ZZ # save if update and quit
:split (Ctrl-W s)
:split file # another window reads the file
:vsplit # vertical split
:new (Ctrl-W n)
:quit (Ctrl-W q)
:close
:o
Ctrl-W j # move to the lower window
Ctrl-W k # move to the upper window
Ctrl-W r # rotation
Ctrl-W x # swap
Ctrl-W = # same height
:buffers/:files
:syntax on
:syntax off
:syntax [clear]
:highlight clear
:filetype on
GUI
:menu
--------------------------------------------------
http://archiva.jp/web/tool/vim_basic.html