webBrowser : Use vim as a web browser
| script karma |
Rating 8/4,
Downloaded by 162
|
Comments, bugs, improvements
|
Vim wiki
|
| created by |
| Alexandre Viau |
| |
| script type |
| utility |
| |
| description |
"-------------------------------------------------------------------
" WebBrowser
"-------------------------------------------------------------------
" Author: Alexandre Viau
"
" Version: 1.0
"
" Description: Uses the lynx text browser to browse websites and local files
" and return the rendered web pages inside vim. The links in the web pages may
" be "clicked" to follow them, so it turns vim into a simple web text based web browser.
"
" This plugin is based on the browser.vim plugin. |
| |
| install details |
Copy the file in the plugin directory.
Change the paths to your lynx files:
let s:lynxPath = 'c:\lynx'
let s:lynxExe = s:lynxPath . 'lynx.exe'
let s:lynxCfg = '-cfg=' . s:lynxPath . 'lynx.cfg'
let s:lynxLss = '-lss=' . s:lynxPath . 'lynx.lss'
let s:lynxCmd = s:lynxExe . ' ' . s:lynxCfg . ' ' . s:lynxLss
let s:lynxDumpPath = 'c:\lynx\dump'
let s:lynxToolsPath = 'c:\lynx\tools' |
| |
script versions (upload new version)
Click on the package to download.
ip used for rating: 54.226.5.29
|