Reply
 
Thread Tools Display Modes
  #11  
Old 05-03-2012, 04:01 PM
cabpa cabpa is offline
Senior Member
 
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
Default
Originally Posted by Alvin View Post
net-im/kopete is unmaintained. It's being replaced by Telepathy. (net-im/telepathy-qt ?)
Thanks Alvin, let's request telepathy-qt instead of kopete for PBI in AppCafe.
Reply With Quote
  #12  
Old 07-15-2012, 01:42 AM
purgatori purgatori is offline
Senior Member
 
Join Date: May 2010
Posts: 234
Thanks: 6
Thanked 15 Times in 14 Posts
Default
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
__________________
My Blog About Emacs and (PC)BSD
Promethean Machines
Reply With Quote
  #13  
Old 07-15-2012, 09:13 PM
cabpa cabpa is offline
Senior Member
 
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
Default
OMG purgatori this Conkeror flies!
thank you very much!

Originally Posted by purgatori View Post
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
Reply With Quote
  #14  
Old 07-16-2012, 12:40 AM
purgatori purgatori is offline
Senior Member
 
Join Date: May 2010
Posts: 234
Thanks: 6
Thanked 15 Times in 14 Posts
Default
Originally Posted by cabpa View Post
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.
__________________
My Blog About Emacs and (PC)BSD
Promethean Machines
Reply With Quote
  #15  
Old 07-16-2012, 03:39 AM
cabpa cabpa is offline
Senior Member
 
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
Default
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 View Post
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.
Reply With Quote
  #16  
Old 07-16-2012, 07:57 AM
purgatori purgatori is offline
Senior Member
 
Join Date: May 2010
Posts: 234
Thanks: 6
Thanked 15 Times in 14 Posts
Default
Originally Posted by cabpa View Post
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
__________________
My Blog About Emacs and (PC)BSD
Promethean Machines

Last edited by purgatori; 07-16-2012 at 08:06 AM.
Reply With Quote
  #17  
Old 07-16-2012, 04:35 PM
cabpa cabpa is offline
Senior Member
 
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
Default
Thanks purgatori, I hope many will try to and use Conkeror.
It is fast!

Originally Posted by purgatori View Post
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
Reply With Quote
  #18  
Old 07-27-2012, 06:50 PM
cabpa cabpa is offline
Senior Member
 
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
Default
Originally Posted by purgatori View Post
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.
Reply With Quote
  #19  
Old 07-27-2012, 07:35 PM
purgatori purgatori is offline
Senior Member
 
Join Date: May 2010
Posts: 234
Thanks: 6
Thanked 15 Times in 14 Posts
Default
^ 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.
__________________
My Blog About Emacs and (PC)BSD
Promethean Machines
Reply With Quote
  #20  
Old 08-01-2012, 06:20 AM
cabpa cabpa is offline
Senior Member
 
Join Date: Feb 2012
Posts: 529
Thanks: 15
Thanked 3 Times in 3 Posts
Default
Originally Posted by purgatori View Post
^ 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
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:31 AM.


Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

Copyright 2005-2010, The PC-BSD Project. PC-BSD and the PC-BSD logo are registered trademarks of iXsystems.
All other content is freely available for sharing under the terms of the Creative Commons Attribution License.