Scripts quick access edit this |
- Author: Dave Pearson <davep@davep.org>
- Version: 1.1
- License: GNU GPL 2 only
- Download: navigator.jl
- Homepage: http://www.davep.org/sawfish/
Synopsis[]
Working with Netscape windows.
Description[]
This script provides a method of finding netscape windows and working with them (currently th only thing you can do is get at an URL, if I find other useful things I'll add them).
Installation[]
- Install Wclass.
- Save navigator.jl in your load-path.
- Add this to your ~/.sawfishrc:
(require 'navigator)
Configuration[]
I find navigator-url
really useful in conjunction with sawfish.el and emacs. Using code like
this:
(defun insert-navigator-url () (interactive) (let ((url (sawfish-code (navigator-url)))) (when url (insert url))))
in emacs I can bind a key that inserts the URL that the first navigator window is looking at.