Vim Tips Wiki
Vim Tips Wiki
Advertisement
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Duplicate tip

This tip is very similar to the following:

These tips need to be merged – see the merge guidelines.

Tip 732 Printable Monobook Previous Next

created May 22, 2004 · complexity basic · author Yasuoki Mutoh · version 6.0


First, try the following command in your Vim.

:!start explorer http://www.vim.org/

You will see the Vim home page in the browser. That's OK.

Then, it'll be much quicker if a menu icon is defined like this.

Triple crick on url and click icon, then you'll get the url in your browser.

But inserting a new icon is not easy, so replace existing one.

Following is the part of "$VIM_HOME\vim\vim61\menu.vim" that shows "Open New" icon replaced with "Start Explore" definition.

if 1 " disabled; These are in the Windows menu " Replaced 0 to 1.
  an 1.135 ToolBar.-sep4- <Nop>
  "an 1.140 ToolBar.New <C-W>n " Commented.
  vnoremenu 1.140 ToolBar.New "wy:!start explorer <C-R>w<CR> " Added.
  tmenu ToolBar.New Start Explorer " Tool tip added.
  an 1.150 ToolBar.WinSplit <C-W>s
  ...
  ...
endif

Note

The named buffer "w" is used for not disturbing clip board.

Remove comment on Tool tip line.

Comments

See VimTip628, VimTip394


Advertisement