or browse through some tags...
Change to normal mode with <ESC>.
Search (Wrapped around at end of file):
Search STRING forward : / STRING.
Search STRING backward: ? STRING.
Repeat search: n
Repeat search in opposite direction: N (SHIFT-n)
Replace: Same as with sed, Replace OLD with NEW:
First occurrence on current line: :s/OLD/NEW
Globally (all) on current line: :s/OLD/NEW/g
Between two lines #,#: :#,#s/OLD/NEW/g
Every occurrence in file: :%s/OLD/NEW/g
( 0 )
When using visual studio 2008, I want to highlight all references of a variable, but I didn’t find that command. I’m not sure if Visual studio 2008 has this feature. When I installed ViEmu, I realized that I can make it with ViEmu.
Move your cursor to the variable (it’s definition or any reference), press gd to move to its definition and highlight all references. The result looks like this:
STDMETHODIMP CShellExt::GetOverlayInfo(LPWSTR pwszIconFile, int cchMax, int *pIndex, DWORD *pdwFlags)
{
int nInstalledOverlays = GetInstalledOverlays();
if ((m_State == FileStateAdded)&&(nInstalledOverlays > 12))
return S_FALSE; // don't use the 'added' overlay
if ((m_State == FileStateLocked)&&(nInstalledOverlays > 13))
return S_FALSE; // don't show the 'locked' overlay
if ((m_State == FileStateIgnored)&&(nInstalledOverlays > 12))
return S_FALSE; // don't use the 'ignored' overlay
if ((m_State == FileStateUnversioned)&&(nInstalledOverlays > 13))
return S_FALSE; // don't show the 'unversioned' overlay
( 0 )
My site is hosted in dreamhost, and I can’t access it in my office, because port 22 is banded with our policy. And now I find a very good tool, that can resolve my problem - WebSSH. It’s a java serverlet, I think it uses only port 80, but I’m not sure. I use it to manage my site. It works very like a putty.You can install it from http://webssh.decf.berkeley.edu/full/.
If you want to ftp to your site with port 80, net2ftp is a good try. You can find it at: https://webftp.dreamhost.com/index.php.
( 0 )
While it’s a great software with great ideas. It really slow down my computer and outlook. In fact, I used it very little, though it did a good job as its role. I said it’s even better than google desktop, but google desktop consume less resource than it.
I will try Xobni later, I think. And I hope it works only when I need it, and stop working when I don’t need it.
( 0 )
On Photoshop, select menu: help->Export Tansparent Image…, see following image. A wizard will guide you to finish it.
See my logo as an example:
For more information, you may refer to http://www.heathrowe.com/tuts/knockout.asp?knockout=export.
( 0 )