
05-03-2012, 04:01 PM
|
|
Senior Member
|
|
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
|
|
Thanks Alvin, let's request telepathy-qt instead of kopete for PBI in AppCafe.
|
|

07-15-2012, 01:42 AM
|
|
Senior Member
|
|
Join Date: May 2010
Posts: 234
Thanks: 6
Thanked 15 Times in 14 Posts
|
|
WM: Ratpoison
Audio and Video: Mplayer, Emacs Multimedia System
Chat: Bitlbee, running through ERC
Catalog: ?
Development: Emacs, SLIME, ielm, Emacs Speaks Statistics with R, AucTeX
Disc Burning: K3B
File Browser: Dired
Graphics: Gimp, Feh, Inkscape, image-dired
Office: TexLive, AucTeX, mupdf, Emacs document viewer
Text editor: Emacs
Email/News: Gnus
Podcatcher/Feed-Reader: Newsbeuter & Podbeuter
Torrent: Usenet is better, so Pan 
Web Browser: Opera & Conkeror
|
|

07-15-2012, 09:13 PM
|
|
Senior Member
|
|
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
|
|
OMG purgatori this Conkeror flies!
thank you very much!
Originally Posted by purgatori
|
WM: Ratpoison
Audio and Video: Mplayer, Emacs Multimedia System
Chat: Bitlbee, running through ERC
Catalog: ?
Development: Emacs, SLIME, ielm, Emacs Speaks Statistics with R, AucTeX
Disc Burning: K3B
File Browser: Dired
Graphics: Gimp, Feh, Inkscape, image-dired
Office: TexLive, AucTeX, mupdf, Emacs document viewer
Text editor: Emacs
Email/News: Gnus
Podcatcher/Feed-Reader: Newsbeuter & Podbeuter
Torrent: Usenet is better, so Pan 
Web Browser: Opera & Conkeror
|
|
|

07-16-2012, 12:40 AM
|
|
Senior Member
|
|
Join Date: May 2010
Posts: 234
Thanks: 6
Thanked 15 Times in 14 Posts
|
|
Originally Posted by cabpa
|
OMG purgatori this Conkeror flies!
thank you very much!
|
You're most welcome, and I'm glad you like it  I've been using it for quite some time now, so if you have any questions let me know.
|
|

07-16-2012, 03:39 AM
|
|
Senior Member
|
|
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
|
|
purgatori, how to launch new tab and open links in new tab? Also how to find history and recently closed tabs?
Originally Posted by purgatori
|
You're most welcome, and I'm glad you like it I've been using it for quite some time now, so if you have any questions let me know.
|
|
|

07-16-2012, 07:57 AM
|
|
Senior Member
|
|
Join Date: May 2010
Posts: 234
Thanks: 6
Thanked 15 Times in 14 Posts
|
|
Originally Posted by cabpa
|
|
purgatori, how to launch new tab and open links in new tab? Also how to find history and recently closed tabs?
|
To open a new tab (also referred to as a "buffer" in Conkeror/Emacs jargon) the key sequence is: C-u g (Ctrl+u followed by g).
To open a link in a new buffer, you can either a) click on a link with your mouse wheel (I think it's also called MOUSE 3? I could be wrong though), or b) pass what's called a "universal argument" to the "display link hints" command. Don't be put off the jargon, as that's simply: C-u f (Ctrl+u followed by f).
The Ctrl+u is the "universal argument part" and then f is the part that activates link hinting on whatever page you happen to be viewing at the time.
As far as I know, there's no command to re-open a closed buffer/tab right now.
History, on the other hand, can be implemented by creating a .conkerorrc file in your home directory, and adding the following entry:
|
Code:
|
define_browser_object_class(
"history-url", null,
function (I, prompt) {
check_buffer (I.buffer, content_buffer);
var result = yield I.buffer.window.minibuffer.read_url(
$prompt = prompt, $use_webjumps = false, $use_history = true, $use_bookmarks = false);
yield co_return (result);
});
interactive("find-url-from-history",
"Find a page from history in the current buffer",
"find-url",
$browser_object = browser_object_history_url);
interactive("find-url-from-history-new-buffer",
"Find a page from history in the current buffer",
"find-url-new-buffer",
$browser_object = browser_object_history_url);
define_key(content_buffer_normal_keymap, "h", "find-url-from-history-new-buffer");
define_key(content_buffer_normal_keymap, "H", "find-url-from-history"); |
And if you want URLs from your history to appear during url completion (i.e. when you type g or C-u g), you can add the following to your .conkerorrc:
|
Code:
|
url_completion_use_history = true; |
Hope that helps
Last edited by purgatori; 07-16-2012 at 08:06 AM.
|
|

07-16-2012, 04:35 PM
|
|
Senior Member
|
|
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
|
|
Thanks purgatori, I hope many will try to and use Conkeror.
It is fast!
Originally Posted by purgatori
|
To open a new tab (also referred to as a "buffer" in Conkeror/Emacs jargon) the key sequence is: C-u g (Ctrl+u followed by g).
To open a link in a new buffer, you can either a) click on a link with your mouse wheel (I think it's also called MOUSE 3? I could be wrong though), or b) pass what's called a "universal argument" to the "display link hints" command. Don't be put off the jargon, as that's simply: C-u f (Ctrl+u followed by f).
The Ctrl+u is the "universal argument part" and then f is the part that activates link hinting on whatever page you happen to be viewing at the time.
As far as I know, there's no command to re-open a closed buffer/tab right now. 
History, on the other hand, can be implemented by creating a .conkerorrc file in your home directory, and adding the following entry:
|
Code:
|
define_browser_object_class(
"history-url", null,
function (I, prompt) {
check_buffer (I.buffer, content_buffer);
var result = yield I.buffer.window.minibuffer.read_url(
$prompt = prompt, $use_webjumps = false, $use_history = true, $use_bookmarks = false);
yield co_return (result);
});
interactive("find-url-from-history",
"Find a page from history in the current buffer",
"find-url",
$browser_object = browser_object_history_url);
interactive("find-url-from-history-new-buffer",
"Find a page from history in the current buffer",
"find-url-new-buffer",
$browser_object = browser_object_history_url);
define_key(content_buffer_normal_keymap, "h", "find-url-from-history-new-buffer");
define_key(content_buffer_normal_keymap, "H", "find-url-from-history"); |
And if you want URLs from your history to appear during url completion (i.e. when you type g or C-u g), you can add the following to your .conkerorrc:
|
Code:
|
url_completion_use_history = true; |
Hope that helps
|
|
|

07-27-2012, 06:50 PM
|
|
Senior Member
|
|
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
|
|
Originally Posted by purgatori
|
WM: Ratpoison
Audio and Video: Mplayer, Emacs Multimedia System
Chat: Bitlbee, running through ERC
Catalog: ?
Development: Emacs, SLIME, ielm, Emacs Speaks Statistics with R, AucTeX
Disc Burning: K3B
File Browser: Dired
Graphics: Gimp, Feh, Inkscape, image-dired
Office: TexLive, AucTeX, mupdf, Emacs document viewer
Text editor: Emacs
Email/News: Gnus
Podcatcher/Feed-Reader: Newsbeuter & Podbeuter
Torrent: Usenet is better, so Pan 
Web Browser: Opera & Conkeror
|
purgatori, i cannot some of this apps in AppCafe. Can you make a pbi request for them?
I hope also if somebody can develop a front-end gui for conkeror.
|
|

07-27-2012, 07:35 PM
|
|
Senior Member
|
|
Join Date: May 2010
Posts: 234
Thanks: 6
Thanked 15 Times in 14 Posts
|
|
|
^ Which ones couldn't you find? In all likelihood I have already made requests for any apps listed that aren't in the Appcafe already.
As for Conkeror: it is designed, intentionally, as a keyboard-driven browser (specifically, in the style of Emacs). Conkeror with a regular browser GUI = Firefox.
|
|

08-01-2012, 06:20 AM
|
|
Senior Member
|
|
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
|
|
Originally Posted by purgatori
|
^ Which ones couldn't you find? In all likelihood I have already made requests for any apps listed that aren't in the Appcafe already.
As for Conkeror: it is designed, intentionally, as a keyboard-driven browser (specifically, in the style of Emacs). Conkeror with a regular browser GUI = Firefox.
|
hi purgatori, I cannot see slime, ielm, Dired, imaged-dired. gnu newsreader, and Podbeuter
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT. The time now is 02:31 AM.
|
|