Categories: Toolkits, vim
Window Subversion Configure file path
May 19th, 2009For win32 version command line subversion store all the configure file in %APPDATA%/Subversion.
You can use %APPDATA% to get real path.
msysgit: Git for win32
May 18th, 2009Link: http://code.google.com/p/msysgit/
Git for windows:msysgit - Google Code
Please read PortableGit-??????/Readme.portable.
Junction v1.04
May 17th, 2009Link: http://technet.microsoft.com/zh-cn/sysinternals/bb896768.aspx
A tools to create symblic in windows xp. But it only link to directory.
VIM: Move in program
May 15th, 2009Using '[' to begin.
Using ']' to end.
postfix:
[ : Outer block
{ : Current block
# : macro
Copy and paste in VIM
May 12th, 2009Multiple buffer of VIM
Vim has following buffer. You can use help registers to get detail help in VIM.
- Unamed register:""
- Use it when you not point out any register.
- Numbered register:"1 to "9
- You can specify them in y,yy and p command. But VIM will use them as a queue. Which mean VIM always put latest change in "0 and shift content of each register to next one. It means $9 will be lost. For VIM compatible, %, (, ),`, /, ? n,N, {, } trigged delete always use "1.
- Named register: "a-"z, "A-"Z
- Used by user
- GUI register: "+ and $*
- Register exchange data with GUI
- ".
- Last inserted text
- "%
- The name of current file
- "#
- The name of alternate file
- ":
- The most executed command-line
- "/
- Most recent search patten
Command
- y
- [range]["?]y[movment]. For example: "ay$
- yy
- [range]["?]yy
- p
- ["?]p
- gp
- Same as p, but put cursor at end of text