From f286fe7b04d9e4a7cd75add7141db040ee0f6784 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Wed, 14 May 2014 00:11:23 +0000 Subject: first version of the project a module intended to be imported has been provided. it features: * a way to change the default search engine * a way to assign a key sequence to an url (like a custom bookmark) * a way to create shortcuts to access bang search engines !g, !tpb, ... --- VimperatorrcBuilder.py | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 VimperatorrcBuilder.py (limited to 'VimperatorrcBuilder.py') diff --git a/VimperatorrcBuilder.py b/VimperatorrcBuilder.py new file mode 100644 index 0000000..8dd1658 --- /dev/null +++ b/VimperatorrcBuilder.py @@ -0,0 +1,63 @@ +# Copyright (C) 2014 Olivier Gayot +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +import time + +class VimperatorrcBuilder(): + bookmarks = {} + bookmark_pfx = '\\', '|' + bang_shortcuts_pfx = 's', 'S' + bang_shortcuts = {} + default_engine = 'duckduckgo' + + def __init__(self): + pass + + def register_bookmark(self, seq, url): + """ Add a new bookmark and bind it to a given key-sequence """ + + self.bookmarks[seq] = url + + def register_bang_shortcut(self, seq, bang_shortcut): + """ Add a new bang shortcut and bind it to a key-sequence """ + + self.bang_shortcuts[seq] = bang_shortcut + + def set_default_search_engine(self, engine): + """ Set the default search engine (i.e. when you type 'open foo') """ + + self.default_engine = engine + + def get_output(self): + ''' Return a string containing the full output to redirect ''' + + output = '" Generated using VimperatorrcBuilder\n' + output += '" ' + time.ctime() + '\n' + + output += '\n" bookmarks\n' + for key in self.bookmarks: + output += 'map \'' + self.bookmark_pfx[0] + key + '\' :o' + self.bookmarks[key] + '\n' + output += 'map \'' + self.bookmark_pfx[1] + key + '\' :t' + self.bookmarks[key] + '\n' + + output += '\n" default search engine\n' + output += 'set defsearch=' + self.default_engine + '\n' + + output += '\n" bang shortcuts\n' + for key in self.bang_shortcuts: + output += "noremap '" + self.bang_shortcuts_pfx[0] + key + "' o!" + self.bang_shortcuts[key] + ' \n' + output += "noremap '" + self.bang_shortcuts_pfx[1] + key + "' t!" + self.bang_shortcuts[key] + ' \n' + return output + -- cgit v1.2.3