From 7f2953aeaf264243fe0286a234a8206f8f70671b Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 2 Jul 2007 11:40:16 +0000 Subject: [PATCH] remove template *_url_mark() functions now QuickMarks has been implemented --- chrome/content/vimperator/commands.js | 32 --------------------------- 1 file changed, 32 deletions(-) diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js index 55201bf2..90a9c8cb 100644 --- a/chrome/content/vimperator/commands.js +++ b/chrome/content/vimperator/commands.js @@ -1312,38 +1312,6 @@ function hsshow(filter, fullmode) } } - -/////////////////////////////////////////////////////////////////////}}} -// url marks functions ///////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////{{{ - -/* vimperator has a concept of URL marks - * these provide quick access to URLs with a single character - * - * mark urls with e.g. Ma and you can go there with 'a or open a - * new tab with the url with "a - * valid characters for url marks are [a-zA-Z0-9] - */ -function set_url_mark(mark, url) -{ - -} - -function get_url_mark(mark) -{ - -} - -function del_url_mark(mark) -{ - -} - -function show_url_marks(mark) -{ - -} - /////////////////////////////////////////////////////////////////////}}} // tab/buffer related functions //////////////////////////////////////// /////////////////////////////////////////////////////////////////////{{{